Fixed typos in cli output and source code comments
This commit is contained in:
committed by
Andreas Eversberg
parent
97636aac1e
commit
a07764f0d9
@@ -451,13 +451,13 @@ static void dms_rx_dt(nmt_t *nmt, uint8_t d, uint8_t s, uint8_t n, uint8_t *data
|
||||
|
||||
if (dms->state.dir != d && !dms_allow_loopback) {
|
||||
/* drop frames with wrong direction indicator */
|
||||
PDEBUG(DDMS, DEBUG_INFO, "DMS frame ignored, direction indicator missmatch!\n");
|
||||
PDEBUG(DDMS, DEBUG_INFO, "DMS frame ignored, direction indicator mismatch!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (dms->state.n_r != n) {
|
||||
/* ignore out of sequence frames */
|
||||
PDEBUG(DDMS, DEBUG_DEBUG, "DMS frame number missmatch (due to resending)\n");
|
||||
PDEBUG(DDMS, DEBUG_DEBUG, "DMS frame number mismatch (due to resending)\n");
|
||||
} else {
|
||||
PDEBUG(DDMS, DEBUG_INFO, "Received valid DMS frame: %s\n", print_ct_dt(s, n, data, dms->state.eight_bits));
|
||||
|
||||
@@ -526,7 +526,7 @@ static void dms_rx_rr(nmt_t *nmt, uint8_t d, uint8_t s, uint8_t n)
|
||||
|
||||
if (dms->state.dir != d && !dms_allow_loopback) {
|
||||
/* drop frames with wrong direction indicator */
|
||||
PDEBUG(DDMS, DEBUG_INFO, "DMS frame ignored, direction indicator missmatch!\n");
|
||||
PDEBUG(DDMS, DEBUG_INFO, "DMS frame ignored, direction indicator mismatch!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -539,7 +539,7 @@ static void dms_rx_rr(nmt_t *nmt, uint8_t d, uint8_t s, uint8_t n)
|
||||
dms_frame = dms_frame->next;
|
||||
}
|
||||
|
||||
/* if we don't find a frame, it must have been already acked, so we igore RR */
|
||||
/* if we don't find a frame, it must have been already acked, so we ignore RR */
|
||||
if (!dms_frame || i == 4) {
|
||||
PDEBUG(DDMS, DEBUG_DEBUG, "Received already acked DMS frame: RR(%d) (s = %d), ignoring\n", n, s);
|
||||
return;
|
||||
@@ -581,7 +581,7 @@ static void dms_rx_nr(nmt_t *nmt, uint8_t d, uint8_t s, uint8_t n)
|
||||
|
||||
if (dms->state.dir != d && !dms_allow_loopback) {
|
||||
/* drop frames with wrong direction indicator */
|
||||
PDEBUG(DDMS, DEBUG_INFO, "DMS frame ignored, direction indicator missmatch!\n");
|
||||
PDEBUG(DDMS, DEBUG_INFO, "DMS frame ignored, direction indicator mismatch!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -713,7 +713,7 @@ void fsk_receive_bit_dms(nmt_t *nmt, int bit, double quality, double level)
|
||||
if (dms->rx_bit_count == 9) {
|
||||
dms->rx_bit_count = 0;
|
||||
if (dms->rx_frame[0] != dms->rx_frame[1]) {
|
||||
PDEBUG(DDMS, DEBUG_DEBUG, "Repeated DMS label missmatches!\n");
|
||||
PDEBUG(DDMS, DEBUG_DEBUG, "Repeated DMS label mismatches!\n");
|
||||
dms->rx_in_sync = 0;
|
||||
return;
|
||||
}
|
||||
@@ -750,7 +750,7 @@ void fsk_receive_bit_dms(nmt_t *nmt, int bit, double quality, double level)
|
||||
* calls from upper layer
|
||||
*/
|
||||
|
||||
/* recive data from upper layer to be sent as DT frames
|
||||
/* receive data from upper layer to be sent as DT frames
|
||||
* the DT frames are generated */
|
||||
void dms_send(nmt_t *nmt, const uint8_t *data, int length, int eight_bits)
|
||||
{
|
||||
|
@@ -305,7 +305,7 @@ static struct nmt_frame {
|
||||
{ NMT_MESSAGE_2b, "NNNPYYZXXXXXXnnn", MTX_TO_MS, 12, "2b", "Traffic channel allocation on calling channel" },
|
||||
{ NMT_MESSAGE_2c, "NNNPYYZXXXXXXHHH", MTX_TO_MS, 12, "2c", "Queueing information to MS with priority on calling channel" },
|
||||
{ NMT_MESSAGE_2d, "NNNPYYZXXXXXXHHH", MTX_TO_MS, 12, "2d", "Traffic channel scanning order on calling channel" },
|
||||
{ NMT_MESSAGE_2e, "NNNPYYZXXXXXXHHH", MTX_TO_MS, 4, "2e", "Alternative type of call to MS on combinded CC/TC" },
|
||||
{ NMT_MESSAGE_2e, "NNNPYYZXXXXXXHHH", MTX_TO_MS, 4, "2e", "Alternative type of call to MS on combined CC/TC" },
|
||||
{ NMT_MESSAGE_2f, "NNNPYYZXXXXXXHHH", MTX_TO_MS, 12, "2f", "Queuing information to ordinary MS" },
|
||||
{ NMT_MESSAGE_3a, "NNNPYYZXXXXXXnnn", MTX_TO_MS, 5, "3a", "Traffic channel allocation on traffic channel" },
|
||||
{ NMT_MESSAGE_3b, "NNNPYYZXXXXXXHHH", MTX_TO_MS, 5, "3b", "Identity request on traffic channel" },
|
||||
@@ -829,7 +829,7 @@ int init_frame(void)
|
||||
|
||||
/* check if all digits actually exist */
|
||||
for (i = 0; nmt_frame[i].digits; i++) {
|
||||
/* check mesage type */
|
||||
/* check message type */
|
||||
if ((int)nmt_frame[i].message_type != i) {
|
||||
PDEBUG(DFRAME, DEBUG_ERROR, "Message type at message index #%d does not have a value of %d, but has %d, please fix!\n", i, i + 1, nmt_frame[i].message_type);
|
||||
return -1;
|
||||
|
@@ -61,7 +61,7 @@ void print_help(const char *arg0)
|
||||
main_mobile_print_help(arg0, "[-N 900] -Y <traffic area> | list [-I 1] [-0 1] ");
|
||||
/* - - */
|
||||
printf(" -N --nmt-system 450/900\n");
|
||||
printf(" Give NMT type as first paramer. (default = '%d')\n", nmt_system);
|
||||
printf(" Give NMT type as first parameter. (default = '%d')\n", nmt_system);
|
||||
printf(" Note: This option must be given at first!\n");
|
||||
printf(" -T --channel-type <channel type> | list\n");
|
||||
printf(" Give channel type, use 'list' to get a list. (default = '%s')\n", chan_type_short_name(nmt_system, chan_type[0]));
|
||||
|
@@ -43,7 +43,7 @@
|
||||
* After timeout, all channels with that transaction pointer are released.
|
||||
*
|
||||
* When paging was replied, other channels with the transaction pointer are
|
||||
* relased, but the channel with the reply is linked to transaction in both
|
||||
* released, but the channel with the reply is linked to transaction in both
|
||||
* directions. (trans->nmt points to nmt, nmt->trans points to trans)
|
||||
*
|
||||
*/
|
||||
|
@@ -453,7 +453,7 @@ static int decode_sms_submit(nmt_t *nmt, const uint8_t *data, int length)
|
||||
/* decode orig address */
|
||||
char orig_address[orig_digits + 1];
|
||||
decode_address(orig_data, orig_digits, orig_address);
|
||||
PDEBUG(DSMS, DEBUG_DEBUG, "Decoded originating addess: '%s'\n", orig_address);
|
||||
PDEBUG(DSMS, DEBUG_DEBUG, "Decoded originating address: '%s'\n", orig_address);
|
||||
|
||||
/* go into TP */
|
||||
data = tpdu_data;
|
||||
@@ -500,7 +500,7 @@ static int decode_sms_submit(nmt_t *nmt, const uint8_t *data, int length)
|
||||
length -= 2 + dest_len;
|
||||
char dest_address[dest_digits + 1];
|
||||
decode_address(dest_data, dest_digits, dest_address);
|
||||
PDEBUG(DSMS, DEBUG_DEBUG, "Decoded destination addess: '%s'\n", dest_address);
|
||||
PDEBUG(DSMS, DEBUG_DEBUG, "Decoded destination address: '%s'\n", dest_address);
|
||||
|
||||
/* skip above protocol identifier */
|
||||
if (length < 1) {
|
||||
|
Reference in New Issue
Block a user