实例介绍
用于移远2G物联网通信模块M26的OPENCPU开发,内含FLASH下载工具。
【实例截图】
【核心代码】
M26_OpenCPU_GS3_SDK_V2.0
└── M26_OpenCPU_GS3_SDK_V2.0
├── build
│ └── gcc
│ └── build.log
├── cloud
│ ├── entity
│ │ └── gitwizs
│ │ ├── inc
│ │ │ ├── adapter.h
│ │ │ ├── cloud.h
│ │ │ ├── gagent.h
│ │ │ ├── gagent_typedef.h
│ │ │ ├── hal_socket.h
│ │ │ ├── hal_timer.h
│ │ │ ├── hal_uart.h
│ │ │ ├── http.h
│ │ │ ├── mqttxpg.h
│ │ │ └── utils.h
│ │ └── src
│ │ ├── adapter.c
│ │ ├── cloud.c
│ │ ├── gagent.c
│ │ ├── gitwizs_cloud.c
│ │ ├── gitwizs_main.c
│ │ ├── gitwizs_mcu.c
│ │ ├── hal_socket.c
│ │ ├── hal_timer.c
│ │ ├── hal_uart.c
│ │ ├── http.c
│ │ ├── mqttxpg.c
│ │ └── utils.c
│ ├── http
│ │ ├── inc
│ │ │ └── cloud_http.h
│ │ └── src
│ │ └── cloud_http.c
│ └── protocol
│ └── mqtt
│ ├── inc
│ │ ├── mqttbuffer.h
│ │ └── mqttlib_ext.h
│ └── src
│ ├── mqttbuffer.c
│ └── mqttlib_ext.c
├── custom
│ ├── config
│ │ ├── custom_feature_def.h
│ │ ├── custom_gpio_cfg.h
│ │ ├── custom_heap_cfg.h
│ │ ├── custom_sys_cfg.c
│ │ ├── custom_task_cfg.h
│ │ └── sys_config.c
│ ├── fota
│ │ ├── inc
│ │ │ ├── fota_ftp.h
│ │ │ ├── fota_http_code.h
│ │ │ ├── fota_http.h
│ │ │ └── fota_main.h
│ │ └── src
│ │ ├── fota_ftp.c
│ │ ├── fota_http.c
│ │ ├── fota_http_code.c
│ │ └── fota_main.c
│ └── main.c
├── docs
│ ├── M26
│ │ ├── Quectel_M26_AT命令手册_V1.1.pdf
│ │ ├── Quectel_M26-OpenCPU_User_Guide_V1.0.pdf
│ │ └── Quectel_M26-OpenCPU_硬件设计手册_V1.0.pdf
│ ├── OpenCPU_RIL_Application_Note_V1.1.pdf
│ ├── Quectel_OpenCPU_FOTA_Application_Note_V1.0.pdf
│ ├── Quectel_OpenCPU_GCC_Installation_Guide_V1.1.pdf
│ ├── Quectel_OpenCPU_Quick_Start_Application_Note_V1.1.pdf
│ ├── Quectel_OpenCPU_Security_Data_Application_Note_V1.0.pdf
│ ├── Quectel_OpenCPU_Watchdog_Application_Note_V1.0.pdf
│ ├── Quectel_QFlash_OpenCPU_User_Guide_V1.0.pdf
│ └── Quectel_RF_Layout_Application_Note_V2.1.pdf
├── example
│ ├── example_adc.c
│ ├── example_alarm.c
│ ├── example_audio.c
│ ├── example_bluetooth.c
│ ├── example_call.c
│ ├── example_clk.c
│ ├── example_csd.c
│ ├── example_download_epo.c
│ ├── example_dtmf.c
│ ├── example_eint.c
│ ├── example_file.c
│ ├── example_float_math.c
│ ├── example_fota_ftp.c
│ ├── example_fota_http.c
│ ├── example_ftp.c
│ ├── example_gpio.c
│ ├── Example_gps_iic.c
│ ├── example_http.c
│ ├── example_iic.c
│ ├── example_location.c
│ ├── example_memory.c
│ ├── example_multitask.c
│ ├── example_multitask_port.c
│ ├── example_pwm.c
│ ├── example_sms.c
│ ├── example_spi.c
│ ├── example_system.c
│ ├── example_tcpclient.c
│ ├── example_tcp_demo.c
│ ├── example_tcpserver.c
│ ├── example_time.c
│ ├── example_timer.c
│ ├── example_transpass.c
│ ├── example_udpclient.c
│ ├── example_udpserver.c
│ ├── example_watchdog.c
│ ├── nema_pro.c
│ └── utility.c
├── include
│ ├── nema_pro.h
│ ├── ql_adc.h
│ ├── ql_clock.h
│ ├── ql_common.h
│ ├── ql_eint.h
│ ├── ql_error.h
│ ├── ql_fota.h
│ ├── ql_fs.h
│ ├── ql_gpio.h
│ ├── ql_gprs.h
│ ├── ql_iic.h
│ ├── ql_memory.h
│ ├── ql_power.h
│ ├── ql_pwm.h
│ ├── ql_socket.h
│ ├── ql_spi.h
│ ├── ql_stdlib.h
│ ├── ql_system.h
│ ├── ql_time.h
│ ├── ql_timer.h
│ ├── ql_trace.h
│ ├── ql_type.h
│ ├── ql_uart.h
│ └── ql_wtd.h
├── libs
│ ├── app_image_bin.cfg
│ └── gcc
│ ├── app_start.lib
│ └── linkscript.ld
├── make
│ ├── gcc
│ │ ├── gcc_make.bat
│ │ ├── gcc_makefile
│ │ └── gcc_makefiledef
│ ├── GFH_Generator.exe
│ ├── header.dat
│ └── make.exe
├── Make.bat
├── MS-DOS.lnk
├── REAMD ME.txt
├── RELEASE NOTES.txt
├── ril
│ ├── inc
│ │ ├── lib_ril_sms.h
│ │ ├── ril_alarm.h
│ │ ├── ril_audio.h
│ │ ├── ril_bluetooth.h
│ │ ├── ril_dtmf.h
│ │ ├── ril_ftp.h
│ │ ├── ril.h
│ │ ├── ril_http.h
│ │ ├── ril_location.h
│ │ ├── ril_network.h
│ │ ├── ril_sim.h
│ │ ├── ril_sms.h
│ │ ├── ril_system.h
│ │ ├── ril_telephony.h
│ │ └── ril_util.h
│ └── src
│ ├── ril_alarm.c
│ ├── ril_atResponse.c
│ ├── ril_audio.c
│ ├── ril_bluetooth.c
│ ├── ril_custom.c
│ ├── ril_dtmf.c
│ ├── ril_ftp.c
│ ├── ril_http.c
│ ├── ril_init.c
│ ├── ril_location.c
│ ├── ril_network.c
│ ├── ril_sim.c
│ ├── ril_sms.c
│ ├── ril_system.c
│ ├── ril_telephony.c
│ ├── ril_urc.c
│ └── ril_util.c
└── tools
├── AudioFile_Converter
│ ├── audio
│ │ ├── m66.amr
│ │ └── wav8k.wav
│ ├── audio.txt
│ ├── QlAudioResGen.exe
│ ├── READ ME.txt
│ ├── template_c
│ └── template_h
├── OpenCPU_FOTA_Package_Tool_V1.1.rar
└── QFlash_V3.4.zip
34 directories, 171 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论