实例介绍
基于移远MC20函数库对MPU6050六轴传感器的调试,经测试功能OK。。
【实例截图】
【核心代码】
ZF203C_OPENSDK_ZYFOS_MPU6050_V2_1.rar
└── ZF203C_OPENSDK_ZYFOS_MPU6050_V2_1
├── build
│ └── gcc
│ └── obj
│ ├── custom
│ │ ├── cJSON.o
│ │ ├── config
│ │ ├── fota
│ │ │ └── src
│ │ └── socket.o
│ ├── example
│ └── ril
│ └── src
├── 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
│ ├── bma22x.c
│ ├── bma22x.h
│ ├── bt3.c
│ ├── bt3.h
│ ├── config
│ │ ├── custom_feature_def.h
│ │ ├── custom_gpio_cfg.h
│ │ ├── custom_heap_cfg.h
│ │ ├── custom_sys_cfg.c
│ │ ├── custom_task_cfg.h
│ │ └── sys_config.c
│ ├── flash.c
│ ├── flash.h
│ ├── 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
│ ├── gps.c
│ ├── gps.h
│ ├── lcd.c
│ ├── lcd.h
│ ├── main.c
│ ├── mpu6050.c
│ ├── mpu6050.h
│ ├── new_socket.c
│ ├── new_socket.h
│ ├── PRD.c
│ ├── PRD.h
│ ├── pro.c
│ ├── pro.h
│ ├── sys.c
│ ├── sys.h
│ ├── tiem.c
│ ├── tiem.h
│ ├── tt.c
│ ├── uart.c
│ └── uart.h
├── 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.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
├── ril
│ ├── inc
│ │ ├── lib_ril_sms.h
│ │ ├── ril_alarm.h
│ │ ├── ril_audio.h
│ │ ├── ril_bluetooth.h
│ │ ├── ril_dtmf.h
│ │ ├── ril_ftp.h
│ │ ├── ril_gps.h
│ │ ├── ril.h
│ │ ├── ril_http.h
│ │ ├── ril_location.h
│ │ ├── ril_network.h
│ │ ├── ril_ntp.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_gps.c
│ ├── ril_http.c
│ ├── ril_init.c
│ ├── ril_location.c
│ ├── ril_network.c
│ ├── ril_ntp.c
│ ├── ril_sim.c
│ ├── ril_sms.c
│ ├── ril_system.c
│ ├── ril_telephony.c
│ ├── ril_urc.c
│ └── ril_util.c
├── si
│ ├── OPENSDK_ZYFOS_V2_0.IAB
│ ├── OPENSDK_ZYFOS_V2_0.IAD
│ ├── OPENSDK_ZYFOS_V2_0.IMB
│ ├── OPENSDK_ZYFOS_V2_0.IMD
│ ├── OPENSDK_ZYFOS_V2_0.PFI
│ ├── OPENSDK_ZYFOS_V2_0.PO
│ ├── OPENSDK_ZYFOS_V2_0.PR
│ ├── OPENSDK_ZYFOS_V2_0.PRI
│ ├── OPENSDK_ZYFOS_V2_0.PS
│ ├── OPENSDK_ZYFOS_V2_0.SearchResults
│ └── OPENSDK_ZYFOS_V2_0.WK3
└── ZF203C_OPENSDK_ZYFOS_V1_6_RELEASE NOTES.txt
38 directories, 193 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论