├── .gitignore ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Makefile ├── README.md ├── README_EN.md ├── app ├── Makefile ├── include │ └── app.h └── src │ └── app.c ├── demo ├── adc │ ├── Makefile │ └── src │ │ └── demo_adc.c ├── audio │ ├── Makefile │ └── src │ │ └── demo_audio.c ├── call │ ├── Makefile │ ├── include │ │ └── demo_call.h │ └── src │ │ └── demo_call.c ├── cpp │ ├── Makefile │ └── src │ │ └── demo_cpp.cpp ├── dns │ ├── Makefile │ └── src │ │ └── demo_dns.c ├── first │ ├── Makefile │ └── src │ │ └── demo_first.c ├── fota │ ├── Makefile │ ├── include │ │ └── demo_fota.h │ ├── src │ │ ├── demo_fota.c │ │ ├── fota_server.c │ │ └── fota_uart.c │ └── tool │ │ └── uart_sendpack.py ├── fs │ ├── Makefile │ └── src │ │ ├── demo_fs.c │ │ ├── demo_fs_new.c │ │ └── demo_fs_old.c ├── gizwits │ ├── Makefile │ └── src │ │ └── demo_gizwits.c ├── gpio │ ├── Makefile │ ├── include │ │ └── demo_gpio.h │ └── src │ │ └── demo_gpio.c ├── gps │ ├── Makefile │ └── src │ │ └── demo_gps.c ├── gps_agps │ ├── Makefile │ └── src │ │ └── demo_agps.c ├── gps_tracker │ ├── Makefile │ └── src │ │ └── demo_gps_tracker.c ├── i2c │ ├── Makefile │ └── src │ │ └── demo_i2c.c ├── iccid │ ├── Makefile │ └── src │ │ └── demo_iccid.c ├── imei │ ├── Makefile │ └── src │ │ └── demo_imei.c ├── json │ ├── Makefile │ └── src │ │ └── demo_json.c ├── lbs │ ├── Makefile │ └── src │ │ └── demo_lbs.c ├── lcd │ ├── Makefile │ ├── README.md │ ├── config.mk │ └── src │ │ └── lcd_main.c ├── lowpower │ ├── Makefile │ └── src │ │ └── demo_lp.c ├── lvgl │ ├── Makefile │ ├── README.md │ ├── config.mk │ ├── include │ │ └── lvgl_config.h │ └── src │ │ └── lvgl_main.c ├── lvgl2 │ ├── Makefile │ ├── README.md │ ├── config.mk │ ├── include │ │ └── lvgl_config.h │ └── src │ │ └── lvgl_main.c ├── mqtt │ ├── Makefile │ ├── include │ │ └── demo_mqtt.h │ └── src │ │ └── demo_mqtt.c ├── mqtt_ssl │ ├── Makefile │ ├── include │ │ └── demo_mqtt.h │ └── src │ │ └── demo_mqtt.c ├── network │ ├── Makefile │ └── src │ │ └── demo_network.c ├── network2 │ ├── Makefile │ └── src │ │ └── demo_network.c ├── oled │ ├── Makefile │ ├── README.MD │ ├── assets │ │ └── oled_iic_128x64.png │ ├── include │ │ ├── codetab.h │ │ └── i2c_oled.h │ └── src │ │ ├── i2c_oled.c │ │ └── oled_main.c ├── oled_spi │ ├── Makefile │ ├── README.md │ ├── assets │ │ └── ssd1306_oled.gif │ ├── config.mk │ └── src │ │ └── oled_main.c ├── os │ ├── Makefile │ └── src │ │ └── demo_os.c ├── pm │ ├── Makefile │ └── src │ │ └── demo_pm.c ├── sms │ ├── Makefile │ └── src │ │ └── demo_sms.c ├── socket │ ├── Makefile │ └── src │ │ └── demo_socket.c ├── socket2 │ ├── Makefile │ └── src │ │ └── demo_socket.c ├── socket_nbio │ ├── Makefile │ └── src │ │ └── demo_socket_nbio.c ├── spi │ ├── Makefile │ └── src │ │ └── demo_spi.c ├── ssl │ ├── Makefile │ └── src │ │ └── demo_ssl.c ├── std │ ├── Makefile │ └── src │ │ └── demo_std.c ├── time │ ├── Makefile │ └── src │ │ └── demo_time.c ├── time_ntp │ ├── Makefile │ └── src │ │ └── demo_ntp.c ├── timer_soft │ ├── Makefile │ └── src │ │ └── demo_timer.c ├── uart │ ├── Makefile │ └── src │ │ └── demo_uart.c ├── udp │ ├── Makefile │ └── src │ │ └── demo_udp.c ├── ussd │ ├── Makefile │ └── src │ │ └── demo_ussd.c └── watchdog │ ├── Makefile │ └── src │ └── demo_watchdog.c ├── doc ├── assets │ ├── A9.png │ ├── A9G.png │ ├── A9G_dev.png │ ├── A9G_dev_pin.png │ ├── USB-UART.png │ └── pudding_pin.png └── doc.md ├── include ├── api_audio.h ├── api_call.h ├── api_charset.h ├── api_debug.h ├── api_fota.h ├── api_fs.h ├── api_gizwits.h ├── api_gps.h ├── api_hal_adc.h ├── api_hal_flash.h ├── api_hal_gouda.h ├── api_hal_gpio.h ├── api_hal_i2c.h ├── api_hal_pm.h ├── api_hal_spi.h ├── api_hal_uart.h ├── api_hal_watchdog.h ├── api_inc │ ├── api_event.h │ ├── api_hal_gouda_inc.h │ ├── api_inc_adc.h │ ├── api_inc_audio.h │ ├── api_inc_call.h │ ├── api_inc_charset.h │ ├── api_inc_flash.h │ ├── api_inc_fota.h │ ├── api_inc_fs.h │ ├── api_inc_gizwits.h │ ├── api_inc_gpio.h │ ├── api_inc_i2c.h │ ├── api_inc_mqtt.h │ ├── api_inc_network.h │ ├── api_inc_os.h │ ├── api_inc_pm.h │ ├── api_inc_sim.h │ ├── api_inc_sms.h │ ├── api_inc_socket.h │ ├── api_inc_spi.h │ ├── api_inc_ss.h │ ├── api_inc_ssl.h │ ├── api_inc_time.h │ ├── api_inc_uart.h │ ├── hal_iomux.h │ └── setjmp_inc.h ├── api_info.h ├── api_key.h ├── api_lbs.h ├── api_mqtt.h ├── api_network.h ├── api_os.h ├── api_sim.h ├── api_sms.h ├── api_socket.h ├── api_ss.h ├── api_ssl.h ├── api_sys.h ├── sdk_init.h └── std_inc │ ├── assert.h │ ├── cs_types.h │ ├── ctype.h │ ├── errno.h │ ├── float.h │ ├── limits.h │ ├── math.h │ ├── setjmp.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ └── time.h ├── init ├── Makefile ├── src │ └── sdk_init.c └── target.def ├── libs ├── Makefile ├── aliyun │ ├── Makefile │ ├── config │ │ ├── config.Ai_Thinker.gprs_a9 │ │ └── default_settings.mk │ ├── iotkit-embedded │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Config.in │ │ ├── Config.linkkit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build-rules │ │ │ ├── _rules-complib.mk │ │ │ ├── _rules-coverage.mk │ │ │ ├── _rules-dist.mk │ │ │ ├── _rules-flat.mk │ │ │ ├── _rules-kmod.mk │ │ │ ├── _rules-libs.mk │ │ │ ├── _rules-modinfo.mk │ │ │ ├── _rules-origin.mk │ │ │ ├── _rules-prefix.mk │ │ │ ├── _rules-prog.mk │ │ │ ├── _rules-repo.mk │ │ │ ├── _rules-submods.mk │ │ │ ├── _rules-top.mk │ │ │ ├── docs │ │ │ │ ├── Build-System-Config.md │ │ │ │ ├── Build-System-Debug.md │ │ │ │ ├── Build-System-Introduction.md │ │ │ │ ├── Build-System-Proj.md │ │ │ │ ├── Build-System-Units.md │ │ │ │ └── Help.md │ │ │ ├── funcs.mk │ │ │ ├── hooks │ │ │ │ └── pre-commit │ │ │ ├── misc │ │ │ │ ├── Doxyfile.tpl │ │ │ │ ├── config.generic.cmake │ │ │ │ ├── config.generic.default │ │ │ │ ├── cut.c │ │ │ │ └── cut.h │ │ │ ├── pre-build.sh │ │ │ ├── rules.mk │ │ │ ├── scripts │ │ │ │ ├── add_license.sh │ │ │ │ ├── del_license.sh │ │ │ │ ├── exe_coverage_progs.sh │ │ │ │ ├── gen_cross_toolchain.sh │ │ │ │ ├── gen_lcov_report.sh │ │ │ │ ├── gen_one_makefile.sh │ │ │ │ ├── gen_rom_stats.sh │ │ │ │ ├── gen_sub_cmake.sh │ │ │ │ ├── gen_top_cmake.sh │ │ │ │ └── ops_repository.sh │ │ │ └── settings.mk │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── app_entry.c │ │ │ ├── app_entry.h │ │ │ ├── cJSON.c │ │ │ ├── cJSON.h │ │ │ ├── coap │ │ │ │ └── coap_example.c │ │ │ ├── http │ │ │ │ └── http_example.c │ │ │ ├── http2 │ │ │ │ ├── http2_example_stream.c │ │ │ │ └── http2_example_uploadfile.c │ │ │ ├── iot.mk │ │ │ ├── linkkit │ │ │ │ ├── data │ │ │ │ │ ├── cntdown_tsl.data │ │ │ │ │ ├── sched_tsl.data │ │ │ │ │ └── solo_tsl.data │ │ │ │ ├── deprecated │ │ │ │ │ ├── cntdown.c │ │ │ │ │ ├── gateway.c │ │ │ │ │ ├── sched.c │ │ │ │ │ └── solo.c │ │ │ │ ├── linkkit_example_cntdown.c │ │ │ │ ├── linkkit_example_cota.c │ │ │ │ ├── linkkit_example_gateway.c │ │ │ │ ├── linkkit_example_sched.c │ │ │ │ └── linkkit_example_solo.c │ │ │ ├── mqtt │ │ │ │ ├── mqtt_example.c │ │ │ │ ├── mqtt_example_multithread.c │ │ │ │ └── mqtt_example_rrpc.c │ │ │ └── ota │ │ │ │ ├── ota_example_coap.c │ │ │ │ └── ota_example_mqtt.c │ │ ├── include │ │ │ ├── exports │ │ │ │ ├── iot_export_awss.h │ │ │ │ ├── iot_export_coap.h │ │ │ │ ├── iot_export_compat.h │ │ │ │ ├── iot_export_errno.h │ │ │ │ ├── iot_export_event.h │ │ │ │ ├── iot_export_http.h │ │ │ │ ├── iot_export_http2.h │ │ │ │ ├── iot_export_http2_stream.h │ │ │ │ ├── iot_export_linkkit.h │ │ │ │ ├── iot_export_mqtt.h │ │ │ │ ├── iot_export_ota.h │ │ │ │ ├── iot_export_shadow.h │ │ │ │ ├── linkkit_export.h │ │ │ │ └── linkkit_gateway_export.h │ │ │ ├── imports │ │ │ │ ├── iot_import_awss.h │ │ │ │ ├── iot_import_config.h │ │ │ │ ├── iot_import_crypt.h │ │ │ │ ├── iot_import_dtls.h │ │ │ │ ├── iot_import_ota.h │ │ │ │ ├── iot_import_product.h │ │ │ │ ├── iot_import_tcp.h │ │ │ │ ├── iot_import_tls.h │ │ │ │ └── iot_import_udp.h │ │ │ ├── iot_export.h │ │ │ └── iot_import.h │ │ ├── make.settings │ │ ├── makefile │ │ ├── prebuilt │ │ │ ├── extra │ │ │ │ └── stdc │ │ │ │ │ ├── armlibc │ │ │ │ │ ├── RVMDK │ │ │ │ │ │ └── platform_toolchain.h │ │ │ │ │ ├── armcc_libc.c │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── hal_stub.c │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── select.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── unistd.h │ │ │ │ │ └── unistd.h │ │ │ │ │ └── iarlibc │ │ │ │ │ ├── EWARM │ │ │ │ │ └── platform_toolchain.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── iar_libc.c │ │ │ │ │ ├── reent.h │ │ │ │ │ ├── sys │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── reent.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── unistd.h │ │ │ │ │ └── unistd.h │ │ │ ├── mdm9206 │ │ │ │ ├── example │ │ │ │ │ ├── iotkit_demo.c │ │ │ │ │ └── iotkit_hal.c │ │ │ │ └── include │ │ │ │ │ ├── qapi_ali_iot.h │ │ │ │ │ ├── qapi_ali_iot_txm_base.h │ │ │ │ │ ├── qapi_txm_base.h │ │ │ │ │ └── txm_module.h │ │ │ ├── ubuntu │ │ │ │ ├── bin │ │ │ │ │ └── kconfig-mconf │ │ │ │ ├── include │ │ │ │ │ └── .gitkeep │ │ │ │ └── libs │ │ │ │ │ ├── libalicrypto.a │ │ │ │ │ ├── libcurl.a │ │ │ │ │ ├── libid2client.a │ │ │ │ │ ├── libitls.a │ │ │ │ │ ├── libkm.a │ │ │ │ │ ├── libmbedcrypto.a │ │ │ │ │ └── libplat_gen.a │ │ │ └── win7 │ │ │ │ ├── 32bit-libs │ │ │ │ ├── libeay32.lib │ │ │ │ ├── libpthread.a │ │ │ │ └── ssleay32.lib │ │ │ │ ├── include │ │ │ │ └── .gitkeep │ │ │ │ └── libs │ │ │ │ └── libpthread.a │ │ ├── project.mk │ │ ├── sdk-c.mk │ │ └── src │ │ │ ├── board │ │ │ ├── config.esp8266.aos │ │ │ ├── config.macos.x86 │ │ │ ├── config.mk3060.aos │ │ │ ├── config.mk3080.aos │ │ │ ├── config.rhino.make │ │ │ ├── config.ubuntu.x86 │ │ │ ├── config.win7.mingw32 │ │ │ └── config.xboard.make │ │ │ ├── infra │ │ │ ├── log │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_log.c │ │ │ │ ├── iotx_log.h │ │ │ │ ├── iotx_log_config.h │ │ │ │ ├── iotx_log_internal.h │ │ │ │ └── log.mk │ │ │ ├── system │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aos_support.c │ │ │ │ ├── ca.c │ │ │ │ ├── device.c │ │ │ │ ├── event.c │ │ │ │ ├── facility │ │ │ │ │ └── fac_string.c │ │ │ │ ├── guider.c │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_system.h │ │ │ │ ├── iotx_system_internal.h │ │ │ │ ├── report.c │ │ │ │ ├── report.h │ │ │ │ └── system.mk │ │ │ └── utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── digest │ │ │ │ ├── utils_base64.c │ │ │ │ ├── utils_base64.h │ │ │ │ ├── utils_hmac.c │ │ │ │ ├── utils_hmac.h │ │ │ │ ├── utils_md5.c │ │ │ │ ├── utils_md5.h │ │ │ │ ├── utils_sha1.c │ │ │ │ ├── utils_sha1.h │ │ │ │ ├── utils_sha256.c │ │ │ │ └── utils_sha256.h │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_utils.h │ │ │ │ ├── iotx_utils_config.h │ │ │ │ ├── iotx_utils_internal.h │ │ │ │ ├── misc │ │ │ │ ├── compat_aos_list.h │ │ │ │ ├── json_parser.c │ │ │ │ ├── json_parser.h │ │ │ │ ├── json_token.c │ │ │ │ ├── lite-cjson.c │ │ │ │ ├── lite-cjson.h │ │ │ │ ├── lite-list.h │ │ │ │ ├── mem_stats.c │ │ │ │ ├── mem_stats.h │ │ │ │ ├── string_utils.c │ │ │ │ ├── string_utils.h │ │ │ │ ├── utils_epoch_time.c │ │ │ │ ├── utils_epoch_time.h │ │ │ │ ├── utils_event.c │ │ │ │ ├── utils_httpc.c │ │ │ │ ├── utils_httpc.h │ │ │ │ ├── utils_net.c │ │ │ │ ├── utils_net.h │ │ │ │ ├── utils_sysinfo.h │ │ │ │ ├── utils_timer.c │ │ │ │ └── utils_timer.h │ │ │ │ └── utils.mk │ │ │ ├── protocol │ │ │ ├── alcs │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── alcs.mk │ │ │ │ ├── alcs_adapter.c │ │ │ │ ├── alcs_adapter.h │ │ │ │ ├── alcs_api.c │ │ │ │ ├── alcs_api.h │ │ │ │ ├── alcs_api_internal.h │ │ │ │ ├── alcs_client.c │ │ │ │ ├── alcs_coap.c │ │ │ │ ├── alcs_coap.h │ │ │ │ ├── alcs_localsetup.c │ │ │ │ ├── alcs_localsetup.h │ │ │ │ ├── alcs_mqtt.c │ │ │ │ ├── alcs_mqtt.h │ │ │ │ ├── alcs_server.c │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_alcs.h │ │ │ │ └── iotx_alcs_config.h │ │ │ ├── coap │ │ │ │ ├── Config.in │ │ │ │ ├── cloud │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Cloud_CoAPDeserialize.h │ │ │ │ │ ├── Cloud_CoAPExport.h │ │ │ │ │ ├── Cloud_CoAPMessage.h │ │ │ │ │ ├── Cloud_CoAPNetwork.h │ │ │ │ │ ├── Cloud_CoAPPlatform.h │ │ │ │ │ ├── Cloud_CoAPSerialize.h │ │ │ │ │ ├── CoAPDeserialize.c │ │ │ │ │ ├── CoAPExport.c │ │ │ │ │ ├── CoAPMessage.c │ │ │ │ │ ├── CoAPNetwork.c │ │ │ │ │ ├── CoAPSerialize.c │ │ │ │ │ ├── cloud.mk │ │ │ │ │ ├── iot.mk │ │ │ │ │ ├── iotx_ca_cert.c │ │ │ │ │ └── iotx_coap_api.c │ │ │ │ └── local │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CoAPDeserialize.c │ │ │ │ │ ├── CoAPDeserialize.h │ │ │ │ │ ├── CoAPExport.c │ │ │ │ │ ├── CoAPExport.h │ │ │ │ │ ├── CoAPInternal.h │ │ │ │ │ ├── CoAPMessage.c │ │ │ │ │ ├── CoAPMessage.h │ │ │ │ │ ├── CoAPNetwork.c │ │ │ │ │ ├── CoAPNetwork.h │ │ │ │ │ ├── CoAPObserve.c │ │ │ │ │ ├── CoAPObserve.h │ │ │ │ │ ├── CoAPPlatform.c │ │ │ │ │ ├── CoAPPlatform.h │ │ │ │ │ ├── CoAPResource.c │ │ │ │ │ ├── CoAPResource.h │ │ │ │ │ ├── CoAPSerialize.c │ │ │ │ │ ├── CoAPSerialize.h │ │ │ │ │ ├── CoAPServer.c │ │ │ │ │ ├── CoAPServer.h │ │ │ │ │ ├── iot.mk │ │ │ │ │ └── local.mk │ │ │ ├── http │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── http.mk │ │ │ │ ├── http_debug.h │ │ │ │ ├── iot.mk │ │ │ │ └── iotx_http_api.c │ │ │ ├── http2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── h2_debug.h │ │ │ │ ├── http2.mk │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_http2_api.c │ │ │ │ ├── nghttp2 │ │ │ │ │ ├── nghttp2.h │ │ │ │ │ └── nghttp2ver.h │ │ │ │ ├── nghttp2_buf.c │ │ │ │ ├── nghttp2_buf.h │ │ │ │ ├── nghttp2_callbacks.c │ │ │ │ ├── nghttp2_callbacks.h │ │ │ │ ├── nghttp2_debug.c │ │ │ │ ├── nghttp2_debug.h │ │ │ │ ├── nghttp2_frame.c │ │ │ │ ├── nghttp2_frame.h │ │ │ │ ├── nghttp2_hd.c │ │ │ │ ├── nghttp2_hd.h │ │ │ │ ├── nghttp2_hd_huffman.c │ │ │ │ ├── nghttp2_hd_huffman.h │ │ │ │ ├── nghttp2_hd_huffman_data.c │ │ │ │ ├── nghttp2_helper.c │ │ │ │ ├── nghttp2_helper.h │ │ │ │ ├── nghttp2_http.c │ │ │ │ ├── nghttp2_http.h │ │ │ │ ├── nghttp2_int.h │ │ │ │ ├── nghttp2_map.c │ │ │ │ ├── nghttp2_map.h │ │ │ │ ├── nghttp2_mem.c │ │ │ │ ├── nghttp2_mem.h │ │ │ │ ├── nghttp2_net.c │ │ │ │ ├── nghttp2_net.h │ │ │ │ ├── nghttp2_npn.c │ │ │ │ ├── nghttp2_npn.h │ │ │ │ ├── nghttp2_option.c │ │ │ │ ├── nghttp2_option.h │ │ │ │ ├── nghttp2_outbound_item.c │ │ │ │ ├── nghttp2_outbound_item.h │ │ │ │ ├── nghttp2_pq.c │ │ │ │ ├── nghttp2_pq.h │ │ │ │ ├── nghttp2_priority_spec.c │ │ │ │ ├── nghttp2_priority_spec.h │ │ │ │ ├── nghttp2_queue.c │ │ │ │ ├── nghttp2_queue.h │ │ │ │ ├── nghttp2_rcbuf.c │ │ │ │ ├── nghttp2_rcbuf.h │ │ │ │ ├── nghttp2_session.c │ │ │ │ ├── nghttp2_session.h │ │ │ │ ├── nghttp2_stream.c │ │ │ │ ├── nghttp2_stream.h │ │ │ │ ├── nghttp2_submit.c │ │ │ │ ├── nghttp2_submit.h │ │ │ │ ├── nghttp2_version.c │ │ │ │ └── nghttp2ver.h │ │ │ └── mqtt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── MQTTPacket │ │ │ │ ├── MQTTConnect.h │ │ │ │ ├── MQTTConnectClient.c │ │ │ │ ├── MQTTDeserializePublish.c │ │ │ │ ├── MQTTPacket.c │ │ │ │ ├── MQTTPacket.h │ │ │ │ ├── MQTTPublish.h │ │ │ │ ├── MQTTSerializePublish.c │ │ │ │ ├── MQTTSubscribe.h │ │ │ │ ├── MQTTSubscribeClient.c │ │ │ │ ├── MQTTUnsubscribe.h │ │ │ │ └── MQTTUnsubscribeClient.c │ │ │ │ ├── client │ │ │ │ └── mqtt_client.c │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_mqtt.h │ │ │ │ ├── iotx_mqtt_config.h │ │ │ │ ├── iotx_mqtt_internal.h │ │ │ │ └── mqtt.mk │ │ │ ├── ref-impl │ │ │ ├── hal │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hal.mk │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_hal_internal.h │ │ │ │ ├── os │ │ │ │ │ ├── macos │ │ │ │ │ │ ├── HAL_Crypt_MacOS.c │ │ │ │ │ │ ├── HAL_OS_MacOS.c │ │ │ │ │ │ ├── HAL_TCP_MacOS.c │ │ │ │ │ │ ├── HAL_UDP_MacOS.c │ │ │ │ │ │ ├── cJSON.c │ │ │ │ │ │ └── cJSON.h │ │ │ │ │ ├── ubuntu │ │ │ │ │ │ ├── HAL_AWSS_linux.c │ │ │ │ │ │ ├── HAL_Crypt_Linux.c │ │ │ │ │ │ ├── HAL_FS_Linux.c │ │ │ │ │ │ ├── HAL_OS_linux.c │ │ │ │ │ │ ├── HAL_TCP_linux.c │ │ │ │ │ │ ├── HAL_UDP_linux.c │ │ │ │ │ │ ├── base64.c │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ ├── cJSON.c │ │ │ │ │ │ ├── cJSON.h │ │ │ │ │ │ ├── kv.c │ │ │ │ │ │ └── kv.h │ │ │ │ │ └── win7 │ │ │ │ │ │ ├── HAL_OS_win7.c │ │ │ │ │ │ └── HAL_TCP_win7.c │ │ │ │ └── ssl │ │ │ │ │ ├── itls │ │ │ │ │ └── HAL_TLS_itls.c │ │ │ │ │ ├── mbedtls │ │ │ │ │ ├── HAL_DTLS_mbedtls.c │ │ │ │ │ └── HAL_TLS_mbedtls.c │ │ │ │ │ └── openssl │ │ │ │ │ └── HAL_TLS_openssl.c │ │ │ └── tls │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ ├── .gitignore │ │ │ │ └── mbedtls │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── bignum.h │ │ │ │ │ ├── bn_mul.h │ │ │ │ │ ├── check_config.h │ │ │ │ │ ├── cipher.h │ │ │ │ │ ├── cipher_internal.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── ecp.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── entropy_poll.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── md.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── md_internal.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── net_sockets.h │ │ │ │ │ ├── oid.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pk.h │ │ │ │ │ ├── pk_internal.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── sha256.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ ├── ssl_cookie.h │ │ │ │ │ ├── ssl_internal.h │ │ │ │ │ ├── timing.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ └── x509_crt.h │ │ │ │ ├── iot.mk │ │ │ │ ├── library │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── aes.c │ │ │ │ ├── asn1parse.c │ │ │ │ ├── base64.c │ │ │ │ ├── bignum.c │ │ │ │ ├── cipher.c │ │ │ │ ├── cipher_wrap.c │ │ │ │ ├── ctr_drbg.c │ │ │ │ ├── debug.c │ │ │ │ ├── entropy.c │ │ │ │ ├── entropy_poll.c │ │ │ │ ├── error.c │ │ │ │ ├── md.c │ │ │ │ ├── md5.c │ │ │ │ ├── md_wrap.c │ │ │ │ ├── net_sockets.c │ │ │ │ ├── oid.c │ │ │ │ ├── pem.c │ │ │ │ ├── pk.c │ │ │ │ ├── pk_wrap.c │ │ │ │ ├── pkparse.c │ │ │ │ ├── platform.c │ │ │ │ ├── rsa.c │ │ │ │ ├── sha1.c │ │ │ │ ├── sha256.c │ │ │ │ ├── ssl_ciphersuites.c │ │ │ │ ├── ssl_cli.c │ │ │ │ ├── ssl_cookie.c │ │ │ │ ├── ssl_tls.c │ │ │ │ ├── timing.c │ │ │ │ ├── x509.c │ │ │ │ └── x509_crt.c │ │ │ │ └── tls.mk │ │ │ ├── sdk-impl │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.in │ │ │ ├── deprecated_linkkit │ │ │ │ ├── impl_gateway.c │ │ │ │ ├── impl_gateway.h │ │ │ │ ├── impl_ntp.c │ │ │ │ ├── impl_ntp.h │ │ │ │ ├── impl_solo.c │ │ │ │ └── impl_solo.h │ │ │ ├── impl_dynreg.c │ │ │ ├── impl_linkkit.c │ │ │ ├── impl_logpost.c │ │ │ ├── iot.mk │ │ │ ├── sdk-impl.c │ │ │ ├── sdk-impl.mk │ │ │ └── sdk-impl_internal.h │ │ │ ├── security │ │ │ └── pro │ │ │ │ ├── crypto │ │ │ │ ├── ali_crypto.h │ │ │ │ └── ali_crypto_types.h │ │ │ │ ├── id2 │ │ │ │ ├── error_code.h │ │ │ │ └── id2_client.h │ │ │ │ ├── itls │ │ │ │ ├── check_config.h │ │ │ │ ├── cipher.h │ │ │ │ ├── config.h │ │ │ │ ├── debug.h │ │ │ │ ├── mbedtls_auth.h │ │ │ │ ├── md.h │ │ │ │ ├── net.h │ │ │ │ ├── net_sockets.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform_alt.h │ │ │ │ ├── ssl.h │ │ │ │ └── ssl_ciphersuites.h │ │ │ │ └── km │ │ │ │ └── km.h │ │ │ ├── services │ │ │ ├── awss │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── aws_lib.h │ │ │ │ ├── awss.c │ │ │ │ ├── awss.h │ │ │ │ ├── awss.mk │ │ │ │ ├── awss_adha.c │ │ │ │ ├── awss_adha.h │ │ │ │ ├── awss_aha.c │ │ │ │ ├── awss_aha.h │ │ │ │ ├── awss_aplist.c │ │ │ │ ├── awss_aplist.h │ │ │ │ ├── awss_crypt.c │ │ │ │ ├── awss_crypt.h │ │ │ │ ├── awss_enrollee.c │ │ │ │ ├── awss_enrollee.h │ │ │ │ ├── awss_ht40.c │ │ │ │ ├── awss_ht40.h │ │ │ │ ├── awss_main.c │ │ │ │ ├── awss_main.h │ │ │ │ ├── awss_registrar.c │ │ │ │ ├── awss_smartconfig.c │ │ │ │ ├── awss_smartconfig.h │ │ │ │ ├── awss_wifimgr.c │ │ │ │ ├── awss_wifimgr.h │ │ │ │ ├── awss_wps.c │ │ │ │ ├── awss_wps.h │ │ │ │ ├── iot.mk │ │ │ │ ├── zconfig_ieee80211.c │ │ │ │ ├── zconfig_ieee80211.h │ │ │ │ ├── zconfig_lib.h │ │ │ │ ├── zconfig_protocol.c │ │ │ │ ├── zconfig_protocol.h │ │ │ │ ├── zconfig_utils.c │ │ │ │ ├── zconfig_utils.h │ │ │ │ └── zconfig_vendor_common.c │ │ │ ├── dev_bind │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── awss_bind.c │ │ │ │ ├── awss_cmp.h │ │ │ │ ├── awss_cmp_coap.c │ │ │ │ ├── awss_cmp_mqtt.c │ │ │ │ ├── awss_event.c │ │ │ │ ├── awss_event.h │ │ │ │ ├── awss_log.h │ │ │ │ ├── awss_notify.c │ │ │ │ ├── awss_notify.h │ │ │ │ ├── awss_packet.c │ │ │ │ ├── awss_packet.h │ │ │ │ ├── awss_report.c │ │ │ │ ├── awss_timer.c │ │ │ │ ├── awss_timer.h │ │ │ │ ├── awss_utils.h │ │ │ │ ├── dev_bind.mk │ │ │ │ ├── iot.mk │ │ │ │ ├── os │ │ │ │ │ ├── os.h │ │ │ │ │ ├── os_misc.c │ │ │ │ │ ├── platform.h │ │ │ │ │ └── product │ │ │ │ │ │ └── product.h │ │ │ │ ├── passwd.c │ │ │ │ ├── passwd.h │ │ │ │ ├── sha256.c │ │ │ │ └── sha256.h │ │ │ ├── http2_stream │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── http2_stream.c │ │ │ │ ├── http2_stream.mk │ │ │ │ └── iot.mk │ │ │ ├── linkkit │ │ │ │ ├── Config.in │ │ │ │ ├── cm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cm.mk │ │ │ │ │ ├── include │ │ │ │ │ │ └── iotx_cm.h │ │ │ │ │ ├── iot.mk │ │ │ │ │ ├── iotx_cm.c │ │ │ │ │ ├── iotx_cm_coap.c │ │ │ │ │ ├── iotx_cm_coap.h │ │ │ │ │ ├── iotx_cm_internal.h │ │ │ │ │ ├── iotx_cm_mqtt.c │ │ │ │ │ └── iotx_cm_mqtt.h │ │ │ │ ├── dev_reset │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── awss_reset.c │ │ │ │ │ ├── awss_reset.h │ │ │ │ │ ├── dev_reset.mk │ │ │ │ │ └── iot.mk │ │ │ │ └── dm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── client │ │ │ │ │ ├── dm_client.c │ │ │ │ │ ├── dm_client.h │ │ │ │ │ ├── dm_client_adapter.c │ │ │ │ │ └── dm_client_adapter.h │ │ │ │ │ ├── dm.mk │ │ │ │ │ ├── dm_api.c │ │ │ │ │ ├── dm_api.h │ │ │ │ │ ├── dm_cota.c │ │ │ │ │ ├── dm_cota.h │ │ │ │ │ ├── dm_fota.c │ │ │ │ │ ├── dm_fota.h │ │ │ │ │ ├── dm_ipc.c │ │ │ │ │ ├── dm_ipc.h │ │ │ │ │ ├── dm_manager.c │ │ │ │ │ ├── dm_manager.h │ │ │ │ │ ├── dm_message.c │ │ │ │ │ ├── dm_message.h │ │ │ │ │ ├── dm_message_cache.c │ │ │ │ │ ├── dm_message_cache.h │ │ │ │ │ ├── dm_msg_process.c │ │ │ │ │ ├── dm_msg_process.h │ │ │ │ │ ├── dm_opt.c │ │ │ │ │ ├── dm_opt.h │ │ │ │ │ ├── dm_ota.c │ │ │ │ │ ├── dm_ota.h │ │ │ │ │ ├── dm_shadow.c │ │ │ │ │ ├── dm_shadow.h │ │ │ │ │ ├── dm_tsl_alink.c │ │ │ │ │ ├── dm_tsl_alink.h │ │ │ │ │ ├── dm_utils.c │ │ │ │ │ ├── dm_utils.h │ │ │ │ │ ├── format.sh │ │ │ │ │ ├── iot.mk │ │ │ │ │ ├── iotx_dm.h │ │ │ │ │ ├── iotx_dm_config.h │ │ │ │ │ ├── iotx_dm_internal.h │ │ │ │ │ └── server │ │ │ │ │ ├── dm_server.c │ │ │ │ │ ├── dm_server.h │ │ │ │ │ ├── dm_server_adapter.c │ │ │ │ │ └── dm_server_adapter.h │ │ │ ├── mdal │ │ │ │ ├── Config.in │ │ │ │ ├── mal │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ica │ │ │ │ │ │ ├── ica.mk │ │ │ │ │ │ ├── mdal_ica_at_client.c │ │ │ │ │ │ ├── mdal_ica_at_client.h │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── mdal_ica_at_client_test.c │ │ │ │ │ │ │ └── mdal_ica_at_client_test.h │ │ │ │ │ ├── iot.mk │ │ │ │ │ ├── mal.c │ │ │ │ │ ├── mal.h │ │ │ │ │ ├── mal.mk │ │ │ │ │ ├── mdal_mal_export.h │ │ │ │ │ └── mdal_mal_import.h │ │ │ │ └── sal │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── include │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── sal_arch_internal.h │ │ │ │ │ │ ├── sal_pcb.h │ │ │ │ │ │ ├── sal_sockets_internal.h │ │ │ │ │ │ └── sal_util.h │ │ │ │ │ ├── sal_arch.h │ │ │ │ │ ├── sal_def.h │ │ │ │ │ ├── sal_err.h │ │ │ │ │ ├── sal_ipaddr.h │ │ │ │ │ └── sal_sockets.h │ │ │ │ │ ├── iot.mk │ │ │ │ │ ├── sal.mk │ │ │ │ │ ├── sal_import.h │ │ │ │ │ └── src │ │ │ │ │ ├── ip4_addr.c │ │ │ │ │ ├── sal_arch.c │ │ │ │ │ ├── sal_arch_aos.c │ │ │ │ │ ├── sal_err.c │ │ │ │ │ ├── sal_sockets.c │ │ │ │ │ └── sal_util.c │ │ │ ├── ota │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── impl │ │ │ │ │ ├── ota_fetch.c │ │ │ │ │ └── ota_lib.c │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_ota.c │ │ │ │ ├── iotx_ota.h │ │ │ │ ├── iotx_ota_config.h │ │ │ │ ├── iotx_ota_internal.h │ │ │ │ ├── ota.mk │ │ │ │ └── prot │ │ │ │ │ ├── ota_coap.c │ │ │ │ │ └── ota_mqtt.c │ │ │ ├── shadow │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── iot.mk │ │ │ │ ├── shadow.c │ │ │ │ ├── shadow.h │ │ │ │ ├── shadow_common.c │ │ │ │ ├── shadow_common.h │ │ │ │ ├── shadow_config.h │ │ │ │ ├── shadow_debug.h │ │ │ │ ├── shadow_delta.c │ │ │ │ ├── shadow_delta.h │ │ │ │ ├── shadow_update.c │ │ │ │ ├── shadow_update.h │ │ │ │ ├── utils_list.c │ │ │ │ └── utils_list.h │ │ │ └── subdev │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Config.in │ │ │ │ ├── iot.mk │ │ │ │ ├── iotx_subdev.h │ │ │ │ ├── iotx_subdev_api.c │ │ │ │ ├── iotx_subdev_common.c │ │ │ │ ├── iotx_subdev_common.h │ │ │ │ └── subdev_debug.h │ │ │ └── tools │ │ │ ├── add_license.sh │ │ │ ├── default_settings.mk │ │ │ ├── del_license.sh │ │ │ ├── generate_lcov_report.sh │ │ │ ├── internal_make_funcs.mk │ │ │ ├── linkkit_tsl_convert │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── cJSON.h │ │ │ │ ├── common.h │ │ │ │ ├── tsl_file.h │ │ │ │ ├── tsl_format_export.h │ │ │ │ └── tsl_opt_impl.h │ │ │ ├── iot.mk │ │ │ ├── linkkit_tsl_convert.c │ │ │ └── src │ │ │ │ ├── cJSON.c │ │ │ │ ├── tsl_file.c │ │ │ │ ├── tsl_format_export.c │ │ │ │ └── tsl_opt_impl.c │ │ │ ├── mock_build_options.mk │ │ │ ├── parse_make_settings.mk │ │ │ └── walk_through_examples.sh │ └── platform │ │ ├── Makefile │ │ └── os │ │ ├── Makefile │ │ └── gprs_a9 │ │ ├── Makefile │ │ ├── include │ │ ├── hal_sys.h │ │ ├── inttypes.h │ │ └── unistd.h │ │ └── src │ │ ├── HAL_DTLS_mbedtls.c │ │ ├── HAL_OS_gprs_a9.c │ │ ├── HAL_SYS.c │ │ ├── HAL_TCP_gprs_a9.c │ │ ├── HAL_TLS_mbedtls.c │ │ └── HAL_UDP_gprs_a9.c ├── cjson │ ├── Makefile │ ├── make.srcs │ └── src │ │ ├── .github │ │ └── CONTRIBUTING.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cJSON.c │ │ ├── cJSON.h │ │ ├── cJSON_Utils.c │ │ ├── cJSON_Utils.h │ │ ├── fuzzing │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── afl-prepare-linux.sh │ │ ├── afl.c │ │ ├── afl.sh │ │ ├── inputs │ │ │ ├── test1 │ │ │ ├── test10 │ │ │ ├── test11 │ │ │ ├── test2 │ │ │ ├── test3 │ │ │ ├── test3.bu │ │ │ ├── test3.uf │ │ │ ├── test3.uu │ │ │ ├── test4 │ │ │ ├── test5 │ │ │ ├── test6 │ │ │ ├── test7 │ │ │ ├── test8 │ │ │ └── test9 │ │ └── json.dict │ │ ├── library_config │ │ ├── cJSONConfig.cmake.in │ │ ├── cJSONConfigVersion.cmake.in │ │ ├── libcjson.pc.in │ │ └── libcjson_utils.pc.in │ │ ├── test.c │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── cjson_add.c │ │ ├── common.h │ │ ├── compare_tests.c │ │ ├── inputs │ │ │ ├── test1 │ │ │ ├── test1.expected │ │ │ ├── test10 │ │ │ ├── test10.expected │ │ │ ├── test11 │ │ │ ├── test11.expected │ │ │ ├── test2 │ │ │ ├── test2.expected │ │ │ ├── test3 │ │ │ ├── test3.expected │ │ │ ├── test4 │ │ │ ├── test4.expected │ │ │ ├── test5 │ │ │ ├── test5.expected │ │ │ ├── test6 │ │ │ ├── test7 │ │ │ ├── test7.expected │ │ │ ├── test8 │ │ │ ├── test8.expected │ │ │ ├── test9 │ │ │ └── test9.expected │ │ ├── json-patch-tests │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── cjson-utils-tests.json │ │ │ ├── package.json │ │ │ ├── spec_tests.json │ │ │ └── tests.json │ │ ├── json_patch_tests.c │ │ ├── misc_tests.c │ │ ├── misc_utils_tests.c │ │ ├── old_utils_tests.c │ │ ├── parse_array.c │ │ ├── parse_examples.c │ │ ├── parse_hex4.c │ │ ├── parse_number.c │ │ ├── parse_object.c │ │ ├── parse_string.c │ │ ├── parse_value.c │ │ ├── parse_with_opts.c │ │ ├── print_array.c │ │ ├── print_number.c │ │ ├── print_object.c │ │ ├── print_string.c │ │ ├── print_value.c │ │ ├── readme_examples.c │ │ └── unity │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── auto │ │ │ ├── colour_prompt.rb │ │ │ ├── colour_reporter.rb │ │ │ ├── generate_config.yml │ │ │ ├── generate_module.rb │ │ │ ├── generate_test_runner.rb │ │ │ ├── parse_output.rb │ │ │ ├── stylize_as_junit.rb │ │ │ ├── test_file_filter.rb │ │ │ ├── type_sanitizer.rb │ │ │ ├── unity_test_summary.py │ │ │ ├── unity_test_summary.rb │ │ │ └── unity_to_junit.py │ │ │ ├── docs │ │ │ ├── ThrowTheSwitchCodingStandard.md │ │ │ ├── UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf │ │ │ ├── UnityAssertionsReference.md │ │ │ ├── UnityConfigurationGuide.md │ │ │ ├── UnityGettingStartedGuide.md │ │ │ ├── UnityHelperScriptsGuide.md │ │ │ └── license.txt │ │ │ ├── examples │ │ │ ├── example_1 │ │ │ │ ├── makefile │ │ │ │ ├── readme.txt │ │ │ │ └── src │ │ │ │ │ ├── ProductionCode.c │ │ │ │ │ ├── ProductionCode.h │ │ │ │ │ ├── ProductionCode2.c │ │ │ │ │ └── ProductionCode2.h │ │ │ ├── example_2 │ │ │ │ ├── makefile │ │ │ │ ├── readme.txt │ │ │ │ └── src │ │ │ │ │ ├── ProductionCode.c │ │ │ │ │ ├── ProductionCode.h │ │ │ │ │ ├── ProductionCode2.c │ │ │ │ │ └── ProductionCode2.h │ │ │ ├── example_3 │ │ │ │ ├── helper │ │ │ │ │ ├── UnityHelper.c │ │ │ │ │ └── UnityHelper.h │ │ │ │ ├── rakefile.rb │ │ │ │ ├── rakefile_helper.rb │ │ │ │ ├── readme.txt │ │ │ │ ├── src │ │ │ │ │ ├── ProductionCode.c │ │ │ │ │ ├── ProductionCode.h │ │ │ │ │ ├── ProductionCode2.c │ │ │ │ │ └── ProductionCode2.h │ │ │ │ └── target_gcc_32.yml │ │ │ └── unity_config.h │ │ │ ├── extras │ │ │ ├── eclipse │ │ │ │ └── error_parsers.txt │ │ │ └── fixture │ │ │ │ ├── rakefile.rb │ │ │ │ ├── rakefile_helper.rb │ │ │ │ ├── readme.txt │ │ │ │ └── src │ │ │ │ ├── unity_fixture.c │ │ │ │ ├── unity_fixture.h │ │ │ │ ├── unity_fixture_internals.h │ │ │ │ └── unity_fixture_malloc_overrides.h │ │ │ ├── release │ │ │ ├── build.info │ │ │ └── version.info │ │ │ └── src │ │ │ ├── unity.c │ │ │ ├── unity.h │ │ │ └── unity_internals.h │ │ └── valgrind.supp ├── gps │ ├── Makefile │ ├── include │ │ ├── gps.h │ │ └── gps_parse.h │ ├── minmea │ │ ├── Makefile │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── compat │ │ │ ├── minmea_compat_ti-rtos.h │ │ │ └── minmea_compat_windows.h │ │ │ ├── example.c │ │ │ ├── minmea.c │ │ │ ├── minmea.h │ │ │ └── tests.c │ └── src │ │ ├── gps.c │ │ └── gps_parse.c ├── lcd │ ├── Makefile │ ├── ili9341 │ │ ├── Makefile │ │ ├── include │ │ │ └── lcd_config_params.h │ │ └── src │ │ │ └── ili9341.c │ ├── include │ │ └── lcd.h │ ├── src │ │ └── lcd.c │ └── ssd1306 │ │ ├── Makefile │ │ ├── include │ │ └── ssd1306.h │ │ └── src │ │ └── ssd1306.c ├── lvgl │ ├── Makefile │ ├── lv_conf.h │ └── src │ │ ├── README.md │ │ ├── docs │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── TODO_MAJOR.md │ │ ├── TODO_MINOR.md │ │ └── TODO_PATCH.md │ │ ├── licence.txt │ │ ├── lv_conf_templ.h │ │ ├── lv_core │ │ ├── lv_core.mk │ │ ├── lv_group.c │ │ ├── lv_group.h │ │ ├── lv_indev.c │ │ ├── lv_indev.h │ │ ├── lv_obj.c │ │ ├── lv_obj.h │ │ ├── lv_refr.c │ │ ├── lv_refr.h │ │ ├── lv_style.c │ │ ├── lv_style.h │ │ ├── lv_vdb.c │ │ └── lv_vdb.h │ │ ├── lv_draw │ │ ├── lv_draw.c │ │ ├── lv_draw.h │ │ ├── lv_draw.mk │ │ ├── lv_draw_rbasic.c │ │ ├── lv_draw_rbasic.h │ │ ├── lv_draw_vbasic.c │ │ └── lv_draw_vbasic.h │ │ ├── lv_hal │ │ ├── lv_hal.h │ │ ├── lv_hal.mk │ │ ├── lv_hal_disp.c │ │ ├── lv_hal_disp.h │ │ ├── lv_hal_indev.c │ │ ├── lv_hal_indev.h │ │ ├── lv_hal_tick.c │ │ └── lv_hal_tick.h │ │ ├── lv_misc │ │ ├── lv_anim.c │ │ ├── lv_anim.h │ │ ├── lv_area.c │ │ ├── lv_area.h │ │ ├── lv_circ.c │ │ ├── lv_circ.h │ │ ├── lv_color.c │ │ ├── lv_color.h │ │ ├── lv_font.c │ │ ├── lv_font.h │ │ ├── lv_fonts │ │ │ ├── lv_font_dejavu_10.c │ │ │ ├── lv_font_dejavu_10_cyrillic.c │ │ │ ├── lv_font_dejavu_10_latin_sup.c │ │ │ ├── lv_font_dejavu_20.c │ │ │ ├── lv_font_dejavu_20_cyrillic.c │ │ │ ├── lv_font_dejavu_20_latin_sup.c │ │ │ ├── lv_font_dejavu_30.c │ │ │ ├── lv_font_dejavu_30_cyrillic.c │ │ │ ├── lv_font_dejavu_30_latin_sup.c │ │ │ ├── lv_font_dejavu_40.c │ │ │ ├── lv_font_dejavu_40_cyrillic.c │ │ │ ├── lv_font_dejavu_40_latin_sup.c │ │ │ ├── lv_font_symbol_10.c │ │ │ ├── lv_font_symbol_20.c │ │ │ ├── lv_font_symbol_30.c │ │ │ ├── lv_font_symbol_40.c │ │ │ ├── lv_fonts.mk │ │ │ └── lv_symbol_def.h │ │ ├── lv_fs.c │ │ ├── lv_fs.h │ │ ├── lv_ll.c │ │ ├── lv_ll.h │ │ ├── lv_math.c │ │ ├── lv_math.h │ │ ├── lv_mem.c │ │ ├── lv_mem.h │ │ ├── lv_misc.mk │ │ ├── lv_task.c │ │ ├── lv_task.h │ │ ├── lv_templ.c │ │ ├── lv_templ.h │ │ ├── lv_trigo.c │ │ ├── lv_trigo.h │ │ ├── lv_txt.c │ │ ├── lv_txt.h │ │ ├── lv_ufs.c │ │ └── lv_ufs.h │ │ ├── lv_objx │ │ ├── lv_bar.c │ │ ├── lv_bar.h │ │ ├── lv_btn.c │ │ ├── lv_btn.h │ │ ├── lv_btnm.c │ │ ├── lv_btnm.h │ │ ├── lv_cb.c │ │ ├── lv_cb.h │ │ ├── lv_chart.c │ │ ├── lv_chart.h │ │ ├── lv_cont.c │ │ ├── lv_cont.h │ │ ├── lv_ddlist.c │ │ ├── lv_ddlist.h │ │ ├── lv_gauge.c │ │ ├── lv_gauge.h │ │ ├── lv_img.c │ │ ├── lv_img.h │ │ ├── lv_kb.c │ │ ├── lv_kb.h │ │ ├── lv_label.c │ │ ├── lv_label.h │ │ ├── lv_led.c │ │ ├── lv_led.h │ │ ├── lv_line.c │ │ ├── lv_line.h │ │ ├── lv_list.c │ │ ├── lv_list.h │ │ ├── lv_lmeter.c │ │ ├── lv_lmeter.h │ │ ├── lv_mbox.c │ │ ├── lv_mbox.h │ │ ├── lv_objx.mk │ │ ├── lv_objx_templ.c │ │ ├── lv_objx_templ.h │ │ ├── lv_page.c │ │ ├── lv_page.h │ │ ├── lv_roller.c │ │ ├── lv_roller.h │ │ ├── lv_slider.c │ │ ├── lv_slider.h │ │ ├── lv_sw.c │ │ ├── lv_sw.h │ │ ├── lv_ta.c │ │ ├── lv_ta.h │ │ ├── lv_tabview.c │ │ ├── lv_tabview.h │ │ ├── lv_win.c │ │ └── lv_win.h │ │ ├── lv_themes │ │ ├── lv_theme.c │ │ ├── lv_theme.h │ │ ├── lv_theme_alien.c │ │ ├── lv_theme_alien.h │ │ ├── lv_theme_default.c │ │ ├── lv_theme_default.h │ │ ├── lv_theme_material.c │ │ ├── lv_theme_material.h │ │ ├── lv_theme_mono.c │ │ ├── lv_theme_mono.h │ │ ├── lv_theme_night.c │ │ ├── lv_theme_night.h │ │ ├── lv_theme_templ.c │ │ ├── lv_theme_templ.h │ │ ├── lv_theme_zen.c │ │ ├── lv_theme_zen.h │ │ └── lv_themes.mk │ │ └── lvgl.h └── utils │ ├── Makefile │ ├── include │ ├── buffer.h │ └── ntp.h │ └── src │ ├── api_debug.c │ ├── assert.c │ ├── buffer.c │ ├── hal_gpio.c │ ├── log2.c │ ├── log2f.c │ ├── math.c │ ├── ntp.c │ ├── stdlib.c │ └── time.c ├── module_list.mk └── platform ├── chip ├── defs │ └── 8955_base.def └── rom │ └── 8955 │ └── lib │ └── mem_bridge_rom_CHIP.elf ├── compilation ├── 8955_map_cfg ├── ZbxLodToBin.exe ├── cust.ld ├── cust_rules.mk ├── discard.ld ├── elfCombine.pl ├── fota │ ├── fotacreate.exe │ ├── fotasdk.dll │ ├── fotasdk.h │ ├── fotasdk.lib │ ├── linux │ │ ├── fotacreate │ │ ├── fotapack │ │ ├── fotasdk.h │ │ └── libfotasdk.so │ └── platforms │ │ └── qwindows.dll ├── lodCombine.pl ├── lodtool.py ├── platform_symbols_to_strip └── win32 │ ├── .bashrc │ ├── Qt3Support4.dll │ ├── QtCore4.dll │ ├── QtGui4.dll │ ├── QtNetwork4.dll │ ├── QtSql4.dll │ ├── QtXml4.dll │ ├── README_Cygwin.txt │ ├── conf.exe │ ├── coolpkg.exe │ ├── coolxml.exe │ ├── cygenv.sh │ ├── gawk.exe │ ├── gperf.exe │ ├── grep.exe │ ├── lzma.exe │ ├── mconf.exe │ ├── msys-1.0.dll │ ├── srecmap.exe │ ├── tee.exe │ └── xcp2h.exe ├── csdk ├── debug │ ├── SW_V2130_csdk.elf │ └── SW_V2130_csdk.lod ├── memd.def └── release │ ├── SW_V2130_csdk.elf │ └── SW_V2130_csdk.lod ├── lib └── gcc │ └── mips-elf │ └── 4.4.2 │ ├── libgcc.a │ └── libstdc++.a ├── ramrun └── flsh_spi32m │ └── host_8955_flsh_spi32m_ramrun.lod └── tools └── genlib ├── Makefile └── genlib.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/README_EN.md -------------------------------------------------------------------------------- /app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/app/Makefile -------------------------------------------------------------------------------- /app/include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/app/include/app.h -------------------------------------------------------------------------------- /app/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/app/src/app.c -------------------------------------------------------------------------------- /demo/adc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/adc/Makefile -------------------------------------------------------------------------------- /demo/adc/src/demo_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/adc/src/demo_adc.c -------------------------------------------------------------------------------- /demo/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/audio/Makefile -------------------------------------------------------------------------------- /demo/audio/src/demo_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/audio/src/demo_audio.c -------------------------------------------------------------------------------- /demo/call/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/call/Makefile -------------------------------------------------------------------------------- /demo/call/include/demo_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/call/include/demo_call.h -------------------------------------------------------------------------------- /demo/call/src/demo_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/call/src/demo_call.c -------------------------------------------------------------------------------- /demo/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/cpp/Makefile -------------------------------------------------------------------------------- /demo/cpp/src/demo_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/cpp/src/demo_cpp.cpp -------------------------------------------------------------------------------- /demo/dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/dns/Makefile -------------------------------------------------------------------------------- /demo/dns/src/demo_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/dns/src/demo_dns.c -------------------------------------------------------------------------------- /demo/first/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/first/Makefile -------------------------------------------------------------------------------- /demo/first/src/demo_first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/first/src/demo_first.c -------------------------------------------------------------------------------- /demo/fota/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fota/Makefile -------------------------------------------------------------------------------- /demo/fota/include/demo_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fota/include/demo_fota.h -------------------------------------------------------------------------------- /demo/fota/src/demo_fota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fota/src/demo_fota.c -------------------------------------------------------------------------------- /demo/fota/src/fota_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fota/src/fota_server.c -------------------------------------------------------------------------------- /demo/fota/src/fota_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fota/src/fota_uart.c -------------------------------------------------------------------------------- /demo/fota/tool/uart_sendpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fota/tool/uart_sendpack.py -------------------------------------------------------------------------------- /demo/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fs/Makefile -------------------------------------------------------------------------------- /demo/fs/src/demo_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fs/src/demo_fs.c -------------------------------------------------------------------------------- /demo/fs/src/demo_fs_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fs/src/demo_fs_new.c -------------------------------------------------------------------------------- /demo/fs/src/demo_fs_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/fs/src/demo_fs_old.c -------------------------------------------------------------------------------- /demo/gizwits/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gizwits/Makefile -------------------------------------------------------------------------------- /demo/gizwits/src/demo_gizwits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gizwits/src/demo_gizwits.c -------------------------------------------------------------------------------- /demo/gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gpio/Makefile -------------------------------------------------------------------------------- /demo/gpio/include/demo_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gpio/include/demo_gpio.h -------------------------------------------------------------------------------- /demo/gpio/src/demo_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gpio/src/demo_gpio.c -------------------------------------------------------------------------------- /demo/gps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gps/Makefile -------------------------------------------------------------------------------- /demo/gps/src/demo_gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gps/src/demo_gps.c -------------------------------------------------------------------------------- /demo/gps_agps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gps_agps/Makefile -------------------------------------------------------------------------------- /demo/gps_agps/src/demo_agps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gps_agps/src/demo_agps.c -------------------------------------------------------------------------------- /demo/gps_tracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gps_tracker/Makefile -------------------------------------------------------------------------------- /demo/gps_tracker/src/demo_gps_tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/gps_tracker/src/demo_gps_tracker.c -------------------------------------------------------------------------------- /demo/i2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/i2c/Makefile -------------------------------------------------------------------------------- /demo/i2c/src/demo_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/i2c/src/demo_i2c.c -------------------------------------------------------------------------------- /demo/iccid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/iccid/Makefile -------------------------------------------------------------------------------- /demo/iccid/src/demo_iccid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/iccid/src/demo_iccid.c -------------------------------------------------------------------------------- /demo/imei/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/imei/Makefile -------------------------------------------------------------------------------- /demo/imei/src/demo_imei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/imei/src/demo_imei.c -------------------------------------------------------------------------------- /demo/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/json/Makefile -------------------------------------------------------------------------------- /demo/json/src/demo_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/json/src/demo_json.c -------------------------------------------------------------------------------- /demo/lbs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lbs/Makefile -------------------------------------------------------------------------------- /demo/lbs/src/demo_lbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lbs/src/demo_lbs.c -------------------------------------------------------------------------------- /demo/lcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lcd/Makefile -------------------------------------------------------------------------------- /demo/lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lcd/README.md -------------------------------------------------------------------------------- /demo/lcd/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lcd/config.mk -------------------------------------------------------------------------------- /demo/lcd/src/lcd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lcd/src/lcd_main.c -------------------------------------------------------------------------------- /demo/lowpower/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lowpower/Makefile -------------------------------------------------------------------------------- /demo/lowpower/src/demo_lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lowpower/src/demo_lp.c -------------------------------------------------------------------------------- /demo/lvgl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl/Makefile -------------------------------------------------------------------------------- /demo/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl/README.md -------------------------------------------------------------------------------- /demo/lvgl/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl/config.mk -------------------------------------------------------------------------------- /demo/lvgl/include/lvgl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl/include/lvgl_config.h -------------------------------------------------------------------------------- /demo/lvgl/src/lvgl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl/src/lvgl_main.c -------------------------------------------------------------------------------- /demo/lvgl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl2/Makefile -------------------------------------------------------------------------------- /demo/lvgl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl2/README.md -------------------------------------------------------------------------------- /demo/lvgl2/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl2/config.mk -------------------------------------------------------------------------------- /demo/lvgl2/include/lvgl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl2/include/lvgl_config.h -------------------------------------------------------------------------------- /demo/lvgl2/src/lvgl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/lvgl2/src/lvgl_main.c -------------------------------------------------------------------------------- /demo/mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/mqtt/Makefile -------------------------------------------------------------------------------- /demo/mqtt/include/demo_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/mqtt/include/demo_mqtt.h -------------------------------------------------------------------------------- /demo/mqtt/src/demo_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/mqtt/src/demo_mqtt.c -------------------------------------------------------------------------------- /demo/mqtt_ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/mqtt_ssl/Makefile -------------------------------------------------------------------------------- /demo/mqtt_ssl/include/demo_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/mqtt_ssl/include/demo_mqtt.h -------------------------------------------------------------------------------- /demo/mqtt_ssl/src/demo_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/mqtt_ssl/src/demo_mqtt.c -------------------------------------------------------------------------------- /demo/network/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/network/Makefile -------------------------------------------------------------------------------- /demo/network/src/demo_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/network/src/demo_network.c -------------------------------------------------------------------------------- /demo/network2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/network2/Makefile -------------------------------------------------------------------------------- /demo/network2/src/demo_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/network2/src/demo_network.c -------------------------------------------------------------------------------- /demo/oled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/Makefile -------------------------------------------------------------------------------- /demo/oled/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/README.MD -------------------------------------------------------------------------------- /demo/oled/assets/oled_iic_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/assets/oled_iic_128x64.png -------------------------------------------------------------------------------- /demo/oled/include/codetab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/include/codetab.h -------------------------------------------------------------------------------- /demo/oled/include/i2c_oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/include/i2c_oled.h -------------------------------------------------------------------------------- /demo/oled/src/i2c_oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/src/i2c_oled.c -------------------------------------------------------------------------------- /demo/oled/src/oled_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled/src/oled_main.c -------------------------------------------------------------------------------- /demo/oled_spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled_spi/Makefile -------------------------------------------------------------------------------- /demo/oled_spi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled_spi/README.md -------------------------------------------------------------------------------- /demo/oled_spi/assets/ssd1306_oled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled_spi/assets/ssd1306_oled.gif -------------------------------------------------------------------------------- /demo/oled_spi/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled_spi/config.mk -------------------------------------------------------------------------------- /demo/oled_spi/src/oled_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/oled_spi/src/oled_main.c -------------------------------------------------------------------------------- /demo/os/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/os/Makefile -------------------------------------------------------------------------------- /demo/os/src/demo_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/os/src/demo_os.c -------------------------------------------------------------------------------- /demo/pm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/pm/Makefile -------------------------------------------------------------------------------- /demo/pm/src/demo_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/pm/src/demo_pm.c -------------------------------------------------------------------------------- /demo/sms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/sms/Makefile -------------------------------------------------------------------------------- /demo/sms/src/demo_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/sms/src/demo_sms.c -------------------------------------------------------------------------------- /demo/socket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/socket/Makefile -------------------------------------------------------------------------------- /demo/socket/src/demo_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/socket/src/demo_socket.c -------------------------------------------------------------------------------- /demo/socket2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/socket2/Makefile -------------------------------------------------------------------------------- /demo/socket2/src/demo_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/socket2/src/demo_socket.c -------------------------------------------------------------------------------- /demo/socket_nbio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/socket_nbio/Makefile -------------------------------------------------------------------------------- /demo/socket_nbio/src/demo_socket_nbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/socket_nbio/src/demo_socket_nbio.c -------------------------------------------------------------------------------- /demo/spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/spi/Makefile -------------------------------------------------------------------------------- /demo/spi/src/demo_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/spi/src/demo_spi.c -------------------------------------------------------------------------------- /demo/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/ssl/Makefile -------------------------------------------------------------------------------- /demo/ssl/src/demo_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/ssl/src/demo_ssl.c -------------------------------------------------------------------------------- /demo/std/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/std/Makefile -------------------------------------------------------------------------------- /demo/std/src/demo_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/std/src/demo_std.c -------------------------------------------------------------------------------- /demo/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/time/Makefile -------------------------------------------------------------------------------- /demo/time/src/demo_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/time/src/demo_time.c -------------------------------------------------------------------------------- /demo/time_ntp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/time_ntp/Makefile -------------------------------------------------------------------------------- /demo/time_ntp/src/demo_ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/time_ntp/src/demo_ntp.c -------------------------------------------------------------------------------- /demo/timer_soft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/timer_soft/Makefile -------------------------------------------------------------------------------- /demo/timer_soft/src/demo_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/timer_soft/src/demo_timer.c -------------------------------------------------------------------------------- /demo/uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/uart/Makefile -------------------------------------------------------------------------------- /demo/uart/src/demo_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/uart/src/demo_uart.c -------------------------------------------------------------------------------- /demo/udp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/udp/Makefile -------------------------------------------------------------------------------- /demo/udp/src/demo_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/udp/src/demo_udp.c -------------------------------------------------------------------------------- /demo/ussd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/ussd/Makefile -------------------------------------------------------------------------------- /demo/ussd/src/demo_ussd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/ussd/src/demo_ussd.c -------------------------------------------------------------------------------- /demo/watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/watchdog/Makefile -------------------------------------------------------------------------------- /demo/watchdog/src/demo_watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/demo/watchdog/src/demo_watchdog.c -------------------------------------------------------------------------------- /doc/assets/A9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/assets/A9.png -------------------------------------------------------------------------------- /doc/assets/A9G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/assets/A9G.png -------------------------------------------------------------------------------- /doc/assets/A9G_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/assets/A9G_dev.png -------------------------------------------------------------------------------- /doc/assets/A9G_dev_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/assets/A9G_dev_pin.png -------------------------------------------------------------------------------- /doc/assets/USB-UART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/assets/USB-UART.png -------------------------------------------------------------------------------- /doc/assets/pudding_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/assets/pudding_pin.png -------------------------------------------------------------------------------- /doc/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/doc/doc.md -------------------------------------------------------------------------------- /include/api_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_audio.h -------------------------------------------------------------------------------- /include/api_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_call.h -------------------------------------------------------------------------------- /include/api_charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_charset.h -------------------------------------------------------------------------------- /include/api_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_debug.h -------------------------------------------------------------------------------- /include/api_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_fota.h -------------------------------------------------------------------------------- /include/api_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_fs.h -------------------------------------------------------------------------------- /include/api_gizwits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_gizwits.h -------------------------------------------------------------------------------- /include/api_gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_gps.h -------------------------------------------------------------------------------- /include/api_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_adc.h -------------------------------------------------------------------------------- /include/api_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_flash.h -------------------------------------------------------------------------------- /include/api_hal_gouda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_gouda.h -------------------------------------------------------------------------------- /include/api_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_gpio.h -------------------------------------------------------------------------------- /include/api_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_i2c.h -------------------------------------------------------------------------------- /include/api_hal_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_pm.h -------------------------------------------------------------------------------- /include/api_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_spi.h -------------------------------------------------------------------------------- /include/api_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_uart.h -------------------------------------------------------------------------------- /include/api_hal_watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_hal_watchdog.h -------------------------------------------------------------------------------- /include/api_inc/api_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_event.h -------------------------------------------------------------------------------- /include/api_inc/api_hal_gouda_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_hal_gouda_inc.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_adc.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_audio.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_call.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_charset.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_flash.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_fota.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_fs.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_gizwits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_gizwits.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_gpio.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_i2c.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_mqtt.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_network.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_os.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_pm.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_sim.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_sms.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_socket.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_spi.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_ss.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_ssl.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_time.h -------------------------------------------------------------------------------- /include/api_inc/api_inc_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/api_inc_uart.h -------------------------------------------------------------------------------- /include/api_inc/hal_iomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/hal_iomux.h -------------------------------------------------------------------------------- /include/api_inc/setjmp_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_inc/setjmp_inc.h -------------------------------------------------------------------------------- /include/api_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_info.h -------------------------------------------------------------------------------- /include/api_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_key.h -------------------------------------------------------------------------------- /include/api_lbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_lbs.h -------------------------------------------------------------------------------- /include/api_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_mqtt.h -------------------------------------------------------------------------------- /include/api_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_network.h -------------------------------------------------------------------------------- /include/api_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_os.h -------------------------------------------------------------------------------- /include/api_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_sim.h -------------------------------------------------------------------------------- /include/api_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_sms.h -------------------------------------------------------------------------------- /include/api_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_socket.h -------------------------------------------------------------------------------- /include/api_ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_ss.h -------------------------------------------------------------------------------- /include/api_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_ssl.h -------------------------------------------------------------------------------- /include/api_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/api_sys.h -------------------------------------------------------------------------------- /include/sdk_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/sdk_init.h -------------------------------------------------------------------------------- /include/std_inc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/assert.h -------------------------------------------------------------------------------- /include/std_inc/cs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/cs_types.h -------------------------------------------------------------------------------- /include/std_inc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/ctype.h -------------------------------------------------------------------------------- /include/std_inc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/errno.h -------------------------------------------------------------------------------- /include/std_inc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/float.h -------------------------------------------------------------------------------- /include/std_inc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/limits.h -------------------------------------------------------------------------------- /include/std_inc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/math.h -------------------------------------------------------------------------------- /include/std_inc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/setjmp.h -------------------------------------------------------------------------------- /include/std_inc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/stdarg.h -------------------------------------------------------------------------------- /include/std_inc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/stdbool.h -------------------------------------------------------------------------------- /include/std_inc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/stddef.h -------------------------------------------------------------------------------- /include/std_inc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/stdint.h -------------------------------------------------------------------------------- /include/std_inc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/stdio.h -------------------------------------------------------------------------------- /include/std_inc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/stdlib.h -------------------------------------------------------------------------------- /include/std_inc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/string.h -------------------------------------------------------------------------------- /include/std_inc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/include/std_inc/time.h -------------------------------------------------------------------------------- /init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/init/Makefile -------------------------------------------------------------------------------- /init/src/sdk_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/init/src/sdk_init.c -------------------------------------------------------------------------------- /init/target.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/init/target.def -------------------------------------------------------------------------------- /libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/Makefile -------------------------------------------------------------------------------- /libs/aliyun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/Makefile -------------------------------------------------------------------------------- /libs/aliyun/config/config.Ai_Thinker.gprs_a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/config/config.Ai_Thinker.gprs_a9 -------------------------------------------------------------------------------- /libs/aliyun/config/default_settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/config/default_settings.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/.gitignore -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/Config.linkkit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/Config.linkkit -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/LICENSE -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/README.md -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-complib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-complib.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-coverage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-coverage.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-dist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-dist.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-flat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-flat.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-kmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-kmod.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-libs.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-modinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-modinfo.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-origin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-origin.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-prefix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-prefix.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-prog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-prog.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-repo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-repo.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-submods.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-submods.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/_rules-top.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/_rules-top.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/docs/Help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/docs/Help.md -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/funcs.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/hooks/pre-commit -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/misc/Doxyfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/misc/Doxyfile.tpl -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/misc/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/misc/cut.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/misc/cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/misc/cut.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/pre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/pre-build.sh -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/rules.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/build-rules/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/build-rules/settings.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/app_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/app_entry.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/app_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/app_entry.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/cJSON.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/cJSON.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/coap/coap_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/coap/coap_example.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/http/http_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/http/http_example.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/mqtt/mqtt_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/mqtt/mqtt_example.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/ota/ota_example_coap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/ota/ota_example_coap.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/examples/ota/ota_example_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/examples/ota/ota_example_mqtt.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/exports/iot_export_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/exports/iot_export_ota.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/exports/linkkit_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/exports/linkkit_export.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/imports/iot_import_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/imports/iot_import_ota.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/imports/iot_import_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/imports/iot_import_tcp.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/imports/iot_import_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/imports/iot_import_tls.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/imports/iot_import_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/imports/iot_import_udp.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/iot_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/iot_export.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/include/iot_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/include/iot_import.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/make.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/make.settings -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/makefile -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/prebuilt/ubuntu/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/prebuilt/ubuntu/libs/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/prebuilt/ubuntu/libs/libcurl.a -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/prebuilt/ubuntu/libs/libitls.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/prebuilt/ubuntu/libs/libitls.a -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/prebuilt/ubuntu/libs/libkm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/prebuilt/ubuntu/libs/libkm.a -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/prebuilt/win7/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/prebuilt/win7/libs/libpthread.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/prebuilt/win7/libs/libpthread.a -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/project.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/sdk-c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/sdk-c.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.esp8266.aos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.esp8266.aos -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.macos.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.macos.x86 -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.mk3060.aos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.mk3060.aos -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.mk3080.aos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.mk3080.aos -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.rhino.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.rhino.make -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.ubuntu.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.ubuntu.x86 -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.win7.mingw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.win7.mingw32 -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/board/config.xboard.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/board/config.xboard.make -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/log/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/log/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/log/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/log/iotx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/log/iotx_log.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/log/iotx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/log/iotx_log.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/log/iotx_log_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/log/iotx_log_config.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/log/log.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/log/log.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/aos_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/aos_support.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/ca.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/device.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/event.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/guider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/guider.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/iotx_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/iotx_system.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/report.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/report.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/system/system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/system/system.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/iotx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/iotx_utils.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/misc/lite-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/misc/lite-list.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/misc/mem_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/misc/mem_stats.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/misc/mem_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/misc/mem_stats.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/misc/utils_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/misc/utils_net.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/misc/utils_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/misc/utils_net.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/infra/utils/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/infra/utils/utils.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_adapter.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_adapter.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_api.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_api.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_client.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_coap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_coap.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_coap.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_mqtt.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_mqtt.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/alcs_server.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/alcs/iotx_alcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/alcs/iotx_alcs.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/coap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/coap/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/coap/cloud/cloud.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/coap/cloud/cloud.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/coap/cloud/iot.mk: -------------------------------------------------------------------------------- 1 | LIBA_TARGET := libiot_coap_cloud.a 2 | 3 | HDR_REFS += src/infra 4 | -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/coap/local/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/coap/local/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/coap/local/local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/coap/local/local.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http/http.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http/http.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http/http_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http/http_debug.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/h2_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/h2_debug.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/http2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/http2.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_buf.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_buf.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_hd.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_hd.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_int.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_map.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_map.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_mem.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_mem.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_net.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_net.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_npn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_npn.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_npn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_npn.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_pq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_pq.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_pq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2_pq.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/http2/nghttp2ver.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/mqtt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/mqtt/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/mqtt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/mqtt/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/mqtt/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/mqtt/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/mqtt/iotx_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/mqtt/iotx_mqtt.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/protocol/mqtt/mqtt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/protocol/mqtt/mqtt.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/hal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/hal/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/hal/hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/hal/hal.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/hal/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/hal/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/hal/os/ubuntu/kv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/hal/os/ubuntu/kv.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/hal/os/ubuntu/kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/hal/os/ubuntu/kv.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libmbed* 3 | *.sln 4 | *.vcxproj 5 | -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/aes.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/debug.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/error.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/md.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/md5.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/oid.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/pem.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/pk.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/rsa.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/sha1.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/library/x509.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/ref-impl/tls/tls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/ref-impl/tls/tls.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/CMakeLists.txt -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/impl_dynreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/impl_dynreg.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/impl_linkkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/impl_linkkit.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/impl_logpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/impl_logpost.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/sdk-impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/sdk-impl.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/sdk-impl/sdk-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/sdk-impl/sdk-impl.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/itls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/itls/cipher.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/itls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/itls/config.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/itls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/itls/debug.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/itls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/itls/md.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/itls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/itls/net.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/itls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/itls/ssl.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/security/pro/km/km.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/security/pro/km/km.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/aws_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/aws_lib.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_adha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_adha.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_adha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_adha.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_aha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_aha.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_aha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_aha.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_crypt.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_crypt.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_ht40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_ht40.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_ht40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_ht40.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_main.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_main.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_wps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_wps.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/awss_wps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/awss_wps.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/awss/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/awss/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/dev_bind/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/dev_bind/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/dev_bind/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/dev_bind/os/os.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/dev_bind/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/dev_bind/passwd.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/dev_bind/passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/dev_bind/passwd.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/dev_bind/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/dev_bind/sha256.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/dev_bind/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/dev_bind/sha256.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/linkkit/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/linkkit/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/linkkit/cm/cm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/linkkit/cm/cm.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/linkkit/cm/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/linkkit/cm/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/linkkit/dm/dm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/linkkit/dm/dm.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/linkkit/dm/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/linkkit/dm/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/mal/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/mal/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/mal/mal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/mal/mal.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/mal/mal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/mal/mal.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/mal/mal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/mal/mal.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/sal/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/sal/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/mdal/sal/sal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/mdal/sal/sal.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/ota/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/ota/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/ota/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/ota/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/ota/iotx_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/ota/iotx_ota.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/ota/iotx_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/ota/iotx_ota.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/ota/ota.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/ota/ota.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/shadow/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/shadow/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/shadow/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/shadow/shadow.c -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/shadow/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/shadow/shadow.h -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/subdev/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/subdev/Config.in -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/services/subdev/iot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/services/subdev/iot.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/tools/add_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/tools/add_license.sh -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/tools/default_settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/tools/default_settings.mk -------------------------------------------------------------------------------- /libs/aliyun/iotkit-embedded/src/tools/del_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/iotkit-embedded/src/tools/del_license.sh -------------------------------------------------------------------------------- /libs/aliyun/platform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/Makefile -------------------------------------------------------------------------------- /libs/aliyun/platform/os/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/Makefile -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/Makefile -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/include/hal_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/include/hal_sys.h -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/include/inttypes.h: -------------------------------------------------------------------------------- 1 | 2 | #include "stdint.h" 3 | 4 | 5 | #define PRIi32 "li" 6 | -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/include/unistd.h -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/src/HAL_DTLS_mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/src/HAL_DTLS_mbedtls.c -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/src/HAL_OS_gprs_a9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/src/HAL_OS_gprs_a9.c -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/src/HAL_SYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/src/HAL_SYS.c -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/src/HAL_TCP_gprs_a9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/src/HAL_TCP_gprs_a9.c -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/src/HAL_TLS_mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/src/HAL_TLS_mbedtls.c -------------------------------------------------------------------------------- /libs/aliyun/platform/os/gprs_a9/src/HAL_UDP_gprs_a9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/aliyun/platform/os/gprs_a9/src/HAL_UDP_gprs_a9.c -------------------------------------------------------------------------------- /libs/cjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/Makefile -------------------------------------------------------------------------------- /libs/cjson/make.srcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/make.srcs -------------------------------------------------------------------------------- /libs/cjson/src/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/cjson/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/.gitignore -------------------------------------------------------------------------------- /libs/cjson/src/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/.travis.yml -------------------------------------------------------------------------------- /libs/cjson/src/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/CHANGELOG.md -------------------------------------------------------------------------------- /libs/cjson/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/CMakeLists.txt -------------------------------------------------------------------------------- /libs/cjson/src/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/CONTRIBUTORS.md -------------------------------------------------------------------------------- /libs/cjson/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/LICENSE -------------------------------------------------------------------------------- /libs/cjson/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/Makefile -------------------------------------------------------------------------------- /libs/cjson/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/README.md -------------------------------------------------------------------------------- /libs/cjson/src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/appveyor.yml -------------------------------------------------------------------------------- /libs/cjson/src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/cJSON.c -------------------------------------------------------------------------------- /libs/cjson/src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/cJSON.h -------------------------------------------------------------------------------- /libs/cjson/src/cJSON_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/cJSON_Utils.c -------------------------------------------------------------------------------- /libs/cjson/src/cJSON_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/cJSON_Utils.h -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/.gitignore: -------------------------------------------------------------------------------- 1 | afl-build 2 | -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/afl-prepare-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/afl-prepare-linux.sh -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/afl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/afl.c -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/afl.sh -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test1 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test10 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test11 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test2 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test3 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test3.bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test3.bu -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test3.uf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test3.uf -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test3.uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test3.uu -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test4 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test5 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test6 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test7 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test8 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/inputs/test9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/inputs/test9 -------------------------------------------------------------------------------- /libs/cjson/src/fuzzing/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/fuzzing/json.dict -------------------------------------------------------------------------------- /libs/cjson/src/library_config/cJSONConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/library_config/cJSONConfig.cmake.in -------------------------------------------------------------------------------- /libs/cjson/src/library_config/cJSONConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/library_config/cJSONConfigVersion.cmake.in -------------------------------------------------------------------------------- /libs/cjson/src/library_config/libcjson.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/library_config/libcjson.pc.in -------------------------------------------------------------------------------- /libs/cjson/src/library_config/libcjson_utils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/library_config/libcjson_utils.pc.in -------------------------------------------------------------------------------- /libs/cjson/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/test.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/cjson/src/tests/cjson_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/cjson_add.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/common.h -------------------------------------------------------------------------------- /libs/cjson/src/tests/compare_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/compare_tests.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test1 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test1.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test10 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test10.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test10.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test11 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test11.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test11.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test2 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test2.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test3 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test3.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test4 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test4.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test4.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test5 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test5.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test5.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test6 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test7 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test7.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test7.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test8 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test8.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test8.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test9 -------------------------------------------------------------------------------- /libs/cjson/src/tests/inputs/test9.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/inputs/test9.expected -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/json-patch-tests/.editorconfig -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | \#* 3 | !.editorconfig 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/.npmignore: -------------------------------------------------------------------------------- 1 | .editorconfig 2 | .gitignore 3 | -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/json-patch-tests/README.md -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/json-patch-tests/package.json -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/spec_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/json-patch-tests/spec_tests.json -------------------------------------------------------------------------------- /libs/cjson/src/tests/json-patch-tests/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/json-patch-tests/tests.json -------------------------------------------------------------------------------- /libs/cjson/src/tests/json_patch_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/json_patch_tests.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/misc_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/misc_tests.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/misc_utils_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/misc_utils_tests.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/old_utils_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/old_utils_tests.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_array.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_examples.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_hex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_hex4.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_number.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_object.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_string.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_value.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/parse_with_opts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/parse_with_opts.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/print_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/print_array.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/print_number.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/print_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/print_object.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/print_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/print_string.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/print_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/print_value.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/readme_examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/readme_examples.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/.gitattributes -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/.gitignore -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/.travis.yml -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/README.md -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/colour_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/colour_prompt.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/colour_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/colour_reporter.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/generate_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/generate_config.yml -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/generate_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/generate_module.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/generate_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/generate_test_runner.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/parse_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/parse_output.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/stylize_as_junit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/stylize_as_junit.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/test_file_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/test_file_filter.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/type_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/type_sanitizer.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/unity_test_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/unity_test_summary.py -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/unity_test_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/unity_test_summary.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/auto/unity_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/auto/unity_to_junit.py -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/docs/UnityConfigurationGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/docs/UnityConfigurationGuide.md -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/docs/UnityHelperScriptsGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/docs/UnityHelperScriptsGuide.md -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/docs/license.txt -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/example_1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/example_1/makefile -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/example_1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/example_1/readme.txt -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/example_2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/example_2/makefile -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/example_2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/example_2/readme.txt -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/example_3/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/example_3/rakefile.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/example_3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/example_3/readme.txt -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/examples/unity_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/examples/unity_config.h -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/extras/fixture/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/extras/fixture/rakefile.rb -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/extras/fixture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/extras/fixture/readme.txt -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/release/build.info: -------------------------------------------------------------------------------- 1 | 122 2 | 3 | -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/release/version.info: -------------------------------------------------------------------------------- 1 | 2.4.3 2 | 3 | -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/src/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/src/unity.c -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/src/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/src/unity.h -------------------------------------------------------------------------------- /libs/cjson/src/tests/unity/src/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/cjson/src/tests/unity/src/unity_internals.h -------------------------------------------------------------------------------- /libs/cjson/src/valgrind.supp: -------------------------------------------------------------------------------- 1 | { 2 | suppress_ld_on_armv7 3 | Memcheck:Cond 4 | ... 5 | obj:*/ld-*.so 6 | } 7 | -------------------------------------------------------------------------------- /libs/gps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/Makefile -------------------------------------------------------------------------------- /libs/gps/include/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/include/gps.h -------------------------------------------------------------------------------- /libs/gps/include/gps_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/include/gps_parse.h -------------------------------------------------------------------------------- /libs/gps/minmea/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/Makefile -------------------------------------------------------------------------------- /libs/gps/minmea/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | *.diff 4 | .*.swp 5 | minmea 6 | tests 7 | example 8 | *.exe 9 | -------------------------------------------------------------------------------- /libs/gps/minmea/src/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/.travis.yml -------------------------------------------------------------------------------- /libs/gps/minmea/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/COPYING -------------------------------------------------------------------------------- /libs/gps/minmea/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/Makefile -------------------------------------------------------------------------------- /libs/gps/minmea/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/README.md -------------------------------------------------------------------------------- /libs/gps/minmea/src/compat/minmea_compat_ti-rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/compat/minmea_compat_ti-rtos.h -------------------------------------------------------------------------------- /libs/gps/minmea/src/compat/minmea_compat_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/compat/minmea_compat_windows.h -------------------------------------------------------------------------------- /libs/gps/minmea/src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/example.c -------------------------------------------------------------------------------- /libs/gps/minmea/src/minmea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/minmea.c -------------------------------------------------------------------------------- /libs/gps/minmea/src/minmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/minmea.h -------------------------------------------------------------------------------- /libs/gps/minmea/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/minmea/src/tests.c -------------------------------------------------------------------------------- /libs/gps/src/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/src/gps.c -------------------------------------------------------------------------------- /libs/gps/src/gps_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/gps/src/gps_parse.c -------------------------------------------------------------------------------- /libs/lcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/Makefile -------------------------------------------------------------------------------- /libs/lcd/ili9341/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/ili9341/Makefile -------------------------------------------------------------------------------- /libs/lcd/ili9341/include/lcd_config_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/ili9341/include/lcd_config_params.h -------------------------------------------------------------------------------- /libs/lcd/ili9341/src/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/ili9341/src/ili9341.c -------------------------------------------------------------------------------- /libs/lcd/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/include/lcd.h -------------------------------------------------------------------------------- /libs/lcd/src/lcd.c: -------------------------------------------------------------------------------- 1 | 2 | #include "lcd.h" 3 | 4 | -------------------------------------------------------------------------------- /libs/lcd/ssd1306/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/ssd1306/Makefile -------------------------------------------------------------------------------- /libs/lcd/ssd1306/include/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/ssd1306/include/ssd1306.h -------------------------------------------------------------------------------- /libs/lcd/ssd1306/src/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lcd/ssd1306/src/ssd1306.c -------------------------------------------------------------------------------- /libs/lvgl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/Makefile -------------------------------------------------------------------------------- /libs/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/lv_conf.h -------------------------------------------------------------------------------- /libs/lvgl/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/README.md -------------------------------------------------------------------------------- /libs/lvgl/src/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /libs/lvgl/src/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/lvgl/src/docs/TODO_MAJOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/docs/TODO_MAJOR.md -------------------------------------------------------------------------------- /libs/lvgl/src/docs/TODO_MINOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/docs/TODO_MINOR.md -------------------------------------------------------------------------------- /libs/lvgl/src/docs/TODO_PATCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/docs/TODO_PATCH.md -------------------------------------------------------------------------------- /libs/lvgl/src/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/licence.txt -------------------------------------------------------------------------------- /libs/lvgl/src/lv_conf_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_conf_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_core.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_group.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_group.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_indev.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_indev.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_obj.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_obj.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_refr.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_refr.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_style.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_style.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_vdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_vdb.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_vdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_core/lv_vdb.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_rbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw_rbasic.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_rbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw_rbasic.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_vbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw_vbasic.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_vbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_draw/lv_draw_vbasic.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal_disp.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal_disp.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal_indev.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal_indev.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal_tick.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_hal/lv_hal_tick.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_anim.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_anim.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_area.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_area.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_circ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_circ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_circ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_circ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_color.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_color.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_font.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_font.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_10.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_20.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_30.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_dejavu_40.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_10.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_20.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_30.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_font_symbol_40.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_fonts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_fonts.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fonts/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fonts/lv_symbol_def.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fs.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_fs.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_ll.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_ll.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_math.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_math.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_mem.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_mem.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_misc.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_task.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_task.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_templ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_trigo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_trigo.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_trigo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_trigo.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_txt.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_txt.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_ufs.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_misc/lv_ufs.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_bar.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_bar.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_btn.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_btn.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_btnm.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_btnm.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_cb.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_cb.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_chart.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_chart.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_cont.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_cont.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ddlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_ddlist.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ddlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_ddlist.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_gauge.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_gauge.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_img.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_img.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_kb.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_kb.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_label.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_label.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_led.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_led.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_line.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_line.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_list.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_list.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_lmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_lmeter.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_lmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_lmeter.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_mbox.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_mbox.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_objx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_objx.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_objx_templ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_objx_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_page.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_page.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_roller.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_roller.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_slider.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_slider.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_sw.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_sw.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_ta.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_ta.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_tabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_tabview.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_tabview.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_win.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_objx/lv_win.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_alien.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_alien.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_alien.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_alien.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_default.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_default.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_material.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_material.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_material.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_mono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_mono.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_mono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_mono.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_night.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_night.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_night.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_night.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_templ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_zen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_zen.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_zen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_theme_zen.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_themes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lv_themes/lv_themes.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /libs/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/Makefile -------------------------------------------------------------------------------- /libs/utils/include/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/include/buffer.h -------------------------------------------------------------------------------- /libs/utils/include/ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/include/ntp.h -------------------------------------------------------------------------------- /libs/utils/src/api_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/api_debug.c -------------------------------------------------------------------------------- /libs/utils/src/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/assert.c -------------------------------------------------------------------------------- /libs/utils/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/buffer.c -------------------------------------------------------------------------------- /libs/utils/src/hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/hal_gpio.c -------------------------------------------------------------------------------- /libs/utils/src/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/log2.c -------------------------------------------------------------------------------- /libs/utils/src/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/log2f.c -------------------------------------------------------------------------------- /libs/utils/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/math.c -------------------------------------------------------------------------------- /libs/utils/src/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/ntp.c -------------------------------------------------------------------------------- /libs/utils/src/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/stdlib.c -------------------------------------------------------------------------------- /libs/utils/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/libs/utils/src/time.c -------------------------------------------------------------------------------- /module_list.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/module_list.mk -------------------------------------------------------------------------------- /platform/chip/defs/8955_base.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/chip/defs/8955_base.def -------------------------------------------------------------------------------- /platform/chip/rom/8955/lib/mem_bridge_rom_CHIP.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/chip/rom/8955/lib/mem_bridge_rom_CHIP.elf -------------------------------------------------------------------------------- /platform/compilation/8955_map_cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/8955_map_cfg -------------------------------------------------------------------------------- /platform/compilation/ZbxLodToBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/ZbxLodToBin.exe -------------------------------------------------------------------------------- /platform/compilation/cust.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/cust.ld -------------------------------------------------------------------------------- /platform/compilation/cust_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/cust_rules.mk -------------------------------------------------------------------------------- /platform/compilation/discard.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/discard.ld -------------------------------------------------------------------------------- /platform/compilation/elfCombine.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/elfCombine.pl -------------------------------------------------------------------------------- /platform/compilation/fota/fotacreate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/fotacreate.exe -------------------------------------------------------------------------------- /platform/compilation/fota/fotasdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/fotasdk.dll -------------------------------------------------------------------------------- /platform/compilation/fota/fotasdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/fotasdk.h -------------------------------------------------------------------------------- /platform/compilation/fota/fotasdk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/fotasdk.lib -------------------------------------------------------------------------------- /platform/compilation/fota/linux/fotacreate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/linux/fotacreate -------------------------------------------------------------------------------- /platform/compilation/fota/linux/fotapack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/linux/fotapack -------------------------------------------------------------------------------- /platform/compilation/fota/linux/fotasdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/linux/fotasdk.h -------------------------------------------------------------------------------- /platform/compilation/fota/linux/libfotasdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/linux/libfotasdk.so -------------------------------------------------------------------------------- /platform/compilation/fota/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/fota/platforms/qwindows.dll -------------------------------------------------------------------------------- /platform/compilation/lodCombine.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/lodCombine.pl -------------------------------------------------------------------------------- /platform/compilation/lodtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/lodtool.py -------------------------------------------------------------------------------- /platform/compilation/platform_symbols_to_strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/platform_symbols_to_strip -------------------------------------------------------------------------------- /platform/compilation/win32/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/.bashrc -------------------------------------------------------------------------------- /platform/compilation/win32/Qt3Support4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/Qt3Support4.dll -------------------------------------------------------------------------------- /platform/compilation/win32/QtCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/QtCore4.dll -------------------------------------------------------------------------------- /platform/compilation/win32/QtGui4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/QtGui4.dll -------------------------------------------------------------------------------- /platform/compilation/win32/QtNetwork4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/QtNetwork4.dll -------------------------------------------------------------------------------- /platform/compilation/win32/QtSql4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/QtSql4.dll -------------------------------------------------------------------------------- /platform/compilation/win32/QtXml4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/QtXml4.dll -------------------------------------------------------------------------------- /platform/compilation/win32/README_Cygwin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/README_Cygwin.txt -------------------------------------------------------------------------------- /platform/compilation/win32/conf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/conf.exe -------------------------------------------------------------------------------- /platform/compilation/win32/coolpkg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/coolpkg.exe -------------------------------------------------------------------------------- /platform/compilation/win32/coolxml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/coolxml.exe -------------------------------------------------------------------------------- /platform/compilation/win32/cygenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/cygenv.sh -------------------------------------------------------------------------------- /platform/compilation/win32/gawk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/gawk.exe -------------------------------------------------------------------------------- /platform/compilation/win32/gperf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/gperf.exe -------------------------------------------------------------------------------- /platform/compilation/win32/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/grep.exe -------------------------------------------------------------------------------- /platform/compilation/win32/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/lzma.exe -------------------------------------------------------------------------------- /platform/compilation/win32/mconf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/mconf.exe -------------------------------------------------------------------------------- /platform/compilation/win32/msys-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/msys-1.0.dll -------------------------------------------------------------------------------- /platform/compilation/win32/srecmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/srecmap.exe -------------------------------------------------------------------------------- /platform/compilation/win32/tee.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/tee.exe -------------------------------------------------------------------------------- /platform/compilation/win32/xcp2h.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/compilation/win32/xcp2h.exe -------------------------------------------------------------------------------- /platform/csdk/debug/SW_V2130_csdk.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/csdk/debug/SW_V2130_csdk.elf -------------------------------------------------------------------------------- /platform/csdk/debug/SW_V2130_csdk.lod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/csdk/debug/SW_V2130_csdk.lod -------------------------------------------------------------------------------- /platform/csdk/memd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/csdk/memd.def -------------------------------------------------------------------------------- /platform/csdk/release/SW_V2130_csdk.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/csdk/release/SW_V2130_csdk.elf -------------------------------------------------------------------------------- /platform/csdk/release/SW_V2130_csdk.lod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/csdk/release/SW_V2130_csdk.lod -------------------------------------------------------------------------------- /platform/lib/gcc/mips-elf/4.4.2/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/lib/gcc/mips-elf/4.4.2/libgcc.a -------------------------------------------------------------------------------- /platform/lib/gcc/mips-elf/4.4.2/libstdc++.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/lib/gcc/mips-elf/4.4.2/libstdc++.a -------------------------------------------------------------------------------- /platform/tools/genlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/tools/genlib/Makefile -------------------------------------------------------------------------------- /platform/tools/genlib/genlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ai-Thinker-Open/GPRS_C_SDK/HEAD/platform/tools/genlib/genlib.sh --------------------------------------------------------------------------------