Merge pull request #2695 from BernardXiong/remove_gnu99
remove gnu99 code
This commit is contained in:
commit
cd8ed012fc
|
@ -69,6 +69,7 @@ static int rt_wlan_device_connetct(char *ssid, char *passwd)
|
||||||
|
|
||||||
static void airkiss_send_notification(uint8_t random)
|
static void airkiss_send_notification(uint8_t random)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
int sock = -1;
|
int sock = -1;
|
||||||
int udpbufsize = 2;
|
int udpbufsize = 2;
|
||||||
struct sockaddr_in UDPBCAddr, UDPBCServerAddr;
|
struct sockaddr_in UDPBCAddr, UDPBCServerAddr;
|
||||||
|
@ -102,7 +103,7 @@ static void airkiss_send_notification(uint8_t random)
|
||||||
goto _exit;
|
goto _exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i <= 20; i++)
|
for (i = 0; i <= 20; i++)
|
||||||
{
|
{
|
||||||
int ret = sendto(sock, (char *)&random, 1, 0, (struct sockaddr *)&UDPBCAddr, sizeof(UDPBCAddr));
|
int ret = sendto(sock, (char *)&random, 1, 0, (struct sockaddr *)&UDPBCAddr, sizeof(UDPBCAddr));
|
||||||
rt_thread_delay(10);
|
rt_thread_delay(10);
|
||||||
|
|
|
@ -55,9 +55,12 @@ static rt_uint16_t rt_wlan_cal_crc(rt_uint8_t *buff, int len)
|
||||||
|
|
||||||
while (len--)
|
while (len--)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
wChar = *(buff++);
|
wChar = *(buff++);
|
||||||
wCRCin ^= (wChar << 8);
|
wCRCin ^= (wChar << 8);
|
||||||
for (int i = 0; i < 8; i++)
|
|
||||||
|
for (i = 0; i < 8; i++)
|
||||||
{
|
{
|
||||||
if (wCRCin & 0x8000)
|
if (wCRCin & 0x8000)
|
||||||
wCRCin = (wCRCin << 1) ^ wCPoly;
|
wCRCin = (wCRCin << 1) ^ wCPoly;
|
||||||
|
|
Loading…
Reference in New Issue