-
大小: 9.06MB文件類型: .zip金幣: 2下載: 0 次發(fā)布日期: 2023-10-05
- 語言: 其他
- 標簽: STM32??網(wǎng)絡(luò)通信??LAN8720??client端??
資源簡介
改進STM32網(wǎng)絡(luò)通信實驗,加入看門狗,支持Client端和Server端網(wǎng)線斷開后重連功能。保證Client端和Server端重連功能

代碼片段和文件信息
/*
??Copyright?(c)?2009?Dave?Gamble
??Permission?is?hereby?granted?free?of?charge?to?any?person?obtaining?a?copy
??of?this?software?and?associated?documentation?files?(the?“Software“)?to?deal
??in?the?Software?without?restriction?including?without?limitation?the?rights
??to?use?copy?modify?merge?publish?distribute?sublicense?and/or?sell
??copies?of?the?Software?and?to?permit?persons?to?whom?the?Software?is
??furnished?to?do?so?subject?to?the?following?conditions:
??The?above?copyright?notice?and?this?permission?notice?shall?be?included?in
??all?copies?or?substantial?portions?of?the?Software.
??THE?SOFTWARE?IS?PROVIDED?“AS?IS“?WITHOUT?WARRANTY?OF?ANY?KIND?EXPRESS?OR
??IMPLIED?INCLUDING?BUT?NOT?LIMITED?TO?THE?WARRANTIES?OF?MERCHANTABILITY
??FITNESS?FOR?A?PARTICULAR?PURPOSE?AND?NONINFRINGEMENT.?IN?NO?EVENT?SHALL?THE
??AUTHORS?OR?COPYRIGHT?HOLDERS?BE?LIABLE?FOR?ANY?CLAIM?DAMAGES?OR?OTHER
??LIABILITY?WHETHER?IN?AN?ACTION?OF?CONTRACT?TORT?OR?OTHERWISE?ARISING?FROM
??OUT?OF?OR?IN?CONNECTION?WITH?THE?SOFTWARE?OR?THE?USE?OR?OTHER?DEALINGS?IN
??THE?SOFTWARE.
*/
/*?cJSON?*/
/*?JSON?parser?in?C.?*/
#include?
#include?
#include?
#include?
#include?
#include?
#include?
#include?“cJSON.h“
#include?“malloc.h“
static?const?char?*ep;
const?char?*cJSON_GetErrorPtr(void)?{return?ep;}
static?int?cJSON_strcasecmp(const?char?*s1const?char?*s2)
{
if?(!s1)?return?(s1==s2)?0:1;if?(!s2)?return?1;
for(;?tolower(*s1)?==?tolower(*s2);?++s1?++s2) if(*s1?==?0) return?0;
return?tolower(*(const?unsigned?char?*)s1)?-?tolower(*(const?unsigned?char?*)s2);
}
static?void?*(*cJSON_malloc)(size_t?sz)?=?my_malloc;
static?void?(*cJSON_free)(void?*ptr)?=?my_free;
static?char*?cJSON_strdup(const?char*?str)
{
??????size_t?len;
??????char*?copy;
??????len?=?strlen(str)?+?1;
??????if?(!(copy?=?(char*)cJSON_malloc(len)))?return?0;
??????memcpy(copystrlen);
??????return?copy;
}
void?cJSON_InitHooks(cJSON_Hooks*?hooks)
{
????if?(!hooks)?{?/*?Reset?hooks?*/
????????cJSON_malloc?=?my_malloc;
????????cJSON_free?=?my_free;
????????return;
????}
cJSON_malloc?=?(hooks->malloc_fn)?hooks->malloc_fn:my_malloc;
cJSON_free ?=?(hooks->free_fn)?hooks->free_fn:my_free;
}
/*?Internal?constructor.?*/
static?cJSON?*cJSON_New_Item(void)
{
cJSON*?node?=?(cJSON*)cJSON_malloc(sizeof(cJSON));
if?(node)?memset(node0sizeof(cJSON));
return?node;
}
/*?Delete?a?cJSON?structure.?*/
void?cJSON_Delete(cJSON?*c)
{
cJSON?*next;
while?(c)
{
next=c->next;
if?(!(c->type&cJSON_IsReference)?&&?c->child)?cJSON_Delete(c->child);
if?(!(c->type&cJSON_IsReference)?&&?c->valuestring)?cJSON_free(c->valuestring);
if?(c->string)?cJSON_free(c->string);
cJSON_free(c);
c=next;
}
}
/*?Parse?the?input?text?to?generate?a?number?and?populate?the?result?into?item.?*/
static?const?char?*parse_number(cJSON?*itemconst?char?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????2425??2016-02-20?13:11??fs\404.html
?????文件??????25477??2016-02-20?12:41??fs\image\head.jpg
?????文件??????48415??2016-06-23?17:36??fs\image\stm32.jpg
?????文件???????1379??2015-03-15?20:46??fs\image\tab.jpg
?????文件???????5368??2016-09-07?12:49??fs\index.html
?????文件???????2901??2016-02-20?13:14??fs\STM32_ADC_TEMPERATE.shtml
?????文件???????3539??2016-02-20?13:13??fs\STM32_LED_OFF_BEEP_OFF.shtml
?????文件???????3544??2016-02-20?13:14??fs\STM32_LED_OFF_BEEP_ON.shtml
?????文件???????3543??2016-02-20?13:14??fs\STM32_LED_ON_BEEP_OFF.shtml
?????文件???????3541??2016-02-20?13:15??fs\STM32_LED_ON_BEEP_ON.shtml
?????文件???????2861??2016-02-20?13:15??fs\STM32_RTC.shtml
?????目錄??????????0??2016-09-07?19:12??fs\image
?????目錄??????????0??2016-09-07?19:12??fs
-----------?---------??----------?-----??----
???????????????102993????????????????????13
評論
共有 條評論