实例介绍
BC28_OpenCPU,BC28 NB-IOT模组的二次开发包,包含完整的SDK
【实例截图】
【核心代码】
a50db695-ce25-4f2c-bf91-0766b0a8ff06
└── BC28_OpenCPU_Hi1_SDK_V1.0
├── BC28JAR01A07_OCN.fwpkg
├── build_scons
│ ├── arm
│ │ ├── application.bin
│ │ ├── application.du
│ │ ├── application.elf
│ │ ├── application.lst
│ │ ├── application.map
│ │ ├── application.mem
│ │ ├── application.sha
│ │ ├── application.ver
│ │ ├── config
│ │ │ └── vectors
│ │ │ └── Hi2115
│ │ │ └── application_core
│ │ │ └── vectors.o
│ │ ├── custom
│ │ │ └── private
│ │ │ └── sys_config.o
│ │ ├── example
│ │ │ └── private
│ │ │ ├── example_adc.o
│ │ │ ├── example_api_tcp.o
│ │ │ ├── example_api_udp.o
│ │ │ ├── example_atc_onet.o
│ │ │ ├── example_atc_pipe.o
│ │ │ ├── example_at_iot.o
│ │ │ ├── example_at_tcp.o
│ │ │ ├── example_at_udp.o
│ │ │ ├── example_eint.o
│ │ │ ├── example_gpio.o
│ │ │ ├── example_i2c.o
│ │ │ ├── example_kv.o
│ │ │ ├── example_multitask.o
│ │ │ ├── example_pwm.o
│ │ │ ├── example_spi.o
│ │ │ └── example_uart.o
│ │ ├── linker.lds
│ │ └── sha256
│ │ └── application.sha256
│ ├── BAND_STR
│ ├── GIT_HASH
│ ├── HW_STR
│ ├── MODULE
│ ├── SUB_VERSION
│ └── VERSION_STRING
├── doc
│ ├── BC28
│ │ ├── Quectel_BC28_参考设计手册_Rev.B_20180511.pdf
│ │ └── Quectel_BC28_硬件设计手册_V1.0.pdf
│ ├── Quectel_BC35-G&BC28&BC95 R2.0_AT_Commands_Manual_V1.3.pdf
│ ├── Quectel_BC35-G&BC28&BC95 R2.0_Low_Power_Design_Guide_V1.1.pdf
│ ├── Quectel_BC35-G&BC28&BC95 R2.0_OpenCPU_Series_User_Guide_V1.0_Preliminary_181029.pdf
│ ├── Quectel_BC35-G&BC28&BC95 R2.0_OPENCPU_开发环境安装指导_V1.0_Preliminary_20181105.pdf
│ ├── Quectel_BC35-G&BC28&BC95 R2.0_UEMonitor_User_Guide_V1.0.pdf
│ └── Quectel_QDownload_NB_IoT_User_Guide_V1.0_Preliminary_20180929.pdf
├── fwpkg
│ ├── BC28JAR01A07.fwpkg
│ ├── messages.xml
│ └── Quectel_BC28_Firmware_Release_Notes_V0107.pdf
├── scons_new.bat
├── scons_targets
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── scons_targets.py
│ └── scons_targets.pyc
├── SConstruct
├── src
│ ├── config
│ │ ├── eflash
│ │ │ ├── application_core
│ │ │ │ └── eflash_config.h
│ │ │ └── SConscript
│ │ ├── memory
│ │ │ ├── SConscript
│ │ │ └── standard
│ │ │ └── Hi2115
│ │ │ ├── application_core
│ │ │ │ └── linker.prelds
│ │ │ └── shared
│ │ │ ├── memory_config.h
│ │ │ └── memory_config.json
│ │ ├── platform
│ │ │ ├── SConscript
│ │ │ └── sdk
│ │ │ └── Hi2115
│ │ │ ├── memory_config.json
│ │ │ └── platform_config.json
│ │ ├── SConscript
│ │ └── vectors
│ │ ├── Hi2115
│ │ │ └── application_core
│ │ │ └── vectors.c
│ │ ├── Hi21XX
│ │ │ └── shared
│ │ │ └── vectors.h
│ │ └── SConscript
│ ├── custom
│ │ ├── private
│ │ │ └── sys_config.c
│ │ ├── public
│ │ │ ├── ql_app_debug.h
│ │ │ ├── ql_common.h
│ │ │ ├── ql_system_cfg.h
│ │ │ └── ql_task_cfg.h
│ │ └── SConscript
│ ├── example
│ │ ├── private
│ │ │ ├── example_adc.c
│ │ │ ├── example_api_tcp.c
│ │ │ ├── example_api_udp.c
│ │ │ ├── example_atc_onet.c
│ │ │ ├── example_atc_pipe.c
│ │ │ ├── example_at_iot.c
│ │ │ ├── example_at_tcp.c
│ │ │ ├── example_at_udp.c
│ │ │ ├── example_eint.c
│ │ │ ├── example_gpio.c
│ │ │ ├── example_i2c.c
│ │ │ ├── example_kv.c
│ │ │ ├── example_multitask.c
│ │ │ ├── example_pwm.c
│ │ │ ├── example_spi.c
│ │ │ └── example_uart.c
│ │ ├── public
│ │ │ ├── example_adc.h
│ │ │ ├── example_api_tcp.h
│ │ │ ├── example_api_udp.h
│ │ │ ├── example_atc_onet.h
│ │ │ ├── example_atc_pipe.h
│ │ │ ├── example_at_iot.h
│ │ │ ├── example_at_tcp.h
│ │ │ ├── example_at_udp.h
│ │ │ ├── example_eint.h
│ │ │ ├── example_gpio.h
│ │ │ ├── example_i2c.h
│ │ │ ├── example_kv.h
│ │ │ ├── example_multitask.h
│ │ │ ├── example_pwm.h
│ │ │ ├── example_spi.h
│ │ │ └── example_uart.h
│ │ └── SConscript
│ ├── libs
│ │ ├── include
│ │ │ ├── config
│ │ │ │ ├── keys
│ │ │ │ │ └── application_core
│ │ │ │ │ ├── apps_at_keys.h
│ │ │ │ │ ├── apps_base_keys.h
│ │ │ │ │ ├── apps_dns_keys.h
│ │ │ │ │ ├── apps_dtls_keys.h
│ │ │ │ │ ├── apps_legacy_dtls_keys.h
│ │ │ │ │ ├── apps_legacy_tup_keys.h
│ │ │ │ │ ├── apps_log_keys.h
│ │ │ │ │ ├── apps_lwip_support_keys.h
│ │ │ │ │ ├── apps_lwm2m_keys.h
│ │ │ │ │ ├── apps_network_keys.h
│ │ │ │ │ ├── apps_ota_keys.h
│ │ │ │ │ ├── apps_qbasic_keys.h
│ │ │ │ │ ├── apps_qcustom_keys.h
│ │ │ │ │ └── apps_unused_keys.h
│ │ │ │ └── sw_modules
│ │ │ │ └── application_core
│ │ │ │ ├── apps_customer_sw_module_ids.h
│ │ │ │ ├── apps_rdk_sw_module_ids.h
│ │ │ │ └── apps_system_sw_module_ids.h
│ │ │ ├── drivers
│ │ │ │ ├── cmsis
│ │ │ │ │ ├── adc
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ └── adc.h
│ │ │ │ │ ├── aio
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ └── aio_manager.h
│ │ │ │ │ ├── aio_pin
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ └── aio_pin.h
│ │ │ │ │ ├── dac
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ └── dac.h
│ │ │ │ │ ├── eflash
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── eflash.h
│ │ │ │ │ ├── i2c
│ │ │ │ │ │ └── application_core
│ │ │ │ │ │ └── i2c.h
│ │ │ │ │ ├── spi
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── spi.h
│ │ │ │ │ ├── temp_mon
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ └── temp_mon.h
│ │ │ │ │ ├── uart
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ ├── uart.h
│ │ │ │ │ │ └── uart_panic.h
│ │ │ │ │ ├── vbat
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ └── vbat.h
│ │ │ │ │ └── vref
│ │ │ │ │ └── shared_ap
│ │ │ │ │ └── vref.h
│ │ │ │ ├── hal
│ │ │ │ │ ├── Hi2115
│ │ │ │ │ │ ├── shared
│ │ │ │ │ │ │ ├── hal_pio_ex.h
│ │ │ │ │ │ │ ├── hal_pmu_vdd_io.h
│ │ │ │ │ │ │ ├── hal_uart_specific.h
│ │ │ │ │ │ │ └── hal_watchdog.h
│ │ │ │ │ │ └── shared_ap
│ │ │ │ │ │ ├── hal_aio_manager.h
│ │ │ │ │ │ └── hal_vbat.h
│ │ │ │ │ └── Hi21XX
│ │ │ │ │ ├── application_core
│ │ │ │ │ │ ├── hal_cap_sensor.h
│ │ │ │ │ │ ├── hal_i2c.h
│ │ │ │ │ │ ├── hal_lpuart.h
│ │ │ │ │ │ ├── hal_lpuart_specific.h
│ │ │ │ │ │ ├── hal_pwm_definitions.h
│ │ │ │ │ │ ├── hal_pwm.h
│ │ │ │ │ │ └── hal_ssp.h
│ │ │ │ │ ├── shared
│ │ │ │ │ │ ├── hal_clocks.h
│ │ │ │ │ │ ├── hal_gpio.h
│ │ │ │ │ │ ├── hal.h
│ │ │ │ │ │ ├── hal_ipc.h
│ │ │ │ │ │ ├── hal_lpc.h
│ │ │ │ │ │ ├── hal_pio.h
│ │ │ │ │ │ ├── hal_reboot.h
│ │ │ │ │ │ ├── hal_rtc.h
│ │ │ │ │ │ ├── hal_sectors.h
│ │ │ │ │ │ ├── hal_timer.h
│ │ │ │ │ │ ├── hal_uart_definitions.h
│ │ │ │ │ │ └── hal_uart.h
│ │ │ │ │ └── shared_ap
│ │ │ │ │ ├── hal_adc.h
│ │ │ │ │ ├── hal_dac.h
│ │ │ │ │ ├── hal_temp_mon.h
│ │ │ │ │ └── hal_vref.h
│ │ │ │ ├── mocked
│ │ │ │ │ └── non-os
│ │ │ │ │ └── watchdog
│ │ │ │ │ └── shared
│ │ │ │ │ └── watchdog.h
│ │ │ │ ├── non-os
│ │ │ │ │ ├── clocks
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── clocks.h
│ │ │ │ │ ├── gpio
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ ├── gpio_definitions.h
│ │ │ │ │ │ └── gpio.h
│ │ │ │ │ ├── iflash
│ │ │ │ │ │ └── Hi21XX
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── iflash_sections.h
│ │ │ │ │ ├── ipc
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ ├── ipc_actions.h
│ │ │ │ │ │ └── ipc.h
│ │ │ │ │ ├── kv_storage
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── kv_storage_common.h
│ │ │ │ │ ├── log
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ ├── log_buffer_common.h
│ │ │ │ │ │ ├── log_buffer.h
│ │ │ │ │ │ ├── log_buffer_reader.h
│ │ │ │ │ │ ├── log_memory_definitions.h
│ │ │ │ │ │ └── log_memory_section.h
│ │ │ │ │ ├── lp_uart
│ │ │ │ │ │ └── application_core
│ │ │ │ │ │ └── lp_uart.h
│ │ │ │ │ ├── non_os
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── non_os.h
│ │ │ │ │ ├── pio
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── pio.h
│ │ │ │ │ ├── pmu
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── pmu_vdd_io.h
│ │ │ │ │ ├── pwm
│ │ │ │ │ │ └── application_core
│ │ │ │ │ │ └── pwm.h
│ │ │ │ │ ├── reboot
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── reboot.h
│ │ │ │ │ ├── rtc
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── rtc.h
│ │ │ │ │ ├── system_status
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ ├── system_status.h
│ │ │ │ │ │ └── system_status_types.h
│ │ │ │ │ ├── temp_mon
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── temp_mon_types.h
│ │ │ │ │ ├── timer
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── timer.h
│ │ │ │ │ └── watchdog
│ │ │ │ │ └── shared
│ │ │ │ │ └── watchdog.h
│ │ │ │ └── platform
│ │ │ │ ├── Hi2115
│ │ │ │ │ ├── application_core
│ │ │ │ │ │ └── platform_core.h
│ │ │ │ │ └── shared
│ │ │ │ │ ├── platform_definitions.h
│ │ │ │ │ ├── platform.h
│ │ │ │ │ └── platform_types.h
│ │ │ │ └── Hi21XX
│ │ │ │ └── shared
│ │ │ │ └── uart_common.h
│ │ │ ├── external
│ │ │ │ └── etypes
│ │ │ │ ├── application_core
│ │ │ │ │ ├── activity_indication_etypes.h
│ │ │ │ │ ├── app_at_uart_etypes.h
│ │ │ │ │ ├── application_config_etypes.h
│ │ │ │ │ └── manufacturer_identity_etypes.h
│ │ │ │ ├── shared
│ │ │ │ │ ├── base_etypes.h
│ │ │ │ │ ├── neul_identity_etypes.h
│ │ │ │ │ ├── neul_log_etypes.h
│ │ │ │ │ ├── neul_shared_etypes.h
│ │ │ │ │ ├── platform_etypes.h
│ │ │ │ │ ├── pmu_vdd_io_etypes.h
│ │ │ │ │ └── shared_etypes.h
│ │ │ │ ├── shared_ap
│ │ │ │ │ ├── neul_ip_addr_etypes.h
│ │ │ │ │ ├── neul_ip_addr_ip4_etypes.h
│ │ │ │ │ ├── neul_ip_addr_ip6_etypes.h
│ │ │ │ │ └── tup_id_etypes.h
│ │ │ │ └── shared_as
│ │ │ │ └── neul_update_etypes.h
│ │ │ ├── lib
│ │ │ │ ├── activity_indication
│ │ │ │ │ └── public
│ │ │ │ │ └── activity_indication.h
│ │ │ │ ├── aio_functions
│ │ │ │ │ └── public
│ │ │ │ │ └── aio_functions.h
│ │ │ │ ├── app_at
│ │ │ │ │ ├── private
│ │ │ │ │ │ ├── app_at_cmd_parse.h
│ │ │ │ │ │ ├── app_at_module_ota.h
│ │ │ │ │ │ ├── app_at_panic.h
│ │ │ │ │ │ ├── app_at_private.h
│ │ │ │ │ │ ├── app_at_response.h
│ │ │ │ │ │ ├── app_at_string_defs.h
│ │ │ │ │ │ └── app_at_ue_stats.h
│ │ │ │ │ └── public
│ │ │ │ │ ├── app_at_async_notify.h
│ │ │ │ │ ├── app_at_cmd_register.h
│ │ │ │ │ ├── app_at_filter.h
│ │ │ │ │ ├── app_at.h
│ │ │ │ │ ├── app_at_log.h
│ │ │ │ │ ├── app_at_main.h
│ │ │ │ │ ├── app_at_send_data.h
│ │ │ │ │ ├── app_at_uart_driver.h
│ │ │ │ │ └── app_at_utils.h
│ │ │ │ ├── app_at_module_production
│ │ │ │ │ └── public
│ │ │ │ │ └── app_at_module_production.h
│ │ │ │ ├── arm_core
│ │ │ │ │ ├── Hi2115
│ │ │ │ │ │ └── application_core
│ │ │ │ │ │ ├── core.h
│ │ │ │ │ │ ├── Hi21XX.h
│ │ │ │ │ │ └── reg_map.h
│ │ │ │ │ └── Hi21XX
│ │ │ │ │ └── shared
│ │ │ │ │ ├── core_cm0.h
│ │ │ │ │ ├── core_cmFunc.h
│ │ │ │ │ ├── core_cmInstr.h
│ │ │ │ │ ├── core_cmSimd.h
│ │ │ │ │ ├── Hi21XX_common_peripherals.h
│ │ │ │ │ ├── Hi21XX_cores.h
│ │ │ │ │ └── Hi21XX_definitions.h
│ │ │ │ ├── backtrace
│ │ │ │ │ └── public
│ │ │ │ │ └── backtrace.h
│ │ │ │ ├── build_version
│ │ │ │ │ └── public
│ │ │ │ │ └── build_version.h
│ │ │ │ ├── common_headers
│ │ │ │ │ ├── aka_types.h
│ │ │ │ │ ├── commonc.h
│ │ │ │ │ ├── etypes.h
│ │ │ │ │ ├── neul_error_types.h
│ │ │ │ │ ├── neulfw.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ └── unit_test.h
│ │ │ │ ├── iflog
│ │ │ │ │ └── public
│ │ │ │ │ └── iflog.h
│ │ │ │ ├── irmalloc
│ │ │ │ │ ├── bget
│ │ │ │ │ │ ├── extram_bget.h
│ │ │ │ │ │ └── irmalloc_private.h
│ │ │ │ │ └── common
│ │ │ │ │ ├── irmalloc.h
│ │ │ │ │ └── irmalloc_messages.h
│ │ │ │ ├── log
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── log_trigger.h
│ │ │ │ │ └── public
│ │ │ │ │ ├── log_common.h
│ │ │ │ │ ├── log_panic.h
│ │ │ │ │ └── log_system_messages.h
│ │ │ │ ├── logical_channel
│ │ │ │ │ └── public
│ │ │ │ │ └── logical_channel.h
│ │ │ │ ├── log_reader
│ │ │ │ │ └── public
│ │ │ │ │ ├── eflog.h
│ │ │ │ │ ├── flog.h
│ │ │ │ │ └── log_uart.h
│ │ │ │ ├── lwip_support
│ │ │ │ │ ├── private
│ │ │ │ │ │ ├── lwip_support_panic.h
│ │ │ │ │ │ └── lwip_support_pbuf.h
│ │ │ │ │ └── public
│ │ │ │ │ ├── arch
│ │ │ │ │ │ ├── cc.h
│ │ │ │ │ │ └── sys_arch.h
│ │ │ │ │ ├── lwip
│ │ │ │ │ │ ├── api.h
│ │ │ │ │ │ ├── arch.h
│ │ │ │ │ │ ├── debug.h
│ │ │ │ │ │ ├── def.h
│ │ │ │ │ │ ├── err.h
│ │ │ │ │ │ ├── icmp.h
│ │ │ │ │ │ ├── ip4_addr.h
│ │ │ │ │ │ ├── ip4.h
│ │ │ │ │ │ ├── ip6_addr.h
│ │ │ │ │ │ ├── ip6.h
│ │ │ │ │ │ ├── ip_addr.h
│ │ │ │ │ │ ├── ip.h
│ │ │ │ │ │ ├── mem.h
│ │ │ │ │ │ ├── memp.h
│ │ │ │ │ │ ├── netif.h
│ │ │ │ │ │ ├── opt.h
│ │ │ │ │ │ ├── pbuf.h
│ │ │ │ │ │ ├── priv
│ │ │ │ │ │ │ ├── tcpip_priv.h
│ │ │ │ │ │ │ └── tcp_priv.h
│ │ │ │ │ │ ├── sio.h
│ │ │ │ │ │ ├── snmp.h
│ │ │ │ │ │ ├── stats.h
│ │ │ │ │ │ ├── sys.h
│ │ │ │ │ │ ├── tcp.h
│ │ │ │ │ │ ├── tcpip.h
│ │ │ │ │ │ ├── timeouts.h
│ │ │ │ │ │ └── udp.h
│ │ │ │ │ ├── lwipopts.h
│ │ │ │ │ ├── lwip_support_log.h
│ │ │ │ │ └── lwip_support_serial.h
│ │ │ │ ├── neul
│ │ │ │ │ └── public
│ │ │ │ │ ├── neul_flash_log.h
│ │ │ │ │ ├── neul_identity.h
│ │ │ │ │ ├── neul_io_bank.h
│ │ │ │ │ ├── neul_log.h
│ │ │ │ │ ├── neul_log_types.h
│ │ │ │ │ ├── neul_nonip_messaging.h
│ │ │ │ │ ├── neul_production.h
│ │ │ │ │ ├── neul_production_types.h
│ │ │ │ │ ├── neul_radio.h
│ │ │ │ │ ├── neul_radio_types.h
│ │ │ │ │ ├── neul_sms_messaging.h
│ │ │ │ │ ├── neul_system.h
│ │ │ │ │ ├── neul_system_types.h
│ │ │ │ │ ├── neul_update.h
│ │ │ │ │ └── neul_update_types.h
│ │ │ │ ├── neul_kv_storage
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── shared
│ │ │ │ │ │ └── neul_kv_storage_private.h
│ │ │ │ │ └── public
│ │ │ │ │ ├── neul_kv_storage.h
│ │ │ │ │ ├── neul_kv_storage_types.h
│ │ │ │ │ └── neul_sec_kv_storage.h
│ │ │ │ ├── neul_network
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── application_core
│ │ │ │ │ │ └── app_ifaddrs.h
│ │ │ │ │ └── public
│ │ │ │ │ ├── neul_ip_addr.h
│ │ │ │ │ ├── neul_ip_addr_ip4.h
│ │ │ │ │ ├── neul_ip_addr_ip6.h
│ │ │ │ │ ├── neul_network_defs.h
│ │ │ │ │ ├── neul_network.h
│ │ │ │ │ ├── neul_network_management.h
│ │ │ │ │ ├── neul_socket.h
│ │ │ │ │ ├── neul_socket_types.h
│ │ │ │ │ └── neul_udp.h
│ │ │ │ ├── neul_utils
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── neul_string_private.h
│ │ │ │ │ └── public
│ │ │ │ │ └── neul_utils.h
│ │ │ │ ├── nlibc
│ │ │ │ │ ├── assert
│ │ │ │ │ │ └── assert_private.h
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── asm.h
│ │ │ │ │ │ ├── assert.h
│ │ │ │ │ │ ├── ctype.h
│ │ │ │ │ │ ├── limits.h
│ │ │ │ │ │ ├── setjmp.h
│ │ │ │ │ │ ├── signal.h
│ │ │ │ │ │ ├── srand_xor.h
│ │ │ │ │ │ ├── stdio.h
│ │ │ │ │ │ ├── stdlib.h
│ │ │ │ │ │ ├── string.h
│ │ │ │ │ │ ├── time.h
│ │ │ │ │ │ └── wchar.h
│ │ │ │ │ ├── signal
│ │ │ │ │ │ └── signal_private.h
│ │ │ │ │ ├── stdio
│ │ │ │ │ │ └── stdio_private.h
│ │ │ │ │ ├── stdlib
│ │ │ │ │ │ └── stdlib_private.h
│ │ │ │ │ └── string
│ │ │ │ │ └── string_private.h
│ │ │ │ ├── ota
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── ota_iflash.h
│ │ │ │ │ └── public
│ │ │ │ │ └── ota.h
│ │ │ │ ├── panic
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── panic_private.h
│ │ │ │ │ └── public
│ │ │ │ │ └── panic.h
│ │ │ │ ├── preserve
│ │ │ │ │ └── public
│ │ │ │ │ └── shared
│ │ │ │ │ └── preserve.h
│ │ │ │ └── rpc_interface
│ │ │ │ ├── private
│ │ │ │ │ └── rpc_private.h
│ │ │ │ └── public
│ │ │ │ ├── application
│ │ │ │ │ └── rpc_auto_generated.h
│ │ │ │ ├── cmsis_rpc.h
│ │ │ │ └── rpc_interface.h
│ │ │ ├── os
│ │ │ │ ├── cmsis
│ │ │ │ │ └── public
│ │ │ │ │ ├── cmsis_neul_extension.h
│ │ │ │ │ └── cmsis_os2.h
│ │ │ │ └── LiteOS
│ │ │ │ ├── kernel
│ │ │ │ │ └── include
│ │ │ │ │ ├── los_base.h
│ │ │ │ │ ├── los_cpup.h
│ │ │ │ │ ├── los_err.h
│ │ │ │ │ ├── los_errno.h
│ │ │ │ │ ├── los_event.h
│ │ │ │ │ ├── los_list.h
│ │ │ │ │ ├── los_membox.h
│ │ │ │ │ ├── los_memory.h
│ │ │ │ │ ├── los_mux.h
│ │ │ │ │ ├── los_printf.h
│ │ │ │ │ ├── los_queue.h
│ │ │ │ │ ├── los_sem.h
│ │ │ │ │ ├── los_swtmr.h
│ │ │ │ │ ├── los_sys.h
│ │ │ │ │ ├── los_task.h
│ │ │ │ │ ├── los_tick.h
│ │ │ │ │ └── los_typedef.h
│ │ │ │ └── platform
│ │ │ │ ├── bsp
│ │ │ │ │ ├── irmalloc_private.h
│ │ │ │ │ ├── los_builddef.h
│ │ │ │ │ └── los_config.h
│ │ │ │ └── cpu
│ │ │ │ ├── los_hw.h
│ │ │ │ ├── los_hwi.h
│ │ │ │ └── los_sleep.h
│ │ │ ├── quectel
│ │ │ │ ├── ocpu
│ │ │ │ │ └── public
│ │ │ │ │ ├── ql_gpio.h
│ │ │ │ │ ├── ql_io_bank.h
│ │ │ │ │ ├── ql_uart.h
│ │ │ │ │ ├── qmisc.h
│ │ │ │ │ ├── qocpu_error.h
│ │ │ │ │ ├── quectel_uart1.h
│ │ │ │ │ ├── quectel_uart2.h
│ │ │ │ │ ├── quectel_uart3.h
│ │ │ │ │ └── quectel_vuart.h
│ │ │ │ └── onenet
│ │ │ │ ├── ciscore
│ │ │ │ │ ├── cis_api.h
│ │ │ │ │ ├── cis_config.h
│ │ │ │ │ ├── cis_def.h
│ │ │ │ │ ├── cis_internals.h
│ │ │ │ │ ├── cis_list.h
│ │ │ │ │ ├── cis_log.h
│ │ │ │ │ ├── dm_utils
│ │ │ │ │ │ ├── dm_aes.h
│ │ │ │ │ │ ├── dm_base64.h
│ │ │ │ │ │ ├── dm_buffer.h
│ │ │ │ │ │ ├── dm_endpoint.h
│ │ │ │ │ │ └── dm_sha256.h
│ │ │ │ │ ├── er-coap-13
│ │ │ │ │ │ └── er-coap-13.h
│ │ │ │ │ └── std_object
│ │ │ │ │ └── std_object.h
│ │ │ │ └── public
│ │ │ │ ├── cis_app_defs.h
│ │ │ │ ├── cis_core.h
│ │ │ │ ├── cis_if_net.h
│ │ │ │ ├── cis_if_sys.h
│ │ │ │ ├── kal_general_types.h
│ │ │ │ ├── quectel_dmp_at_cmd.h
│ │ │ │ ├── quectel_dmp.h
│ │ │ │ ├── quectel_dmp_process.h
│ │ │ │ ├── quectel_onenet_at_cmd.h
│ │ │ │ ├── quectel_onenet.h
│ │ │ │ ├── quectel_onenet_process.h
│ │ │ │ └── string_util.h
│ │ │ └── reference
│ │ │ └── application_core
│ │ │ ├── ref_lib
│ │ │ │ ├── app_at_ref
│ │ │ │ │ └── public
│ │ │ │ │ └── app_at_cmd_parse_ref.h
│ │ │ │ ├── dns
│ │ │ │ │ └── public
│ │ │ │ │ └── dns.h
│ │ │ │ ├── libcoap
│ │ │ │ │ ├── libcoap-4.1.2
│ │ │ │ │ │ ├── coap_config.h
│ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ ├── coap_list.h
│ │ │ │ │ │ │ ├── contiki
│ │ │ │ │ │ │ │ └── coap_config.h
│ │ │ │ │ │ │ └── lwip
│ │ │ │ │ │ │ ├── coap_config.h
│ │ │ │ │ │ │ ├── lwipopts.h
│ │ │ │ │ │ │ └── server-coap.h
│ │ │ │ │ │ ├── include
│ │ │ │ │ │ │ └── coap
│ │ │ │ │ │ │ ├── address.h
│ │ │ │ │ │ │ ├── async.h
│ │ │ │ │ │ │ ├── bits.h
│ │ │ │ │ │ │ ├── block.h
│ │ │ │ │ │ │ ├── coap_config.h
│ │ │ │ │ │ │ ├── coap.h
│ │ │ │ │ │ │ ├── coap_io.h
│ │ │ │ │ │ │ ├── coap_time.h
│ │ │ │ │ │ │ ├── debug.h
│ │ │ │ │ │ │ ├── encode.h
│ │ │ │ │ │ │ ├── hashkey.h
│ │ │ │ │ │ │ ├── libcoap.h
│ │ │ │ │ │ │ ├── lwippools.h
│ │ │ │ │ │ │ ├── mem.h
│ │ │ │ │ │ │ ├── net.h
│ │ │ │ │ │ │ ├── option.h
│ │ │ │ │ │ │ ├── pdu.h
│ │ │ │ │ │ │ ├── prng.h
│ │ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ │ ├── str.h
│ │ │ │ │ │ │ ├── subscribe.h
│ │ │ │ │ │ │ ├── types.h
│ │ │ │ │ │ │ ├── uri.h
│ │ │ │ │ │ │ ├── uthash.h
│ │ │ │ │ │ │ └── utlist.h
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── test_error_response.h
│ │ │ │ │ │ ├── test_options.h
│ │ │ │ │ │ ├── test_pdu.h
│ │ │ │ │ │ ├── test_sendqueue.h
│ │ │ │ │ │ ├── test_uri.h
│ │ │ │ │ │ └── test_wellknown.h
│ │ │ │ │ └── public
│ │ │ │ │ └── neul_coap.h
│ │ │ │ ├── lwm2m
│ │ │ │ │ ├── private
│ │ │ │ │ │ └── lwm2m_message_queue.h
│ │ │ │ │ └── public
│ │ │ │ │ ├── config.h
│ │ │ │ │ ├── connection.h
│ │ │ │ │ ├── internals.h
│ │ │ │ │ ├── liblwm2m.h
│ │ │ │ │ ├── lwm2mclient.h
│ │ │ │ │ └── lwm2m_coap_io.h
│ │ │ │ └── mbedtls
│ │ │ │ ├── mbedtls-2.2.0
│ │ │ │ │ ├── configs
│ │ │ │ │ │ ├── config-ccm-psk-tls1_2.h
│ │ │ │ │ │ ├── config-mini-tls1_1.h
│ │ │ │ │ │ ├── config-picocoin.h
│ │ │ │ │ │ ├── config-suite-b.h
│ │ │ │ │ │ └── config-thread.h
│ │ │ │ │ └── include
│ │ │ │ │ └── mbedtls
│ │ │ │ │ ├── aes.h
│ │ │ │ │ ├── aesni.h
│ │ │ │ │ ├── arc4.h
│ │ │ │ │ ├── asn1.h
│ │ │ │ │ ├── asn1write.h
│ │ │ │ │ ├── base64.h
│ │ │ │ │ ├── bignum.h
│ │ │ │ │ ├── blowfish.h
│ │ │ │ │ ├── bn_mul.h
│ │ │ │ │ ├── camellia.h
│ │ │ │ │ ├── ccm.h
│ │ │ │ │ ├── certs.h
│ │ │ │ │ ├── check_config.h
│ │ │ │ │ ├── cipher.h
│ │ │ │ │ ├── cipher_internal.h
│ │ │ │ │ ├── cmac.h
│ │ │ │ │ ├── compat-1.3.h
│ │ │ │ │ ├── config.h
│ │ │ │ │ ├── ctr_drbg.h
│ │ │ │ │ ├── debug.h
│ │ │ │ │ ├── des.h
│ │ │ │ │ ├── dhm.h
│ │ │ │ │ ├── ecdh.h
│ │ │ │ │ ├── ecdsa.h
│ │ │ │ │ ├── ecjpake.h
│ │ │ │ │ ├── ecp.h
│ │ │ │ │ ├── entropy.h
│ │ │ │ │ ├── entropy_poll.h
│ │ │ │ │ ├── error.h
│ │ │ │ │ ├── gcm.h
│ │ │ │ │ ├── havege.h
│ │ │ │ │ ├── hmac_drbg.h
│ │ │ │ │ ├── md2.h
│ │ │ │ │ ├── md4.h
│ │ │ │ │ ├── md5.h
│ │ │ │ │ ├── md.h
│ │ │ │ │ ├── md_internal.h
│ │ │ │ │ ├── memory_buffer_alloc.h
│ │ │ │ │ ├── net.h
│ │ │ │ │ ├── net_nb.h
│ │ │ │ │ ├── net_sockets.h
│ │ │ │ │ ├── oid.h
│ │ │ │ │ ├── padlock.h
│ │ │ │ │ ├── pem.h
│ │ │ │ │ ├── pkcs11.h
│ │ │ │ │ ├── pkcs12.h
│ │ │ │ │ ├── pkcs5.h
│ │ │ │ │ ├── pk.h
│ │ │ │ │ ├── pk_internal.h
│ │ │ │ │ ├── platform.h
│ │ │ │ │ ├── platform_time.h
│ │ │ │ │ ├── ripemd160.h
│ │ │ │ │ ├── rsa.h
│ │ │ │ │ ├── sha1.h
│ │ │ │ │ ├── sha256.h
│ │ │ │ │ ├── sha512.h
│ │ │ │ │ ├── ssl_cache.h
│ │ │ │ │ ├── ssl_ciphersuites.h
│ │ │ │ │ ├── ssl_cookie.h
│ │ │ │ │ ├── ssl.h
│ │ │ │ │ ├── ssl_internal.h
│ │ │ │ │ ├── ssl_ticket.h
│ │ │ │ │ ├── threading.h
│ │ │ │ │ ├── timing.h
│ │ │ │ │ ├── version.h
│ │ │ │ │ ├── x509_crl.h
│ │ │ │ │ ├── x509_crt.h
│ │ │ │ │ ├── x509_csr.h
│ │ │ │ │ ├── x509.h
│ │ │ │ │ └── xtea.h
│ │ │ │ └── public
│ │ │ │ └── dtls.h
│ │ │ └── version
│ │ │ └── build_version_info.h
│ │ ├── iot_lib
│ │ │ └── libqueclib.a
│ │ └── onet_lib
│ │ └── libqueclib.a
│ └── SConscript
├── tools
│ ├── SCons
│ │ ├── arm_tools.py
│ │ ├── arm_tools.pyc
│ │ ├── common_tools.py
│ │ ├── common_tools.pyc
│ │ ├── EnvironmentUtils.py
│ │ ├── EnvironmentUtils.pyc
│ │ ├── ModuleUtils.py
│ │ ├── ModuleUtils.pyc
│ │ ├── VersionInfo.py
│ │ └── VersionInfo.pyc
│ └── scripts
│ ├── elftodu.py
│ └── mem_stats.py
├── VERSION_STRING
└── 命令提示符.lnk
250 directories, 550 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论