Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: MurataTypeYD_RPC_Sample
Fork of SNICInterface_mod by
Diff: SNIC/SNIC_UartMsgUtil.cpp
- Revision:
- 38:f13e4e563d65
- Parent:
- 36:f33fcf5975ab
- Child:
- 39:a1233ca02edf
--- a/SNIC/SNIC_UartMsgUtil.cpp Tue Jun 24 06:24:23 2014 +0000
+++ b/SNIC/SNIC_UartMsgUtil.cpp Wed Jun 25 00:04:11 2014 +0000
@@ -73,8 +73,7 @@
, unsigned char *command_id_p, unsigned char *payload_p )
{
unsigned short payload_len = 0;
- unsigned char *buf = NULL;
- bool isESC = false;
+ unsigned char *buf_p = NULL;
int i;
// get payload length
@@ -83,12 +82,12 @@
// get Command ID
*command_id_p = (recvdata_p[3] & ~0x80);
- buf = &recvdata_p[4];
+ buf_p = &recvdata_p[4];
// get payload data
- for( i = 0; i < payload_len; i++, buf++ )
+ for( i = 0; i < payload_len; i++, buf_p++ )
{
- *payload_p = *buf;
+ *payload_p = *buf_p;
payload_p++;
}
@@ -131,7 +130,7 @@
}
}
- int addr = ( (ipadr[0]<<24) | (ipadr[1]<<16) | (ipadr[2]<<8) | ipadr[3] );
+ int addr = ( (ipadr[0]<<24) | (ipadr[1]<<16) | (ipadr[2]<<8) | ipadr[3] );
return addr;
}
