91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 6.49MB
    文件類型: .zip
    金幣: 2
    下載: 1 次
    發布日期: 2023-11-01
  • 語言: 其他
  • 標簽: STM32??GSM??UCOSIII??

資源簡介

本例程整合了UCOSIII以及GSM的驅動,可以直接在任務里調用,在STM32上也能進行網絡通訊。

資源截圖

代碼片段和文件信息

/*
??Copyright?(c)?2009-2017?Dave?Gamble?and?cJSON?contributors

??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.?*/

/*?disable?warnings?about?old?C89?functions?in?MSVC?*/
#if?!defined(_CRT_SECURE_NO_DEPRECATE)?&&?defined(_MSC_VER)
#define?_CRT_SECURE_NO_DEPRECATE
#endif

#ifdef?__GNUC__
#pragma?GCC?visibility?push(default)
#endif
#if?defined(_MSC_VER)
#pragma?warning?(push)
/*?disable?warning?about?single?line?comments?in?system?headers?*/
#pragma?warning?(disable?:?4001)
#endif

#include?
#include?
#include?
#include?
#include?
#include?
#ifdef?ENABLE_LOCALES
#include?
#endif

#if?defined(_MSC_VER)
#pragma?warning?(pop)
#endif
#ifdef?__GNUC__
#pragma?GCC?visibility?pop
#endif

#include?“cJSON.h“

/*?define?our?own?boolean?type?*/
#define?true?((cJSON_bool)1)
#define?false?((cJSON_bool)0)

typedef?struct?{
????const?unsigned?char?*json;
????size_t?position;
}?error;
static?error?global_error?=?{?NULL?0?};

CJSON_PUBLIC(const?char?*)?cJSON_GetErrorPtr(void)
{
????return?(const?char*)?(global_error.json?+?global_error.position);
}

CJSON_PUBLIC(char?*)?cJSON_GetStringValue(cJSON?*item)?{
????if?(!cJSON_IsString(item))?{
????????return?NULL;
????}

????return?item->valuestring;
}

/*?This?is?a?safeguard?to?prevent?copy-pasters?from?using?incompatible?C?and?header?files?*/
#if?(CJSON_VERSION_MAJOR?!=?1)?||?(CJSON_VERSION_MINOR?!=?7)?||?(CJSON_VERSION_PATCH?!=?7)
????#error?cJSON.h?and?cJSON.c?have?different?versions.?Make?sure?that?both?have?the?same.
#endif

CJSON_PUBLIC(const?char*)?cJSON_Version(void)
{
????static?char?version[15];
????sprintf(version?“%i.%i.%i“?CJSON_VERSION_MAJOR?CJSON_VERSION_MINOR?CJSON_VERSION_PATCH);

????return?version;
}

/*?Case?insensitive?string?comparison?doesn‘t?consider?two?NULL?pointers?equal?though?*/
static?int?case_insensitive

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-08-17?14:23??例11-1?UCOSIII+GSM\
?????目錄???????????0??2018-08-17?16:18??例11-1?UCOSIII+GSM\API\
?????文件???????76122??2018-08-17?16:18??例11-1?UCOSIII+GSM\API\cJSON.c
?????文件???????14567??2018-05-22?04:08??例11-1?UCOSIII+GSM\API\cJSON.h
?????文件???????40019??2018-05-22?04:08??例11-1?UCOSIII+GSM\API\cJSON_Utils.c
?????文件????????3938??2018-05-22?04:08??例11-1?UCOSIII+GSM\API\cJSON_Utils.h
?????目錄???????????0??2018-08-17?16:14??例11-1?UCOSIII+GSM\CORE\
?????文件???????17273??2010-06-07?10:25??例11-1?UCOSIII+GSM\CORE\core_cm3.c
?????文件???????85714??2011-02-09?14:59??例11-1?UCOSIII+GSM\CORE\core_cm3.h
?????文件???????15537??2018-08-17?16:14??例11-1?UCOSIII+GSM\CORE\startup_stm32f10x_hd.s
?????文件???????12765??2011-03-10?10:52??例11-1?UCOSIII+GSM\CORE\startup_stm32f10x_md.s
?????目錄???????????0??2018-08-09?20:44??例11-1?UCOSIII+GSM\FWLIB\
?????目錄???????????0??2018-08-09?20:44??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\
?????目錄???????????0??2018-08-09?20:44??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\
?????文件????????8982??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\misc.h
?????文件???????21690??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_adc.h
?????文件????????7555??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_bkp.h
?????文件???????27559??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_can.h
?????文件????????6573??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_cec.h
?????文件????????2162??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_crc.h
?????文件???????15233??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_dac.h
?????文件????????3818??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h
?????文件???????20754??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_dma.h
?????文件????????6824??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_exti.h
?????文件???????25445??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_flash.h
?????文件???????27016??2012-08-25?16:33??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_fsmc.h
?????文件???????20175??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_gpio.h
?????文件???????30029??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_i2c.h
?????文件????????3828??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_iwdg.h
?????文件????????4383??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_pwr.h
?????文件???????30452??2011-03-10?10:47??例11-1?UCOSIII+GSM\FWLIB\STM32F10x_FWLib\inc\stm32f10x_rcc.h
............此處省略362個文件信息

評論

共有 條評論