├── .gitattributes ├── .gitignore ├── README ├── README.md ├── bin └── xr871 │ ├── boot.bin │ ├── etf │ ├── app_etf │ ├── boot_etf │ ├── copy_etf.sh │ ├── net_etf │ ├── wlan_bl_etf │ ├── wlan_etf │ └── wlan_sdd_etf │ ├── net.bin │ ├── net_ap.bin │ ├── net_wps.bin │ ├── wlan_bl.bin │ ├── wlan_fw.bin │ └── wlan_sdd.bin ├── config.mk ├── gcc.mk ├── include ├── atcmd │ ├── at_command.h │ ├── at_config.h │ ├── at_macros.h │ ├── at_queue.h │ ├── at_status.h │ └── at_types.h ├── audio │ ├── manager │ │ └── audio_manager.h │ ├── pcm │ │ └── audio_pcm.h │ └── reverb │ │ ├── mixer.h │ │ ├── reverb.h │ │ └── reverb_pcm.h ├── cedarx │ ├── Cdx2.0Plugin │ │ └── include │ │ │ └── adecoder.h │ ├── CdxEncPlugin │ │ └── include │ │ │ └── aencoder.h │ ├── cedarx.h │ ├── libcore │ │ ├── base │ │ │ └── include │ │ │ │ ├── CdxAtomic.h │ │ │ │ ├── CdxBinary.h │ │ │ │ ├── CdxEnumCommon.h │ │ │ │ ├── CdxKeyedVector.h │ │ │ │ ├── CdxTypes.h │ │ │ │ └── cdx_log.h │ │ ├── parser │ │ │ └── include │ │ │ │ └── CdxParser.h │ │ ├── playback │ │ │ └── include │ │ │ │ ├── soundControl.h │ │ │ │ └── soundStreamControl.h │ │ ├── record │ │ │ └── include │ │ │ │ └── CaptureControl.h │ │ ├── stream │ │ │ └── include │ │ │ │ ├── CdxFifoStream.h │ │ │ │ └── CdxStream.h │ │ └── writer │ │ │ └── include │ │ │ └── CdxWriter.h │ ├── os_glue │ │ └── include │ │ │ ├── pthread.h │ │ │ └── unistd.h │ ├── xplayer │ │ └── include │ │ │ └── xplayer.h │ └── xrecoder │ │ └── include │ │ └── xrecord.h ├── cjson │ └── cJSON.h ├── compiler.h ├── console │ └── console.h ├── driver │ ├── chip │ │ ├── chip.h │ │ ├── flashchip │ │ │ └── flash_chip.h │ │ ├── hal_adc.h │ │ ├── hal_audio.h │ │ ├── hal_ccm.h │ │ ├── hal_chip.h │ │ ├── hal_clock.h │ │ ├── hal_cmsis.h │ │ ├── hal_codec.h │ │ ├── hal_crypto.h │ │ ├── hal_csi.h │ │ ├── hal_def.h │ │ ├── hal_dma.h │ │ ├── hal_dmic.h │ │ ├── hal_efuse.h │ │ ├── hal_flash.h │ │ ├── hal_flashcache.h │ │ ├── hal_flashctrl.h │ │ ├── hal_global.h │ │ ├── hal_gpio.h │ │ ├── hal_i2c.h │ │ ├── hal_i2s.h │ │ ├── hal_irrx.h │ │ ├── hal_irtx.h │ │ ├── hal_mbox.h │ │ ├── hal_nvic.h │ │ ├── hal_prcm.h │ │ ├── hal_pwm.h │ │ ├── hal_rtc.h │ │ ├── hal_spi.h │ │ ├── hal_spinlock.h │ │ ├── hal_swd.h │ │ ├── hal_timer.h │ │ ├── hal_uart.h │ │ ├── hal_util.h │ │ ├── hal_wakeup.h │ │ ├── hal_wdg.h │ │ ├── hal_xip.h │ │ ├── ir_nec.h │ │ ├── sdmmc │ │ │ ├── card.h │ │ │ ├── hal_sdhost.h │ │ │ └── sdmmc.h │ │ └── system_chip.h │ ├── cmsis │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ └── core_cmSimd.h │ ├── component │ │ ├── ad_button │ │ │ └── drv_ad_button.h │ │ ├── bme280 │ │ │ └── drv_bme280.h │ │ ├── component_def.h │ │ ├── csi_camera │ │ │ ├── camera_csi.h │ │ │ ├── gc0308 │ │ │ │ └── drv_gc0308.h │ │ │ └── ov7670 │ │ │ │ └── drv_ov7670.h │ │ ├── flash_led │ │ │ └── drv_flash_led.h │ │ ├── gpio_button │ │ │ └── drv_gpio_button.h │ │ ├── matrix_led │ │ │ └── drv_matrix_led.h │ │ ├── motor │ │ │ └── drv_motor_ctrl.h │ │ ├── oled │ │ │ └── drv_oled.h │ │ ├── rgb_led │ │ │ └── drv_rgb_led.h │ │ ├── tcs4056 │ │ │ └── drv_tcs4056.h │ │ └── volume_control_knob │ │ │ └── drv_volume_ctrl_knob.h │ ├── hal_board.h │ └── hal_dev.h ├── efpg │ └── efpg.h ├── fs │ └── fatfs │ │ ├── diskio.h │ │ ├── ff.h │ │ ├── ffconf.h │ │ └── integer.h ├── image │ ├── fdcm.h │ ├── flash.h │ └── image.h ├── kernel │ ├── FreeRTOS │ │ ├── FreeRTOS.h │ │ ├── FreeRTOSConfig.h │ │ ├── StackMacros.h │ │ ├── cpuusage.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── portable │ │ │ └── GCC │ │ │ │ ├── ARM_CM3 │ │ │ │ └── portmacro.h │ │ │ │ └── ARM_CM4F │ │ │ │ └── portmacro.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stdint.readme │ │ ├── task.h │ │ └── timers.h │ └── os │ │ ├── FreeRTOS │ │ ├── os_common.h │ │ ├── os_errno.h │ │ ├── os_mutex.h │ │ ├── os_queue.h │ │ ├── os_semaphore.h │ │ ├── os_thread.h │ │ ├── os_time.h │ │ └── os_timer.h │ │ ├── os.h │ │ ├── os_common.h │ │ ├── os_cpuusage.h │ │ ├── os_errno.h │ │ ├── os_mutex.h │ │ ├── os_queue.h │ │ ├── os_semaphore.h │ │ ├── os_thread.h │ │ ├── os_time.h │ │ └── os_timer.h ├── libc │ ├── errno.h │ ├── stdio.h │ └── sys │ │ ├── features.h │ │ └── time.h ├── net │ ├── HTTPClient │ │ ├── API │ │ │ ├── HTTPClient.h │ │ │ ├── HTTPClientAuth.h │ │ │ ├── HTTPClientCommon.h │ │ │ ├── HTTPClientString.h │ │ │ ├── HTTPClientWrapper.h │ │ │ └── debug.h │ │ ├── HTTPCUsr_api.h │ │ └── HTTPMbedTLSWrapper.h │ ├── cloud │ │ └── aliyun │ │ │ ├── ca.h │ │ │ └── mqtt_client.h │ ├── libwebsockets │ │ ├── config │ │ │ ├── lws_config.h │ │ │ ├── lws_config.h.in │ │ │ ├── lws_config_private.h │ │ │ └── lws_config_private.h.in │ │ ├── extension-permessage-deflate.h │ │ ├── getifaddrs.h │ │ ├── huftable.h │ │ ├── lextable-strings.h │ │ ├── lextable.h │ │ ├── libwebsockets.h │ │ ├── private-libwebsockets.h │ │ ├── romfs.h │ │ ├── ssl.h │ │ ├── ssl3.h │ │ ├── ssl_cert.h │ │ ├── ssl_code.h │ │ ├── ssl_dbg.h │ │ ├── ssl_lib.h │ │ ├── ssl_methods.h │ │ ├── ssl_pkey.h │ │ ├── ssl_pm.h │ │ ├── ssl_port.h │ │ ├── ssl_stack.h │ │ ├── ssl_types.h │ │ ├── ssl_x509.h │ │ ├── tls1.h │ │ └── x509_vfy.h │ ├── lwip-1.4.1 │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── ipv4 │ │ │ └── lwip │ │ │ │ ├── autoip.h │ │ │ │ ├── icmp.h │ │ │ │ ├── igmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── inet_chksum.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip_addr.h │ │ │ │ └── ip_frag.h │ │ ├── ipv6 │ │ │ └── lwip │ │ │ │ ├── icmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── ip.h │ │ │ │ └── ip_addr.h │ │ ├── lwip │ │ │ ├── api.h │ │ │ ├── api_msg.h │ │ │ ├── arch.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── dns.h │ │ │ ├── err.h │ │ │ ├── init.h │ │ │ ├── lwippools.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── memp_std.h │ │ │ ├── netbuf.h │ │ │ ├── netdb.h │ │ │ ├── netif.h │ │ │ ├── netifapi.h │ │ │ ├── opt.h │ │ │ ├── packet.h │ │ │ ├── pbuf.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── snmp_asn1.h │ │ │ ├── snmp_msg.h │ │ │ ├── snmp_structs.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcp_impl.h │ │ │ ├── tcpip.h │ │ │ ├── timers.h │ │ │ └── udp.h │ │ ├── lwipopts.h │ │ ├── netif │ │ │ ├── etharp.h │ │ │ ├── ppp_oe.h │ │ │ └── slipif.h │ │ └── posix │ │ │ ├── netdb.h │ │ │ └── sys │ │ │ └── socket.h │ ├── lwip-2.0.3 │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── lwip │ │ │ ├── api.h │ │ │ ├── apps │ │ │ │ ├── FILES │ │ │ │ ├── fs.h │ │ │ │ ├── httpd.h │ │ │ │ ├── httpd_opts.h │ │ │ │ ├── lwiperf.h │ │ │ │ ├── mdns.h │ │ │ │ ├── mdns_opts.h │ │ │ │ ├── mdns_priv.h │ │ │ │ ├── mqtt.h │ │ │ │ ├── mqtt_opts.h │ │ │ │ ├── netbiosns.h │ │ │ │ ├── netbiosns_opts.h │ │ │ │ ├── snmp.h │ │ │ │ ├── snmp_core.h │ │ │ │ ├── snmp_mib2.h │ │ │ │ ├── snmp_opts.h │ │ │ │ ├── snmp_scalar.h │ │ │ │ ├── snmp_table.h │ │ │ │ ├── snmp_threadsync.h │ │ │ │ ├── snmpv3.h │ │ │ │ ├── sntp.h │ │ │ │ ├── sntp_opts.h │ │ │ │ ├── tftp_opts.h │ │ │ │ └── tftp_server.h │ │ │ ├── arch.h │ │ │ ├── autoip.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── dhcp6.h │ │ │ ├── dns.h │ │ │ ├── err.h │ │ │ ├── errno.h │ │ │ ├── etharp.h │ │ │ ├── ethip6.h │ │ │ ├── icmp.h │ │ │ ├── icmp6.h │ │ │ ├── igmp.h │ │ │ ├── inet.h │ │ │ ├── inet_chksum.h │ │ │ ├── init.h │ │ │ ├── ip.h │ │ │ ├── ip4.h │ │ │ ├── ip4_addr.h │ │ │ ├── ip4_frag.h │ │ │ ├── ip6.h │ │ │ ├── ip6_addr.h │ │ │ ├── ip6_frag.h │ │ │ ├── ip_addr.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── mld6.h │ │ │ ├── nd6.h │ │ │ ├── netbuf.h │ │ │ ├── netdb.h │ │ │ ├── netif.h │ │ │ ├── netifapi.h │ │ │ ├── opt.h │ │ │ ├── pbuf.h │ │ │ ├── priv │ │ │ │ ├── api_msg.h │ │ │ │ ├── memp_priv.h │ │ │ │ ├── memp_std.h │ │ │ │ ├── nd6_priv.h │ │ │ │ ├── tcp_priv.h │ │ │ │ └── tcpip_priv.h │ │ │ ├── prot │ │ │ │ ├── autoip.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dns.h │ │ │ │ ├── etharp.h │ │ │ │ ├── ethernet.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── igmp.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip4.h │ │ │ │ ├── ip6.h │ │ │ │ ├── mld6.h │ │ │ │ ├── nd6.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcpip.h │ │ │ ├── timeouts.h │ │ │ └── udp.h │ │ ├── lwipopts.h │ │ ├── netif │ │ │ ├── etharp.h │ │ │ ├── ethernet.h │ │ │ ├── lowpan6.h │ │ │ ├── lowpan6_opts.h │ │ │ ├── ppp │ │ │ │ ├── ccp.h │ │ │ │ ├── chap-md5.h │ │ │ │ ├── chap-new.h │ │ │ │ ├── chap_ms.h │ │ │ │ ├── eap.h │ │ │ │ ├── ecp.h │ │ │ │ ├── eui64.h │ │ │ │ ├── fsm.h │ │ │ │ ├── ipcp.h │ │ │ │ ├── ipv6cp.h │ │ │ │ ├── lcp.h │ │ │ │ ├── magic.h │ │ │ │ ├── mppe.h │ │ │ │ ├── polarssl │ │ │ │ │ ├── arc4.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ └── sha1.h │ │ │ │ ├── ppp.h │ │ │ │ ├── ppp_impl.h │ │ │ │ ├── ppp_opts.h │ │ │ │ ├── pppapi.h │ │ │ │ ├── pppcrypt.h │ │ │ │ ├── pppdebug.h │ │ │ │ ├── pppoe.h │ │ │ │ ├── pppol2tp.h │ │ │ │ ├── pppos.h │ │ │ │ ├── upap.h │ │ │ │ └── vj.h │ │ │ └── slipif.h │ │ └── posix │ │ │ ├── errno.h │ │ │ ├── netdb.h │ │ │ └── sys │ │ │ └── socket.h │ ├── mbedtls │ │ ├── CMakeLists.txt │ │ ├── aes.h │ │ ├── aes_alt.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 │ │ ├── compat-1.3.h │ │ ├── config.h │ │ ├── configs │ │ │ ├── README.txt │ │ │ ├── config-ccm-psk-tls1_2.h │ │ │ ├── config-mini-tls1_1.h │ │ │ ├── config-picocoin.h │ │ │ ├── config-suite-b.h │ │ │ ├── config-thread.h │ │ │ ├── config-xr-mini-cli.h │ │ │ ├── config-xr-mini-cliserv.h │ │ │ ├── config-xr-mini-serv.h │ │ │ └── config-xr-mini.h │ │ ├── ctr_drbg.h │ │ ├── debug.h │ │ ├── des.h │ │ ├── des_alt.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 │ │ ├── mbedtls.h │ │ ├── md.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── md5_alt.h │ │ ├── md_internal.h │ │ ├── memory_buffer_alloc.h │ │ ├── net.h │ │ ├── oid.h │ │ ├── padlock.h │ │ ├── pem.h │ │ ├── pk.h │ │ ├── pk_internal.h │ │ ├── pkcs11.h │ │ ├── pkcs12.h │ │ ├── pkcs5.h │ │ ├── platform.h │ │ ├── ripemd160.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── sha1_alt.h │ │ ├── sha256.h │ │ ├── sha256_alt.h │ │ ├── sha512.h │ │ ├── ssl.h │ │ ├── ssl_cache.h │ │ ├── ssl_ciphersuites.h │ │ ├── ssl_cookie.h │ │ ├── ssl_internal.h │ │ ├── ssl_ticket.h │ │ ├── threading.h │ │ ├── timing.h │ │ ├── version.h │ │ ├── x509.h │ │ ├── x509_crl.h │ │ ├── x509_crt.h │ │ ├── x509_csr.h │ │ ├── xr_mem.h │ │ └── xtea.h │ ├── mqtt │ │ ├── MQTTClient-C │ │ │ ├── MQTTClient.h │ │ │ └── MQTTXrRTOS.h │ │ └── MQTTPacket │ │ │ ├── MQTTConnect.h │ │ │ ├── MQTTPacket.h │ │ │ ├── MQTTPublish.h │ │ │ ├── MQTTSubscribe.h │ │ │ └── MQTTUnsubscribe.h │ ├── nopoll │ │ ├── nopoll.h │ │ ├── nopoll_FreeRTOS.h │ │ ├── nopoll_config.h │ │ ├── nopoll_conn.h │ │ ├── nopoll_conn_opts.h │ │ ├── nopoll_ctx.h │ │ ├── nopoll_decl.h │ │ ├── nopoll_handlers.h │ │ ├── nopoll_io.h │ │ ├── nopoll_listener.h │ │ ├── nopoll_log.h │ │ ├── nopoll_loop.h │ │ └── nopoll_msg.h │ ├── ping │ │ └── ping.h │ ├── shttpd │ │ ├── compat_rtems.h │ │ ├── compat_rtos.h │ │ ├── compat_unix.h │ │ ├── config.h │ │ ├── defs.h │ │ ├── io.h │ │ ├── llist.h │ │ ├── md5.h │ │ ├── shttpd.h │ │ ├── ssl.h │ │ └── std_includes.h │ ├── sntp │ │ └── sntp.h │ ├── udhcp │ │ └── usr_dhcpd.h │ └── wlan │ │ ├── ethernetif.h │ │ ├── wlan.h │ │ ├── wlan_defs.h │ │ └── wlan_ext_req.h ├── ota │ ├── ota.h │ └── ota_opt.h ├── pm │ └── pm.h ├── smartlink │ ├── airkiss │ │ └── wlan_airkiss.h │ ├── sc_assistant.h │ ├── smart_config │ │ └── wlan_smart_config.h │ └── voice_print │ │ └── voice_print.h ├── sys │ ├── defs.h │ ├── ducc │ │ ├── ducc_addr.h │ │ ├── ducc_app.h │ │ └── ducc_net.h │ ├── endian.h │ ├── fdcm.h │ ├── image.h │ ├── interrupt.h │ ├── io.h │ ├── list.h │ ├── mbuf.h │ ├── mbuf_0.h │ ├── mbuf_1.h │ ├── ota.h │ ├── ota_opt.h │ ├── param.h │ ├── queue.h │ ├── xr_debug.h │ └── xr_util.h ├── types.h ├── util │ └── atomic.h ├── version.h └── xz │ ├── xz.h │ └── xz_opt.h ├── lib ├── libaac.a ├── libadt.a ├── libairkiss_aes.a ├── libamr.a ├── libamren.a ├── libcedarx.a ├── libmp3.a ├── libreverb.a ├── libsc_assistant.a └── libwav.a ├── project ├── bootloader │ ├── bl_debug.h │ ├── gcc │ │ ├── Makefile │ │ ├── localconfig.mk │ │ └── xr871_bootloader.ld │ ├── main.c │ └── prj_config.h ├── camera_demo │ ├── command.c │ ├── command.h │ ├── gcc │ │ ├── Makefile │ │ └── localconfig.mk │ ├── main.c │ └── prj_config.h ├── common │ ├── apps │ │ ├── buttons │ │ │ ├── buttons.c │ │ │ ├── buttons.h │ │ │ ├── buttons_low_level.c │ │ │ └── buttons_low_level.h │ │ ├── player_app.c │ │ ├── player_app.h │ │ ├── recorder_app.c │ │ └── recorder_app.h │ ├── board │ │ ├── board.c │ │ ├── board.h │ │ ├── board_common.c │ │ ├── board_common.h │ │ ├── board_debug.h │ │ ├── xr871_bl_base │ │ │ ├── board_config.c │ │ │ └── board_config.h │ │ ├── xr871_evb_audio │ │ │ ├── board_config.c │ │ │ └── board_config.h │ │ ├── xr871_evb_main │ │ │ ├── board_config.c │ │ │ └── board_config.h │ │ └── xr871_evb_sensor │ │ │ ├── board_config.c │ │ │ └── board_config.h │ ├── cmd │ │ ├── cmd.h │ │ ├── cmd_adc.c │ │ ├── cmd_adc.h │ │ ├── cmd_airkiss.c │ │ ├── cmd_airkiss.h │ │ ├── cmd_arp.c │ │ ├── cmd_arp.h │ │ ├── cmd_auddbg.c │ │ ├── cmd_auddbg.h │ │ ├── cmd_audio.c │ │ ├── cmd_audio.h │ │ ├── cmd_broadcast.c │ │ ├── cmd_broadcast.h │ │ ├── cmd_ce.c │ │ ├── cmd_ce.h │ │ ├── cmd_cedarx.c │ │ ├── cmd_cedarx.h │ │ ├── cmd_clock.c │ │ ├── cmd_clock.h │ │ ├── cmd_debug.h │ │ ├── cmd_defs.h │ │ ├── cmd_dhcpd.c │ │ ├── cmd_dhcpd.h │ │ ├── cmd_echo.c │ │ ├── cmd_echo.h │ │ ├── cmd_efpg.c │ │ ├── cmd_efpg.h │ │ ├── cmd_etf.c │ │ ├── cmd_etf.h │ │ ├── cmd_flash.c │ │ ├── cmd_flash.h │ │ ├── cmd_fs.c │ │ ├── cmd_fs.h │ │ ├── cmd_gpio.c │ │ ├── cmd_gpio.h │ │ ├── cmd_heap.c │ │ ├── cmd_heap.h │ │ ├── cmd_httpc.c │ │ ├── cmd_httpc.h │ │ ├── cmd_httpd.c │ │ ├── cmd_httpd.h │ │ ├── cmd_i2c.c │ │ ├── cmd_i2c.h │ │ ├── cmd_ifconfig.c │ │ ├── cmd_ifconfig.h │ │ ├── cmd_iperf.c │ │ ├── cmd_iperf.h │ │ ├── cmd_irrx.c │ │ ├── cmd_irrx.h │ │ ├── cmd_irtx.c │ │ ├── cmd_irtx.h │ │ ├── cmd_mem.c │ │ ├── cmd_mem.h │ │ ├── cmd_mqtt.c │ │ ├── cmd_mqtt.h │ │ ├── cmd_netcmd.c │ │ ├── cmd_netcmd.h │ │ ├── cmd_nopoll.c │ │ ├── cmd_nopoll.h │ │ ├── cmd_ota.c │ │ ├── cmd_ota.h │ │ ├── cmd_ping.c │ │ ├── cmd_ping.h │ │ ├── cmd_pm.c │ │ ├── cmd_pm.h │ │ ├── cmd_pwm.c │ │ ├── cmd_pwm.h │ │ ├── cmd_rtc.c │ │ ├── cmd_rtc.h │ │ ├── cmd_sd.c │ │ ├── cmd_sd.h │ │ ├── cmd_smart_config.c │ │ ├── cmd_smart_config.h │ │ ├── cmd_smartlink.c │ │ ├── cmd_smartlink.h │ │ ├── cmd_sntp.c │ │ ├── cmd_sntp.h │ │ ├── cmd_sysinfo.c │ │ ├── cmd_sysinfo.h │ │ ├── cmd_thread.c │ │ ├── cmd_thread.h │ │ ├── cmd_timer.c │ │ ├── cmd_timer.h │ │ ├── cmd_uart.c │ │ ├── cmd_uart.h │ │ ├── cmd_upgrade.c │ │ ├── cmd_upgrade.h │ │ ├── cmd_util.c │ │ ├── cmd_util.h │ │ ├── cmd_voice_print.c │ │ ├── cmd_voice_print.h │ │ ├── cmd_wdg.c │ │ ├── cmd_wdg.h │ │ ├── cmd_wlan.c │ │ ├── cmd_wlan.h │ │ └── tls │ │ │ ├── client.c │ │ │ ├── cmd_tls.c │ │ │ ├── cmd_tls.h │ │ │ ├── custom_certs.c │ │ │ ├── server.c │ │ │ ├── tls.c │ │ │ └── tls.h │ ├── framework │ │ ├── audio_ctrl.c │ │ ├── audio_ctrl.h │ │ ├── ctrl_msg_debug.h │ │ ├── fs_ctrl.c │ │ ├── fs_ctrl.h │ │ ├── fwk_debug.h │ │ ├── net_ctrl.c │ │ ├── net_ctrl.h │ │ ├── net_ctrl_debug.h │ │ ├── net_sys.c │ │ ├── platform_init.c │ │ ├── platform_init.h │ │ ├── sc_assistant_port.c │ │ ├── sys_ctrl │ │ │ ├── container.c │ │ │ ├── container.h │ │ │ ├── event_queue.c │ │ │ ├── event_queue.h │ │ │ ├── looper.c │ │ │ ├── looper.h │ │ │ ├── observer.c │ │ │ ├── observer.h │ │ │ ├── publisher.c │ │ │ ├── publisher.h │ │ │ ├── sys_ctrl.c │ │ │ └── sys_ctrl.h │ │ ├── sysinfo.c │ │ ├── sysinfo.h │ │ └── sysinfo_debug.h │ ├── iperf │ │ ├── iperf.c │ │ ├── iperf.h │ │ └── iperf_debug.h │ ├── prj_conf_opt.h │ └── startup │ │ └── gcc │ │ ├── exception.c │ │ ├── retarget.c │ │ ├── retarget_main.c │ │ ├── retarget_stdout.c │ │ └── startup.s ├── evb_audio │ ├── audio_buttons.c │ ├── audio_buttons.h │ ├── audio_display.c │ ├── audio_display.h │ ├── audio_player.c │ ├── audio_player.h │ ├── command.c │ ├── command.h │ ├── gcc │ │ ├── Makefile │ │ └── localconfig.mk │ ├── image │ │ └── xr871 │ │ │ └── image_xip.cfg │ ├── main.c │ ├── play_list.c │ ├── play_list.h │ └── prj_config.h ├── evb_sensor │ ├── command.c │ ├── command.h │ ├── component_manage.c │ ├── component_manage.h │ ├── gcc │ │ ├── Makefile │ │ └── localconfig.mk │ ├── main.c │ ├── oled_ui.c │ ├── oled_ui.h │ ├── prj_config.h │ ├── sensor_buttons.c │ └── sensor_buttons.h ├── example │ ├── adc │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── airkiss │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── button │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── ce │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── csi │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── dma │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── flashwriteprotect │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── gpio │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── i2c │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── ir │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── player │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── pm │ │ ├── command.c │ │ ├── command.h │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── pwm │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── record │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── reverb │ │ ├── bgm.c │ │ ├── bgm.h │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── rtc │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── sd │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── smartconfig │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── timer │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ ├── uart │ │ ├── gcc │ │ │ ├── Makefile │ │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h │ └── wlan_sta │ │ ├── gcc │ │ ├── Makefile │ │ └── localconfig.mk │ │ ├── main.c │ │ └── prj_config.h ├── image_cfg │ └── xr871 │ │ ├── image.cfg │ │ ├── image_sta_ap.cfg │ │ ├── image_sta_ap_xip.cfg │ │ ├── image_sta_ap_xip_xz.cfg │ │ ├── image_xip.cfg │ │ └── image_xip_xz.cfg ├── linker_script │ └── gcc │ │ └── xr871 │ │ ├── appos.ld │ │ ├── appos_xip.ld │ │ └── appos_xip_max.ld ├── prjconfig.mk ├── project.mk ├── wlan_demo │ ├── command.c │ ├── command.h │ ├── gcc │ │ ├── Makefile │ │ └── localconfig.mk │ ├── main.c │ └── prj_config.h └── wlan_etf │ ├── command.c │ ├── command.h │ ├── gcc │ ├── Makefile │ └── localconfig.mk │ ├── image │ └── xr871 │ │ └── image_etf.cfg │ ├── main.c │ └── prj_config.h ├── release-note.md ├── src ├── Makefile ├── atcmd │ ├── Makefile │ ├── at_command.c │ ├── at_common.c │ ├── at_config.c │ ├── at_debug.h │ ├── at_gpio.c │ ├── at_parameter.c │ ├── at_private.h │ ├── at_queue.c │ ├── at_socket.c │ ├── at_status.c │ ├── at_upgrade.c │ └── at_wlan.c ├── audio │ ├── manager │ │ ├── Makefile │ │ └── audio_manager.c │ └── pcm │ │ ├── Makefile │ │ └── audio_pcm.c ├── cjson │ ├── Makefile │ ├── cJSON.c │ └── json_test.c ├── console │ ├── Makefile │ ├── console.c │ └── console_debug.h ├── driver │ ├── chip │ │ ├── Makefile │ │ ├── codec │ │ │ ├── codec.h │ │ │ ├── hal_ac101.c │ │ │ ├── hal_ac101.h │ │ │ ├── hal_ac101s.c │ │ │ ├── hal_ac101s.h │ │ │ └── hal_codec.c │ │ ├── flashchip │ │ │ ├── flash_EN25QHXXA.c │ │ │ ├── flash_P25QXXH.c │ │ │ ├── flash_XM25QHXXA.c │ │ │ ├── flash_XT25FXXB.c │ │ │ ├── flash_chip.c │ │ │ ├── flash_default.c │ │ │ └── flash_default.h │ │ ├── hal_adc.c │ │ ├── hal_base.h │ │ ├── hal_board.c │ │ ├── hal_ccm.c │ │ ├── hal_crypto.c │ │ ├── hal_csi.c │ │ ├── hal_debug.h │ │ ├── hal_dma.c │ │ ├── hal_dmic.c │ │ ├── hal_efuse.c │ │ ├── hal_flash.c │ │ ├── hal_flash_opt.h │ │ ├── hal_flashcache.c │ │ ├── hal_flashctrl.c │ │ ├── hal_global.c │ │ ├── hal_gpio.c │ │ ├── hal_i2c.c │ │ ├── hal_i2s.c │ │ ├── hal_irrx.c │ │ ├── hal_irtx.c │ │ ├── hal_mbox.c │ │ ├── hal_nvic.c │ │ ├── hal_os.h │ │ ├── hal_prcm.c │ │ ├── hal_pwm.c │ │ ├── hal_rtc.c │ │ ├── hal_spi.c │ │ ├── hal_spinlock.c │ │ ├── hal_swd.c │ │ ├── hal_timer.c │ │ ├── hal_uart.c │ │ ├── hal_util.c │ │ ├── hal_wakeup.c │ │ ├── hal_wdg.c │ │ ├── hal_xip.c │ │ ├── ir_nec.c │ │ ├── sdmmc │ │ │ ├── _sd.h │ │ │ ├── core.c │ │ │ ├── core.h │ │ │ ├── hal_sdhost.c │ │ │ ├── sd.c │ │ │ ├── sdhost.h │ │ │ └── test.c │ │ └── system_chip.c │ └── component │ │ ├── Makefile │ │ ├── ad_button │ │ └── drv_ad_button.c │ │ ├── bme280 │ │ ├── bme280.c │ │ ├── bme280.h │ │ └── drv_bme280.c │ │ ├── csi_camera │ │ ├── gc0308 │ │ │ ├── drv_gc0308.c │ │ │ └── gc0308_cfg.h │ │ └── ov7670 │ │ │ ├── drv_ov7670.c │ │ │ └── ov7670_cfg.h │ │ ├── flash_led │ │ └── drv_flash_led.c │ │ ├── gpio_button │ │ └── drv_gpio_button.c │ │ ├── matrix_led │ │ └── drv_matrix_led.c │ │ ├── motor │ │ └── drv_motor_ctrl.c │ │ ├── oled │ │ ├── drv_oled.c │ │ ├── oled_char_lib.h │ │ ├── ssd1306.c │ │ └── ssd1306.h │ │ ├── rgb_led │ │ └── drv_rgb_led.c │ │ ├── tcs4056 │ │ └── drv_tcs4056.c │ │ └── volume_control_knob │ │ └── drv_volume_ctrl_knob.c ├── efpg │ ├── Makefile │ ├── efpg.c │ ├── efpg_debug.h │ ├── efpg_efuse.c │ ├── efpg_frame.c │ └── efpg_i.h ├── fs │ └── fatfs │ │ ├── 00history.txt │ │ ├── 00readme.txt │ │ ├── Makefile │ │ ├── diskio.c │ │ ├── driver │ │ ├── sdmmc_diskio.c │ │ └── sdmmc_diskio.h │ │ ├── ff.c │ │ ├── fferrno.c │ │ ├── fferrno.h │ │ └── option │ │ ├── cc932.c │ │ ├── cc936.c │ │ ├── cc949.c │ │ ├── cc950.c │ │ ├── ccsbcs.c │ │ ├── syscall.c │ │ └── unicode.c ├── image │ ├── Makefile │ ├── fdcm.c │ ├── flash.c │ ├── image.c │ └── image_debug.h ├── kernel │ ├── FreeRTOS │ │ ├── License │ │ │ └── license.txt │ │ ├── Makefile │ │ └── Source │ │ │ ├── cpuusage.c │ │ │ ├── croutine.c │ │ │ ├── event_groups.c │ │ │ ├── list.c │ │ │ ├── portable │ │ │ ├── GCC │ │ │ │ ├── ARM_CM3 │ │ │ │ │ └── port.c │ │ │ │ └── ARM_CM4F │ │ │ │ │ └── port.c │ │ │ ├── MemMang │ │ │ │ ├── heap_4.c │ │ │ │ └── heap_stdlib.c │ │ │ └── readme.txt │ │ │ ├── queue.c │ │ │ ├── readme.txt │ │ │ ├── tasks.c │ │ │ └── timers.c │ └── os │ │ └── FreeRTOS │ │ ├── Makefile │ │ ├── os_debug.c │ │ ├── os_debug.h │ │ ├── os_mutex.c │ │ ├── os_queue.c │ │ ├── os_semaphore.c │ │ ├── os_thread.c │ │ ├── os_timer.c │ │ └── os_util.h ├── lib.mk ├── libc │ ├── Makefile │ ├── wrap_malloc.c │ ├── wrap_memcpy-armv7m.S │ ├── wrap_memmove.c │ ├── wrap_memset.c │ ├── wrap_stdio.c │ └── wrap_time.c ├── net │ ├── HTTPClient │ │ ├── .cproject │ │ ├── .project │ │ ├── API │ │ │ ├── HTTPClient.c │ │ │ ├── HTTPClientAuth.c │ │ │ ├── HTTPClientString.c │ │ │ └── HTTPClientWrapper.c │ │ ├── Debug │ │ │ ├── API │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── HTTPCUsr_api.c │ │ ├── HTTPMbedTLSWrapper.c │ │ ├── Makefile │ │ ├── Readme.txt │ │ ├── Release │ │ │ ├── API │ │ │ │ └── subdir.mk │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── subdir.mk │ │ ├── Sample │ │ │ ├── HTTPClientSample.c │ │ │ └── HTTPClientSample.h │ │ └── Win32 │ │ │ ├── HTTPClient.sln │ │ │ ├── HTTPClient.suo │ │ │ ├── HTTPClient.vcproj │ │ │ ├── HTTPClient.vcxproj │ │ │ └── HTTPClient.vcxproj.filters │ ├── cloud │ │ └── aliyun │ │ │ ├── Makefile │ │ │ ├── alink_auth.c │ │ │ ├── alink_auth.h │ │ │ ├── alink_ca.c │ │ │ ├── alink_cjson_get.c │ │ │ ├── alink_cjson_get.h │ │ │ ├── alink_debug.h │ │ │ ├── alink_mqtt_client.c │ │ │ ├── alink_utils.c │ │ │ └── alink_utils.h │ ├── libwebsockets │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── Makefile.projbuild │ │ ├── README.md │ │ ├── READMEs │ │ │ ├── README-plugin-sshd-base.md │ │ │ ├── README.build.md │ │ │ ├── README.coding.md │ │ │ ├── README.esp32.md │ │ │ ├── README.esp8266.md │ │ │ ├── README.generic-sessions.md │ │ │ ├── README.generic-table.md │ │ │ ├── README.lws-meta.md │ │ │ ├── README.lwsws.md │ │ │ ├── README.plugin-acme.md │ │ │ ├── README.problems.md │ │ │ ├── README.test-apps.md │ │ │ ├── mainpage.md │ │ │ └── release-checklist │ │ ├── appveyor.yml │ │ ├── changelog │ │ ├── cmake │ │ │ ├── FindGit.cmake │ │ │ ├── FindLibWebSockets.cmake │ │ │ ├── FindOpenSSLbins.cmake │ │ │ ├── LibwebsocketsConfig.cmake.in │ │ │ ├── LibwebsocketsConfigVersion.cmake.in │ │ │ ├── UseRPMTools.cmake │ │ │ ├── lws_config.h.in │ │ │ └── lws_config_private.h.in │ │ ├── component.mk │ │ ├── contrib │ │ │ ├── Android.mk │ │ │ ├── abi │ │ │ │ ├── README.md │ │ │ │ ├── libwebsockets.json │ │ │ │ └── lws-abi-update.sh │ │ │ ├── android-make-script.sh │ │ │ ├── cross-aarch64.cmake │ │ │ ├── cross-arm-linux-gnueabihf.cmake │ │ │ ├── cross-esp32.cmake │ │ │ ├── cross-ming.cmake │ │ │ ├── cross-openwrt-makefile │ │ │ ├── cross-w32.cmake │ │ │ └── cross-w64.cmake │ │ ├── doc-assets │ │ │ └── lwsgt-overview.png │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── alloc.c │ │ │ ├── client │ │ │ │ ├── client-handshake.c │ │ │ │ ├── client-parser.c │ │ │ │ ├── client.c │ │ │ │ └── ssl-client.c │ │ │ ├── context.c │ │ │ ├── event-libs │ │ │ │ ├── libev.c │ │ │ │ ├── libevent.c │ │ │ │ └── libuv.c │ │ │ ├── ext │ │ │ │ ├── extension-permessage-deflate.c │ │ │ │ └── extension.c │ │ │ ├── handshake.c │ │ │ ├── header.c │ │ │ ├── http2 │ │ │ │ ├── hpack.c │ │ │ │ ├── http2.c │ │ │ │ ├── minihuf.c │ │ │ │ └── ssl-http2.c │ │ │ ├── jws │ │ │ │ ├── jwk.c │ │ │ │ └── jws.c │ │ │ ├── libwebsockets.c │ │ │ ├── minilex.c │ │ │ ├── misc │ │ │ │ ├── base64-decode.c │ │ │ │ ├── getifaddrs.c │ │ │ │ ├── lejp.c │ │ │ │ ├── lws-ring.c │ │ │ │ ├── romfs.c │ │ │ │ ├── sha-1.c │ │ │ │ └── smtp.c │ │ │ ├── output.c │ │ │ ├── plat │ │ │ │ ├── lws-plat-esp32.c │ │ │ │ ├── lws-plat-esp8266.c │ │ │ │ ├── lws-plat-optee.c │ │ │ │ ├── lws-plat-unix.c │ │ │ │ ├── lws-plat-win.c │ │ │ │ └── lws-plat-xr871.c │ │ │ ├── pollfd.c │ │ │ ├── server │ │ │ │ ├── access-log.c │ │ │ │ ├── cgi.c │ │ │ │ ├── daemonize.c │ │ │ │ ├── fops-zip.c │ │ │ │ ├── lejp-conf.c │ │ │ │ ├── lws-spa.c │ │ │ │ ├── parsers.c │ │ │ │ ├── peer-limits.c │ │ │ │ ├── ranges.c │ │ │ │ ├── rewrite.c │ │ │ │ ├── server-handshake.c │ │ │ │ ├── server.c │ │ │ │ └── ssl-server.c │ │ │ ├── service.c │ │ │ └── tls │ │ │ │ ├── mbedtls │ │ │ │ ├── lws-genhash.c │ │ │ │ ├── lws-genrsa.c │ │ │ │ ├── mbedtls-client.c │ │ │ │ ├── mbedtls-server.c │ │ │ │ ├── ssl.c │ │ │ │ └── wrapper │ │ │ │ │ ├── library │ │ │ │ │ ├── ssl_cert.c │ │ │ │ │ ├── ssl_lib.c │ │ │ │ │ ├── ssl_methods.c │ │ │ │ │ ├── ssl_pkey.c │ │ │ │ │ ├── ssl_stack.c │ │ │ │ │ └── ssl_x509.c │ │ │ │ │ └── platform │ │ │ │ │ ├── ssl_pm.c │ │ │ │ │ └── ssl_port.c │ │ │ │ ├── openssl │ │ │ │ ├── lws-genhash.c │ │ │ │ ├── lws-genrsa.c │ │ │ │ ├── openssl-client.c │ │ │ │ ├── openssl-server.c │ │ │ │ └── ssl.c │ │ │ │ └── tls.c │ │ ├── libwebsockets.dox │ │ ├── lwsws │ │ │ ├── etc-logrotate.d-lwsws │ │ │ ├── etc-lwsws-conf-EXAMPLE │ │ │ ├── etc-lwsws-conf.d-localhost-EXAMPLE │ │ │ ├── main.c │ │ │ └── usr-lib-systemd-system-lwsws.service │ │ ├── plugin-standalone │ │ │ ├── CMakeLists.txt │ │ │ └── protocol_example_standalone.c │ │ ├── plugins │ │ │ ├── acme-client │ │ │ │ └── protocol_lws_acme_client.c │ │ │ ├── generic-sessions │ │ │ │ ├── assets │ │ │ │ │ ├── admin-login.html │ │ │ │ │ ├── failed-login.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lwsgs-logo.png │ │ │ │ │ ├── lwsgs.js │ │ │ │ │ ├── md5.min.js │ │ │ │ │ ├── post-forgot-fail.html │ │ │ │ │ ├── post-forgot-ok.html │ │ │ │ │ ├── post-register-fail.html │ │ │ │ │ ├── post-register-ok.html │ │ │ │ │ ├── post-verify-fail.html │ │ │ │ │ ├── post-verify-ok.html │ │ │ │ │ ├── seats.jpg │ │ │ │ │ ├── sent-forgot-fail.html │ │ │ │ │ ├── sent-forgot-ok.html │ │ │ │ │ └── successful-login.html │ │ │ │ ├── handlers.c │ │ │ │ ├── private-lwsgs.h │ │ │ │ ├── protocol_generic_sessions.c │ │ │ │ ├── protocol_lws_messageboard.c │ │ │ │ └── utils.c │ │ │ ├── generic-table │ │ │ │ ├── assets │ │ │ │ │ ├── index.html │ │ │ │ │ └── lwsgt.js │ │ │ │ └── protocol_table_dirlisting.c │ │ │ ├── lwsws-logo.png │ │ │ ├── protocol_client_loopback_test.c │ │ │ ├── protocol_dumb_increment.c │ │ │ ├── protocol_esp32_lws_group.c │ │ │ ├── protocol_esp32_lws_ota.c │ │ │ ├── protocol_esp32_lws_reboot_to_factory.c │ │ │ ├── protocol_esp32_lws_scan.c │ │ │ ├── protocol_lws_meta.c │ │ │ ├── protocol_lws_mirror.c │ │ │ ├── protocol_lws_raw_test.c │ │ │ ├── protocol_lws_server_status.c │ │ │ ├── protocol_lws_sshd_demo.c │ │ │ ├── protocol_lws_status.c │ │ │ ├── protocol_post_demo.c │ │ │ ├── server-status.html │ │ │ └── ssh-base │ │ │ │ ├── crypto │ │ │ │ ├── chacha.c │ │ │ │ ├── ed25519.c │ │ │ │ ├── fe25519.c │ │ │ │ ├── fe25519.h │ │ │ │ ├── ge25519.c │ │ │ │ ├── ge25519.h │ │ │ │ ├── ge25519_base.data │ │ │ │ ├── poly1305.c │ │ │ │ ├── sc25519.c │ │ │ │ ├── sc25519.h │ │ │ │ └── smult_curve25519_ref.c │ │ │ │ ├── include │ │ │ │ ├── lws-plugin-ssh.h │ │ │ │ ├── lws-plugin-sshd-static-build-includes.h │ │ │ │ └── lws-ssh.h │ │ │ │ ├── kex-25519.c │ │ │ │ ├── sshd.c │ │ │ │ └── telnet.c │ │ ├── scripts │ │ │ ├── autobahn-test.sh │ │ │ ├── build-gcov.sh │ │ │ ├── client-ca │ │ │ │ ├── certindex.txt │ │ │ │ ├── create-ca.sh │ │ │ │ ├── create-client-cert.sh │ │ │ │ ├── create-server-cert.sh │ │ │ │ ├── serial │ │ │ │ └── tmp.cnf │ │ │ ├── esp32.mk │ │ │ ├── gcov.sh │ │ │ ├── libwebsockets.spec │ │ │ └── travis_install.sh │ │ ├── test-apps │ │ │ ├── .gitignore │ │ │ ├── android │ │ │ │ ├── README │ │ │ │ ├── app │ │ │ │ │ ├── app.iml │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── libwebsockets │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── LwsService.java │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ └── ThreadService.java │ │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ ├── Application.mk │ │ │ │ │ │ ├── LwsService.cpp │ │ │ │ │ │ └── NativeLibs.mk │ │ │ │ │ │ ├── libs │ │ │ │ │ │ └── placeholder │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── warmcat.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ └── settings.gradle │ │ │ ├── attack.sh │ │ │ ├── candide.zip │ │ │ ├── favicon.ico │ │ │ ├── fuzxy.c │ │ │ ├── http2.png │ │ │ ├── leaf.jpg │ │ │ ├── libwebsockets.org-logo.png │ │ │ ├── lws-cgi-test.sh │ │ │ ├── lws-common.js │ │ │ ├── lws-ssh-test-keys │ │ │ ├── lws-ssh-test-keys.pub │ │ │ ├── private │ │ │ │ └── index.html │ │ │ ├── test-client.c │ │ │ ├── test-echo.c │ │ │ ├── test-fraggle.c │ │ │ ├── test-lejp.c │ │ │ ├── test-ping.c │ │ │ ├── test-server-dumb-increment.c │ │ │ ├── test-server-http.c │ │ │ ├── test-server-libev.c │ │ │ ├── test-server-libevent.c │ │ │ ├── test-server-libuv.c │ │ │ ├── test-server-pthreads.c │ │ │ ├── test-server-v2.0.c │ │ │ ├── test-server.c │ │ │ ├── test-server.h │ │ │ ├── test-sshd.c │ │ │ └── test.html │ │ └── win32port │ │ │ ├── libwebsockets.nsi │ │ │ └── win32helpers │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── getopt_long.c │ │ │ ├── gettimeofday.c │ │ │ └── gettimeofday.h │ ├── lwip-1.4.1 │ │ ├── CHANGELOG │ │ ├── COPYING │ │ ├── FILES │ │ ├── Makefile │ │ ├── README │ │ ├── UPGRADING │ │ ├── doc │ │ │ ├── FILES │ │ │ ├── contrib.txt │ │ │ ├── rawapi.txt │ │ │ ├── savannah.txt │ │ │ ├── snmp_agent.txt │ │ │ └── sys_arch.txt │ │ ├── src │ │ │ ├── FILES │ │ │ ├── api │ │ │ │ ├── api_lib.c │ │ │ │ ├── api_msg.c │ │ │ │ ├── err.c │ │ │ │ ├── netbuf.c │ │ │ │ ├── netdb.c │ │ │ │ ├── netifapi.c │ │ │ │ ├── sockets.c │ │ │ │ └── tcpip.c │ │ │ ├── arch │ │ │ │ ├── checksum.c │ │ │ │ ├── memcpy.c │ │ │ │ └── sys_arch.c │ │ │ ├── core │ │ │ │ ├── def.c │ │ │ │ ├── dhcp.c │ │ │ │ ├── dns.c │ │ │ │ ├── init.c │ │ │ │ ├── ipv4 │ │ │ │ │ ├── autoip.c │ │ │ │ │ ├── icmp.c │ │ │ │ │ ├── igmp.c │ │ │ │ │ ├── inet.c │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ ├── ip.c │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ └── ip_frag.c │ │ │ │ ├── ipv6 │ │ │ │ │ ├── README │ │ │ │ │ ├── icmp6.c │ │ │ │ │ ├── inet6.c │ │ │ │ │ ├── ip6.c │ │ │ │ │ └── ip6_addr.c │ │ │ │ ├── mem.c │ │ │ │ ├── memp.c │ │ │ │ ├── netif.c │ │ │ │ ├── packet.c │ │ │ │ ├── pbuf.c │ │ │ │ ├── raw.c │ │ │ │ ├── snmp │ │ │ │ │ ├── asn1_dec.c │ │ │ │ │ ├── asn1_enc.c │ │ │ │ │ ├── mib2.c │ │ │ │ │ ├── mib_structs.c │ │ │ │ │ ├── msg_in.c │ │ │ │ │ └── msg_out.c │ │ │ │ ├── stats.c │ │ │ │ ├── sys.c │ │ │ │ ├── tcp.c │ │ │ │ ├── tcp_in.c │ │ │ │ ├── tcp_out.c │ │ │ │ ├── timers.c │ │ │ │ └── udp.c │ │ │ └── netif │ │ │ │ ├── FILES │ │ │ │ ├── etharp.c │ │ │ │ ├── ppp │ │ │ │ ├── auth.c │ │ │ │ ├── auth.h │ │ │ │ ├── chap.c │ │ │ │ ├── chap.h │ │ │ │ ├── chpms.c │ │ │ │ ├── chpms.h │ │ │ │ ├── fsm.c │ │ │ │ ├── fsm.h │ │ │ │ ├── ipcp.c │ │ │ │ ├── ipcp.h │ │ │ │ ├── lcp.c │ │ │ │ ├── lcp.h │ │ │ │ ├── magic.c │ │ │ │ ├── magic.h │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ ├── pap.c │ │ │ │ ├── pap.h │ │ │ │ ├── ppp.c │ │ │ │ ├── ppp.h │ │ │ │ ├── ppp_impl.h │ │ │ │ ├── ppp_oe.c │ │ │ │ ├── pppdebug.h │ │ │ │ ├── randm.c │ │ │ │ ├── randm.h │ │ │ │ ├── vj.c │ │ │ │ └── vj.h │ │ │ │ └── slipif.c │ │ └── test │ │ │ └── unit │ │ │ ├── core │ │ │ ├── test_mem.c │ │ │ └── test_mem.h │ │ │ ├── etharp │ │ │ ├── test_etharp.c │ │ │ └── test_etharp.h │ │ │ ├── lwip_check.h │ │ │ ├── lwip_unittests.c │ │ │ ├── lwipopts.h │ │ │ ├── tcp │ │ │ ├── tcp_helper.c │ │ │ ├── tcp_helper.h │ │ │ ├── test_tcp.c │ │ │ ├── test_tcp.h │ │ │ ├── test_tcp_oos.c │ │ │ └── test_tcp_oos.h │ │ │ └── udp │ │ │ ├── test_udp.c │ │ │ └── test_udp.h │ ├── lwip-2.0.3 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── COPYING │ │ ├── FILES │ │ ├── Makefile │ │ ├── README │ │ ├── UPGRADING │ │ ├── doc │ │ │ ├── FILES │ │ │ ├── NO_SYS_SampleCode.c │ │ │ ├── contrib.txt │ │ │ ├── doxygen │ │ │ │ ├── generate.bat │ │ │ │ ├── generate.sh │ │ │ │ ├── lwip.Doxyfile │ │ │ │ ├── main_page.h │ │ │ │ └── output │ │ │ │ │ └── index.html │ │ │ ├── mdns.txt │ │ │ ├── mqtt_client.txt │ │ │ ├── ppp.txt │ │ │ ├── rawapi.txt │ │ │ ├── savannah.txt │ │ │ └── sys_arch.txt │ │ ├── src │ │ │ ├── FILES │ │ │ ├── Filelists.mk │ │ │ ├── api │ │ │ │ ├── api_lib.c │ │ │ │ ├── api_msg.c │ │ │ │ ├── err.c │ │ │ │ ├── netbuf.c │ │ │ │ ├── netdb.c │ │ │ │ ├── netifapi.c │ │ │ │ ├── sockets.c │ │ │ │ └── tcpip.c │ │ │ ├── apps │ │ │ │ ├── httpd │ │ │ │ │ ├── fs.c │ │ │ │ │ ├── fs │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── sics.gif │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fsdata.c │ │ │ │ │ ├── fsdata.h │ │ │ │ │ ├── httpd.c │ │ │ │ │ ├── httpd_structs.h │ │ │ │ │ └── makefsdata │ │ │ │ │ │ ├── makefsdata │ │ │ │ │ │ ├── makefsdata.c │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── lwiperf │ │ │ │ │ └── lwiperf.c │ │ │ │ ├── mdns │ │ │ │ │ └── mdns.c │ │ │ │ ├── mqtt │ │ │ │ │ └── mqtt.c │ │ │ │ ├── netbiosns │ │ │ │ │ └── netbiosns.c │ │ │ │ ├── snmp │ │ │ │ │ ├── snmp_asn1.c │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ ├── snmp_core.c │ │ │ │ │ ├── snmp_core_priv.h │ │ │ │ │ ├── snmp_mib2.c │ │ │ │ │ ├── snmp_mib2_icmp.c │ │ │ │ │ ├── snmp_mib2_interfaces.c │ │ │ │ │ ├── snmp_mib2_ip.c │ │ │ │ │ ├── snmp_mib2_snmp.c │ │ │ │ │ ├── snmp_mib2_system.c │ │ │ │ │ ├── snmp_mib2_tcp.c │ │ │ │ │ ├── snmp_mib2_udp.c │ │ │ │ │ ├── snmp_msg.c │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ ├── snmp_netconn.c │ │ │ │ │ ├── snmp_pbuf_stream.c │ │ │ │ │ ├── snmp_pbuf_stream.h │ │ │ │ │ ├── snmp_raw.c │ │ │ │ │ ├── snmp_scalar.c │ │ │ │ │ ├── snmp_table.c │ │ │ │ │ ├── snmp_threadsync.c │ │ │ │ │ ├── snmp_traps.c │ │ │ │ │ ├── snmpv3.c │ │ │ │ │ ├── snmpv3_dummy.c │ │ │ │ │ ├── snmpv3_mbedtls.c │ │ │ │ │ └── snmpv3_priv.h │ │ │ │ ├── sntp │ │ │ │ │ └── sntp.c │ │ │ │ └── tftp │ │ │ │ │ └── tftp_server.c │ │ │ ├── arch │ │ │ │ ├── checksum.c │ │ │ │ ├── memcpy.c │ │ │ │ └── sys_arch.c │ │ │ ├── core │ │ │ │ ├── def.c │ │ │ │ ├── dns.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── init.c │ │ │ │ ├── ip.c │ │ │ │ ├── ipv4 │ │ │ │ │ ├── autoip.c │ │ │ │ │ ├── dhcp.c │ │ │ │ │ ├── etharp.c │ │ │ │ │ ├── icmp.c │ │ │ │ │ ├── igmp.c │ │ │ │ │ ├── ip4.c │ │ │ │ │ ├── ip4_addr.c │ │ │ │ │ └── ip4_frag.c │ │ │ │ ├── ipv6 │ │ │ │ │ ├── dhcp6.c │ │ │ │ │ ├── ethip6.c │ │ │ │ │ ├── icmp6.c │ │ │ │ │ ├── inet6.c │ │ │ │ │ ├── ip6.c │ │ │ │ │ ├── ip6_addr.c │ │ │ │ │ ├── ip6_frag.c │ │ │ │ │ ├── mld6.c │ │ │ │ │ └── nd6.c │ │ │ │ ├── mem.c │ │ │ │ ├── memp.c │ │ │ │ ├── netif.c │ │ │ │ ├── pbuf.c │ │ │ │ ├── raw.c │ │ │ │ ├── stats.c │ │ │ │ ├── sys.c │ │ │ │ ├── tcp.c │ │ │ │ ├── tcp_in.c │ │ │ │ ├── tcp_out.c │ │ │ │ ├── timeouts.c │ │ │ │ └── udp.c │ │ │ └── netif │ │ │ │ ├── FILES │ │ │ │ ├── ethernet.c │ │ │ │ ├── ethernetif.c.bak │ │ │ │ ├── lowpan6.c │ │ │ │ ├── ppp │ │ │ │ ├── PPPD_FOLLOWUP │ │ │ │ ├── auth.c │ │ │ │ ├── ccp.c │ │ │ │ ├── chap-md5.c │ │ │ │ ├── chap-new.c │ │ │ │ ├── chap_ms.c │ │ │ │ ├── demand.c │ │ │ │ ├── eap.c │ │ │ │ ├── ecp.c │ │ │ │ ├── eui64.c │ │ │ │ ├── fsm.c │ │ │ │ ├── ipcp.c │ │ │ │ ├── ipv6cp.c │ │ │ │ ├── lcp.c │ │ │ │ ├── magic.c │ │ │ │ ├── mppe.c │ │ │ │ ├── multilink.c │ │ │ │ ├── polarssl │ │ │ │ │ ├── README │ │ │ │ │ ├── arc4.c │ │ │ │ │ ├── des.c │ │ │ │ │ ├── md4.c │ │ │ │ │ ├── md5.c │ │ │ │ │ └── sha1.c │ │ │ │ ├── ppp.c │ │ │ │ ├── pppapi.c │ │ │ │ ├── pppcrypt.c │ │ │ │ ├── pppoe.c │ │ │ │ ├── pppol2tp.c │ │ │ │ ├── pppos.c │ │ │ │ ├── upap.c │ │ │ │ ├── utils.c │ │ │ │ └── vj.c │ │ │ │ └── slipif.c │ │ └── test │ │ │ ├── fuzz │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── config.h │ │ │ ├── fuzz.c │ │ │ ├── lwipopts.h │ │ │ └── output_to_pcap.sh │ │ │ └── unit │ │ │ ├── core │ │ │ ├── test_mem.c │ │ │ ├── test_mem.h │ │ │ ├── test_pbuf.c │ │ │ └── test_pbuf.h │ │ │ ├── dhcp │ │ │ ├── test_dhcp.c │ │ │ └── test_dhcp.h │ │ │ ├── etharp │ │ │ ├── test_etharp.c │ │ │ └── test_etharp.h │ │ │ ├── ip4 │ │ │ ├── test_ip4.c │ │ │ └── test_ip4.h │ │ │ ├── lwip_check.h │ │ │ ├── lwip_unittests.c │ │ │ ├── lwipopts.h │ │ │ ├── mdns │ │ │ ├── test_mdns.c │ │ │ └── test_mdns.h │ │ │ ├── tcp │ │ │ ├── tcp_helper.c │ │ │ ├── tcp_helper.h │ │ │ ├── test_tcp.c │ │ │ ├── test_tcp.h │ │ │ ├── test_tcp_oos.c │ │ │ └── test_tcp_oos.h │ │ │ └── udp │ │ │ ├── test_udp.c │ │ │ └── test_udp.h │ ├── mbedtls-2.2.0 │ │ ├── .ignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── DartConfiguration.tcl │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile_ORI │ │ ├── README.md │ │ ├── apache-2.0.txt │ │ ├── doxygen │ │ │ ├── input │ │ │ │ ├── doc_encdec.h │ │ │ │ ├── doc_hashing.h │ │ │ │ ├── doc_mainpage.h │ │ │ │ ├── doc_rng.h │ │ │ │ ├── doc_ssltls.h │ │ │ │ ├── doc_tcpip.h │ │ │ │ └── doc_x509.h │ │ │ └── mbedtls.doxyfile │ │ ├── library │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile_ORJ │ │ │ ├── aes.c │ │ │ ├── aes_alt.c │ │ │ ├── aesni.c │ │ │ ├── arc4.c │ │ │ ├── asn1parse.c │ │ │ ├── asn1write.c │ │ │ ├── base64.c │ │ │ ├── bignum.c │ │ │ ├── blowfish.c │ │ │ ├── camellia.c │ │ │ ├── ccm.c │ │ │ ├── certs.c │ │ │ ├── cipher.c │ │ │ ├── cipher_wrap.c │ │ │ ├── ctr_drbg.c │ │ │ ├── debug.c │ │ │ ├── des.c │ │ │ ├── des_alt.c │ │ │ ├── dhm.c │ │ │ ├── ecdh.c │ │ │ ├── ecdsa.c │ │ │ ├── ecjpake.c │ │ │ ├── ecp.c │ │ │ ├── ecp_curves.c │ │ │ ├── entropy.c │ │ │ ├── entropy_poll.c │ │ │ ├── error.c │ │ │ ├── gcm.c │ │ │ ├── havege.c │ │ │ ├── hmac_drbg.c │ │ │ ├── md.c │ │ │ ├── md2.c │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ ├── md5_alt.c │ │ │ ├── md_wrap.c │ │ │ ├── memory_buffer_alloc.c │ │ │ ├── net.c │ │ │ ├── oid.c │ │ │ ├── padlock.c │ │ │ ├── pem.c │ │ │ ├── pk.c │ │ │ ├── pk_wrap.c │ │ │ ├── pkcs11.c │ │ │ ├── pkcs12.c │ │ │ ├── pkcs5.c │ │ │ ├── pkparse.c │ │ │ ├── pkwrite.c │ │ │ ├── platform.c │ │ │ ├── ripemd160.c │ │ │ ├── rsa.c │ │ │ ├── sha1.c │ │ │ ├── sha1_alt.c │ │ │ ├── sha256.c │ │ │ ├── sha256_alt.c │ │ │ ├── sha512.c │ │ │ ├── ssl_cache.c │ │ │ ├── ssl_ciphersuites.c │ │ │ ├── ssl_cli.c │ │ │ ├── ssl_cookie.c │ │ │ ├── ssl_srv.c │ │ │ ├── ssl_ticket.c │ │ │ ├── ssl_tls.c │ │ │ ├── threading.c │ │ │ ├── timing.c │ │ │ ├── version.c │ │ │ ├── version_features.c │ │ │ ├── x509.c │ │ │ ├── x509_create.c │ │ │ ├── x509_crl.c │ │ │ ├── x509_crt.c │ │ │ ├── x509_csr.c │ │ │ ├── x509write_crt.c │ │ │ ├── x509write_csr.c │ │ │ ├── xr_mem.c │ │ │ └── xtea.c │ │ ├── mbedtls.c │ │ ├── programs │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile_ORJ │ │ │ ├── aes │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aescrypt2.c │ │ │ │ └── crypt_and_hash.c │ │ │ ├── hash │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generic_sum.c │ │ │ │ └── hello.c │ │ │ ├── pkey │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dh_client.c │ │ │ │ ├── dh_genprime.c │ │ │ │ ├── dh_prime.txt │ │ │ │ ├── dh_server.c │ │ │ │ ├── ecdh_curve25519.c │ │ │ │ ├── ecdsa.c │ │ │ │ ├── gen_key.c │ │ │ │ ├── key_app.c │ │ │ │ ├── key_app_writer.c │ │ │ │ ├── mpi_demo.c │ │ │ │ ├── pk_decrypt.c │ │ │ │ ├── pk_encrypt.c │ │ │ │ ├── pk_sign.c │ │ │ │ ├── pk_verify.c │ │ │ │ ├── rsa_decrypt.c │ │ │ │ ├── rsa_encrypt.c │ │ │ │ ├── rsa_genkey.c │ │ │ │ ├── rsa_priv.txt │ │ │ │ ├── rsa_pub.txt │ │ │ │ ├── rsa_sign.c │ │ │ │ ├── rsa_sign_pss.c │ │ │ │ ├── rsa_verify.c │ │ │ │ └── rsa_verify_pss.c │ │ │ ├── random │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gen_entropy.c │ │ │ │ ├── gen_random_ctr_drbg.c │ │ │ │ └── gen_random_havege.c │ │ │ ├── ssl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dtls_client.c │ │ │ │ ├── dtls_server.c │ │ │ │ ├── mini_client.c │ │ │ │ ├── ssl_client1.c │ │ │ │ ├── ssl_client2.c │ │ │ │ ├── ssl_fork_server.c │ │ │ │ ├── ssl_mail_client.c │ │ │ │ ├── ssl_pthread_server.c │ │ │ │ ├── ssl_server.c │ │ │ │ └── ssl_server2.c │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── benchmark.c │ │ │ │ ├── selftest.c │ │ │ │ ├── ssl_cert_test.c │ │ │ │ └── udp_proxy.c │ │ │ ├── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pem2der.c │ │ │ │ └── strerror.c │ │ │ ├── wince_main.c │ │ │ └── x509 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cert_app.c │ │ │ │ ├── cert_req.c │ │ │ │ ├── cert_write.c │ │ │ │ ├── crl_app.c │ │ │ │ └── req_app.c │ │ ├── scripts │ │ │ ├── bump_version.sh │ │ │ ├── config.pl │ │ │ ├── data_files │ │ │ │ ├── error.fmt │ │ │ │ ├── rename-1.3-2.0.txt │ │ │ │ ├── version_features.fmt │ │ │ │ ├── vs2010-app-template.vcxproj │ │ │ │ ├── vs2010-main-template.vcxproj │ │ │ │ ├── vs2010-sln-template.sln │ │ │ │ ├── vs6-app-template.dsp │ │ │ │ ├── vs6-main-template.dsp │ │ │ │ └── vs6-workspace-template.dsw │ │ │ ├── ecc-heap.sh │ │ │ ├── find-mem-leak.cocci │ │ │ ├── footprint.sh │ │ │ ├── generate_errors.pl │ │ │ ├── generate_features.pl │ │ │ ├── generate_visualc_files.pl │ │ │ ├── malloc-init.pl │ │ │ ├── massif_max.pl │ │ │ ├── memory.sh │ │ │ ├── rename.pl │ │ │ ├── rm-malloc-cast.cocci │ │ │ └── tmp_ignore_makefiles.sh │ │ ├── tempfile │ │ │ └── client.txt │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Descriptions.txt │ │ │ ├── Makefile_ORJ │ │ │ ├── compat.sh │ │ │ ├── data_files │ │ │ │ ├── Readme-x509.txt │ │ │ │ ├── bitstring-in-dn.pem │ │ │ │ ├── cert_example_multi.crt │ │ │ │ ├── cert_example_multi_nocn.crt │ │ │ │ ├── cert_example_wildcard.crt │ │ │ │ ├── cert_md2.crt │ │ │ │ ├── cert_md4.crt │ │ │ │ ├── cert_md5.crt │ │ │ │ ├── cert_sha1.crt │ │ │ │ ├── cert_sha224.crt │ │ │ │ ├── cert_sha256.crt │ │ │ │ ├── cert_sha384.crt │ │ │ │ ├── cert_sha512.crt │ │ │ │ ├── cert_v1_with_ext.crt │ │ │ │ ├── cli2.crt │ │ │ │ ├── cli2.key │ │ │ │ ├── crl-ec-sha1.pem │ │ │ │ ├── crl-ec-sha224.pem │ │ │ │ ├── crl-ec-sha256.pem │ │ │ │ ├── crl-ec-sha384.pem │ │ │ │ ├── crl-ec-sha512.pem │ │ │ │ ├── crl-future.pem │ │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ │ ├── crl.pem │ │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ │ ├── crl_expired.pem │ │ │ │ ├── crl_md2.pem │ │ │ │ ├── crl_md4.pem │ │ │ │ ├── crl_md5.pem │ │ │ │ ├── crl_sha1.pem │ │ │ │ ├── crl_sha224.pem │ │ │ │ ├── crl_sha256.pem │ │ │ │ ├── crl_sha384.pem │ │ │ │ ├── crl_sha512.pem │ │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ │ ├── dh.1000.pem │ │ │ │ ├── dh.optlen.pem │ │ │ │ ├── dhparams.pem │ │ │ │ ├── dir1 │ │ │ │ │ └── test-ca.crt │ │ │ │ ├── dir2 │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ └── test-ca2.crt │ │ │ │ ├── dir3 │ │ │ │ │ ├── Readme │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ └── test-ca2.crt │ │ │ │ ├── dir4 │ │ │ │ │ ├── Readme │ │ │ │ │ ├── cert11.crt │ │ │ │ │ ├── cert12.crt │ │ │ │ │ ├── cert13.crt │ │ │ │ │ ├── cert14.crt │ │ │ │ │ ├── cert21.crt │ │ │ │ │ ├── cert22.crt │ │ │ │ │ ├── cert23.crt │ │ │ │ │ ├── cert31.crt │ │ │ │ │ ├── cert32.crt │ │ │ │ │ ├── cert33.crt │ │ │ │ │ ├── cert34.crt │ │ │ │ │ ├── cert41.crt │ │ │ │ │ ├── cert42.crt │ │ │ │ │ ├── cert43.crt │ │ │ │ │ ├── cert44.crt │ │ │ │ │ ├── cert45.crt │ │ │ │ │ ├── cert51.crt │ │ │ │ │ ├── cert52.crt │ │ │ │ │ ├── cert53.crt │ │ │ │ │ ├── cert54.crt │ │ │ │ │ ├── cert61.crt │ │ │ │ │ ├── cert62.crt │ │ │ │ │ ├── cert63.crt │ │ │ │ │ ├── cert71.crt │ │ │ │ │ ├── cert72.crt │ │ │ │ │ ├── cert73.crt │ │ │ │ │ └── cert74.crt │ │ │ │ ├── ec_224_prv.pem │ │ │ │ ├── ec_224_pub.pem │ │ │ │ ├── ec_256_prv.pem │ │ │ │ ├── ec_256_pub.pem │ │ │ │ ├── ec_384_prv.pem │ │ │ │ ├── ec_384_pub.pem │ │ │ │ ├── ec_521_prv.pem │ │ │ │ ├── ec_521_pub.pem │ │ │ │ ├── ec_bp256_prv.pem │ │ │ │ ├── ec_bp256_pub.pem │ │ │ │ ├── ec_bp384_prv.pem │ │ │ │ ├── ec_bp384_pub.pem │ │ │ │ ├── ec_bp512_prv.pem │ │ │ │ ├── ec_bp512_pub.pem │ │ │ │ ├── ec_prv.noopt.der │ │ │ │ ├── ec_prv.pk8.der │ │ │ │ ├── ec_prv.pk8.pem │ │ │ │ ├── ec_prv.pk8.pw.der │ │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ │ ├── ec_prv.sec1.der │ │ │ │ ├── ec_prv.sec1.pem │ │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ │ ├── ec_prv.specdom.der │ │ │ │ ├── ec_pub.der │ │ │ │ ├── ec_pub.pem │ │ │ │ ├── enco-ca-prstr.pem │ │ │ │ ├── enco-cert-utf8str.pem │ │ │ │ ├── format_gen.key │ │ │ │ ├── format_gen.pub │ │ │ │ ├── format_pkcs12.fmt │ │ │ │ ├── format_rsa.key │ │ │ │ ├── hash_file_1 │ │ │ │ ├── hash_file_2 │ │ │ │ ├── hash_file_3 │ │ │ │ ├── hash_file_4 │ │ │ │ ├── hash_file_5 │ │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ │ ├── keyfile │ │ │ │ ├── keyfile.3des │ │ │ │ ├── keyfile.aes128 │ │ │ │ ├── keyfile.aes192 │ │ │ │ ├── keyfile.aes256 │ │ │ │ ├── keyfile.des │ │ │ │ ├── mpi_10 │ │ │ │ ├── mpi_too_big │ │ │ │ ├── passwd.psk │ │ │ │ ├── pkcs8_pbe_sha1_2des.key │ │ │ │ ├── pkcs8_pbe_sha1_3des.der │ │ │ │ ├── pkcs8_pbe_sha1_3des.key │ │ │ │ ├── pkcs8_pbe_sha1_rc4_128.key │ │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.der │ │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.key │ │ │ │ ├── pkcs8_pbes2_pbkdf2_des.key │ │ │ │ ├── rsa4096_prv.pem │ │ │ │ ├── rsa4096_pub.pem │ │ │ │ ├── server1-nospace.crt │ │ │ │ ├── server1-v1.crt │ │ │ │ ├── server1.cert_type.crt │ │ │ │ ├── server1.crt │ │ │ │ ├── server1.ext_ku.crt │ │ │ │ ├── server1.key │ │ │ │ ├── server1.key_usage.crt │ │ │ │ ├── server1.pubkey │ │ │ │ ├── server1.req.cert_type │ │ │ │ ├── server1.req.key_usage │ │ │ │ ├── server1.req.ku-ct │ │ │ │ ├── server1.req.md4 │ │ │ │ ├── server1.req.md5 │ │ │ │ ├── server1.req.sha1 │ │ │ │ ├── server1.req.sha224 │ │ │ │ ├── server1.req.sha256 │ │ │ │ ├── server1.req.sha384 │ │ │ │ ├── server1.req.sha512 │ │ │ │ ├── server1.v1.crt │ │ │ │ ├── server10.key │ │ │ │ ├── server10_int3_int-ca2.crt │ │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ │ ├── server1_ca.crt │ │ │ │ ├── server2-badsign.crt │ │ │ │ ├── server2-v1-chain.crt │ │ │ │ ├── server2-v1.crt │ │ │ │ ├── server2.crt │ │ │ │ ├── server2.key │ │ │ │ ├── server2.ku-ds.crt │ │ │ │ ├── server2.ku-ds_ke.crt │ │ │ │ ├── server2.ku-ka.crt │ │ │ │ ├── server2.ku-ke.crt │ │ │ │ ├── server3.crt │ │ │ │ ├── server3.key │ │ │ │ ├── server4.crt │ │ │ │ ├── server4.key │ │ │ │ ├── server5-badsign.crt │ │ │ │ ├── server5-expired.crt │ │ │ │ ├── server5-future.crt │ │ │ │ ├── server5-selfsigned.crt │ │ │ │ ├── server5-sha1.crt │ │ │ │ ├── server5-sha224.crt │ │ │ │ ├── server5-sha384.crt │ │ │ │ ├── server5-sha512.crt │ │ │ │ ├── server5.crt │ │ │ │ ├── server5.eku-cli.crt │ │ │ │ ├── server5.eku-cs.crt │ │ │ │ ├── server5.eku-cs_any.crt │ │ │ │ ├── server5.eku-srv.crt │ │ │ │ ├── server5.eku-srv_cli.crt │ │ │ │ ├── server5.key │ │ │ │ ├── server5.ku-ds.crt │ │ │ │ ├── server5.ku-ka.crt │ │ │ │ ├── server5.ku-ke.crt │ │ │ │ ├── server5.req.ku.sha1 │ │ │ │ ├── server5.req.sha1 │ │ │ │ ├── server5.req.sha224 │ │ │ │ ├── server5.req.sha256 │ │ │ │ ├── server5.req.sha384 │ │ │ │ ├── server5.req.sha512 │ │ │ │ ├── server6-ss-child.crt │ │ │ │ ├── server6.crt │ │ │ │ ├── server6.key │ │ │ │ ├── server7.crt │ │ │ │ ├── server7.key │ │ │ │ ├── server7_all_space.crt │ │ │ │ ├── server7_int-ca.crt │ │ │ │ ├── server7_int-ca_ca2.crt │ │ │ │ ├── server7_pem_space.crt │ │ │ │ ├── server7_trailing_space.crt │ │ │ │ ├── server8.crt │ │ │ │ ├── server8.key │ │ │ │ ├── server8_int-ca2.crt │ │ │ │ ├── server9-bad-mgfhash.crt │ │ │ │ ├── server9-bad-saltlen.crt │ │ │ │ ├── server9-badsign.crt │ │ │ │ ├── server9-defaults.crt │ │ │ │ ├── server9-sha224.crt │ │ │ │ ├── server9-sha256.crt │ │ │ │ ├── server9-sha384.crt │ │ │ │ ├── server9-sha512.crt │ │ │ │ ├── server9-with-ca.crt │ │ │ │ ├── server9.crt │ │ │ │ ├── server9.key │ │ │ │ ├── server9.req.sha1 │ │ │ │ ├── server9.req.sha224 │ │ │ │ ├── server9.req.sha256 │ │ │ │ ├── server9.req.sha384 │ │ │ │ ├── server9.req.sha512 │ │ │ │ ├── test-ca-v1.crt │ │ │ │ ├── test-ca.crt │ │ │ │ ├── test-ca.key │ │ │ │ ├── test-ca2.crt │ │ │ │ ├── test-ca2.key │ │ │ │ ├── test-ca2.ku-crl.crt │ │ │ │ ├── test-ca2.ku-crt.crt │ │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ │ ├── test-ca2.ku-ds.crt │ │ │ │ ├── test-ca_cat12.crt │ │ │ │ ├── test-ca_cat21.crt │ │ │ │ ├── test-int-ca.crt │ │ │ │ ├── test-int-ca.key │ │ │ │ ├── test-int-ca2.crt │ │ │ │ ├── test-int-ca2.key │ │ │ │ ├── test-int-ca3.crt │ │ │ │ └── test-int-ca3.key │ │ │ ├── scripts │ │ │ │ ├── all.sh │ │ │ │ ├── check-doxy-blocks.pl │ │ │ │ ├── check-generated-files.sh │ │ │ │ ├── check-names.sh │ │ │ │ ├── curves.pl │ │ │ │ ├── gen_ctr_drbg.pl │ │ │ │ ├── gen_gcm_decrypt.pl │ │ │ │ ├── gen_gcm_encrypt.pl │ │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ │ ├── generate_code.pl │ │ │ │ ├── key-exchanges.pl │ │ │ │ ├── list-enum-consts.pl │ │ │ │ ├── list-identifiers.sh │ │ │ │ ├── list-macros.sh │ │ │ │ ├── list-symbols.sh │ │ │ │ ├── recursion.pl │ │ │ │ ├── run-test-suites.pl │ │ │ │ ├── test-ref-configs.pl │ │ │ │ └── yotta-build.sh │ │ │ ├── ssl-opt.sh │ │ │ └── suites │ │ │ │ ├── helpers.function │ │ │ │ ├── main_test.function │ │ │ │ ├── test_suite_aes.cbc.data │ │ │ │ ├── test_suite_aes.cfb.data │ │ │ │ ├── test_suite_aes.ecb.data │ │ │ │ ├── test_suite_aes.function │ │ │ │ ├── test_suite_aes.rest.data │ │ │ │ ├── test_suite_arc4.data │ │ │ │ ├── test_suite_arc4.function │ │ │ │ ├── test_suite_asn1write.data │ │ │ │ ├── test_suite_asn1write.function │ │ │ │ ├── test_suite_base64.data │ │ │ │ ├── test_suite_base64.function │ │ │ │ ├── test_suite_blowfish.data │ │ │ │ ├── test_suite_blowfish.function │ │ │ │ ├── test_suite_camellia.data │ │ │ │ ├── test_suite_camellia.function │ │ │ │ ├── test_suite_ccm.data │ │ │ │ ├── test_suite_ccm.function │ │ │ │ ├── test_suite_cipher.aes.data │ │ │ │ ├── test_suite_cipher.arc4.data │ │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ │ ├── test_suite_cipher.camellia.data │ │ │ │ ├── test_suite_cipher.ccm.data │ │ │ │ ├── test_suite_cipher.des.data │ │ │ │ ├── test_suite_cipher.function │ │ │ │ ├── test_suite_cipher.gcm.data │ │ │ │ ├── test_suite_cipher.null.data │ │ │ │ ├── test_suite_cipher.padding.data │ │ │ │ ├── test_suite_ctr_drbg.data │ │ │ │ ├── test_suite_ctr_drbg.function │ │ │ │ ├── test_suite_debug.data │ │ │ │ ├── test_suite_debug.function │ │ │ │ ├── test_suite_des.data │ │ │ │ ├── test_suite_des.function │ │ │ │ ├── test_suite_dhm.data │ │ │ │ ├── test_suite_dhm.function │ │ │ │ ├── test_suite_ecdh.data │ │ │ │ ├── test_suite_ecdh.function │ │ │ │ ├── test_suite_ecdsa.data │ │ │ │ ├── test_suite_ecdsa.function │ │ │ │ ├── test_suite_ecjpake.data │ │ │ │ ├── test_suite_ecjpake.function │ │ │ │ ├── test_suite_ecp.data │ │ │ │ ├── test_suite_ecp.function │ │ │ │ ├── test_suite_entropy.data │ │ │ │ ├── test_suite_entropy.function │ │ │ │ ├── test_suite_error.data │ │ │ │ ├── test_suite_error.function │ │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ │ ├── test_suite_gcm.camellia.data │ │ │ │ ├── test_suite_gcm.function │ │ │ │ ├── test_suite_hmac_drbg.function │ │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ │ ├── test_suite_md.data │ │ │ │ ├── test_suite_md.function │ │ │ │ ├── test_suite_mdx.data │ │ │ │ ├── test_suite_mdx.function │ │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ │ ├── test_suite_mpi.data │ │ │ │ ├── test_suite_mpi.function │ │ │ │ ├── test_suite_pem.data │ │ │ │ ├── test_suite_pem.function │ │ │ │ ├── test_suite_pk.data │ │ │ │ ├── test_suite_pk.function │ │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ │ ├── test_suite_pkcs5.data │ │ │ │ ├── test_suite_pkcs5.function │ │ │ │ ├── test_suite_pkparse.data │ │ │ │ ├── test_suite_pkparse.function │ │ │ │ ├── test_suite_pkwrite.data │ │ │ │ ├── test_suite_pkwrite.function │ │ │ │ ├── test_suite_rsa.data │ │ │ │ ├── test_suite_rsa.function │ │ │ │ ├── test_suite_shax.data │ │ │ │ ├── test_suite_shax.function │ │ │ │ ├── test_suite_ssl.data │ │ │ │ ├── test_suite_ssl.function │ │ │ │ ├── test_suite_version.data │ │ │ │ ├── test_suite_version.function │ │ │ │ ├── test_suite_x509parse.data │ │ │ │ ├── test_suite_x509parse.function │ │ │ │ ├── test_suite_x509write.data │ │ │ │ ├── test_suite_x509write.function │ │ │ │ ├── test_suite_xtea.data │ │ │ │ └── test_suite_xtea.function │ │ ├── visualc │ │ │ └── VS2010 │ │ │ │ ├── aescrypt2.vcxproj │ │ │ │ ├── benchmark.vcxproj │ │ │ │ ├── cert_app.vcxproj │ │ │ │ ├── cert_req.vcxproj │ │ │ │ ├── cert_write.vcxproj │ │ │ │ ├── crl_app.vcxproj │ │ │ │ ├── crypt_and_hash.vcxproj │ │ │ │ ├── dh_client.vcxproj │ │ │ │ ├── dh_genprime.vcxproj │ │ │ │ ├── dh_server.vcxproj │ │ │ │ ├── dtls_client.vcxproj │ │ │ │ ├── dtls_server.vcxproj │ │ │ │ ├── ecdsa.vcxproj │ │ │ │ ├── gen_entropy.vcxproj │ │ │ │ ├── gen_key.vcxproj │ │ │ │ ├── gen_random_ctr_drbg.vcxproj │ │ │ │ ├── gen_random_havege.vcxproj │ │ │ │ ├── generic_sum.vcxproj │ │ │ │ ├── hello.vcxproj │ │ │ │ ├── key_app.vcxproj │ │ │ │ ├── key_app_writer.vcxproj │ │ │ │ ├── mbedTLS.sln │ │ │ │ ├── mbedTLS.vcxproj │ │ │ │ ├── md5sum.vcxproj │ │ │ │ ├── mini_client.vcxproj │ │ │ │ ├── mpi_demo.vcxproj │ │ │ │ ├── pem2der.vcxproj │ │ │ │ ├── pk_decrypt.vcxproj │ │ │ │ ├── pk_encrypt.vcxproj │ │ │ │ ├── pk_sign.vcxproj │ │ │ │ ├── pk_verify.vcxproj │ │ │ │ ├── req_app.vcxproj │ │ │ │ ├── rsa_decrypt.vcxproj │ │ │ │ ├── rsa_encrypt.vcxproj │ │ │ │ ├── rsa_genkey.vcxproj │ │ │ │ ├── rsa_sign.vcxproj │ │ │ │ ├── rsa_sign_pss.vcxproj │ │ │ │ ├── rsa_verify.vcxproj │ │ │ │ ├── rsa_verify_pss.vcxproj │ │ │ │ ├── selftest.vcxproj │ │ │ │ ├── sha1sum.vcxproj │ │ │ │ ├── sha2sum.vcxproj │ │ │ │ ├── ssl_cert_test.vcxproj │ │ │ │ ├── ssl_client1.vcxproj │ │ │ │ ├── ssl_client2.vcxproj │ │ │ │ ├── ssl_fork_server.vcxproj │ │ │ │ ├── ssl_mail_client.vcxproj │ │ │ │ ├── ssl_server.vcxproj │ │ │ │ ├── ssl_server2.vcxproj │ │ │ │ ├── strerror.vcxproj │ │ │ │ └── udp_proxy.vcxproj │ │ └── yotta │ │ │ ├── .gitignore │ │ │ ├── create-module.sh │ │ │ └── data │ │ │ ├── README.md │ │ │ ├── adjust-config.sh │ │ │ ├── entropy_hardware_poll.c │ │ │ ├── example-authcrypt │ │ │ ├── README.md │ │ │ └── main.cpp │ │ │ ├── example-benchmark │ │ │ ├── README.md │ │ │ └── main.cpp │ │ │ ├── example-hashing │ │ │ ├── README.md │ │ │ └── main.cpp │ │ │ ├── example-selftest │ │ │ ├── README.md │ │ │ └── main.cpp │ │ │ ├── module.json │ │ │ └── target_config.h │ ├── mqtt │ │ ├── CONTRIBUTING.md │ │ ├── MQTTClient-C │ │ │ ├── MQTTClient.c │ │ │ └── Xr_RTOS │ │ │ │ └── MQTTXrRTOS.c │ │ ├── MQTTPacket │ │ │ ├── MQTTConnectClient.c │ │ │ ├── MQTTConnectServer.c │ │ │ ├── MQTTDebug.h │ │ │ ├── MQTTDeserializePublish.c │ │ │ ├── MQTTFormat.c │ │ │ ├── MQTTFormat.h │ │ │ ├── MQTTPacket.c │ │ │ ├── MQTTSerializePublish.c │ │ │ ├── MQTTSubscribeClient.c │ │ │ ├── MQTTSubscribeServer.c │ │ │ ├── MQTTUnsubscribeClient.c │ │ │ ├── MQTTUnsubscribeServer.c │ │ │ ├── StackTrace.h │ │ │ └── module_debug.h │ │ ├── Makefile │ │ ├── README.md │ │ ├── about.html │ │ ├── edl-v10 │ │ ├── epl-v10 │ │ └── notice.html │ ├── nopoll │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── autogen.sh │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── aspl-logo-header.png │ │ │ ├── body_back.gif │ │ │ ├── draft-ietf-hybi-thewebsocketprotocol-00.txt │ │ │ ├── draft-ietf-hybi-thewebsocketprotocol-09.txt │ │ │ ├── hacha-100x171.png │ │ │ ├── main-page-logo.png │ │ │ ├── nopoll-doc-footer.html │ │ │ ├── nopoll-doc-header.html │ │ │ ├── nopoll-logo-200x200.png │ │ │ ├── nopoll-logo-32x32.png │ │ │ ├── nopoll-logo-48x48.ico │ │ │ ├── nopoll-logo-48x48.png │ │ │ ├── nopoll-logo-64x64.png │ │ │ ├── nopoll-logo.svg │ │ │ ├── nopoll.css │ │ │ ├── nopoll.doxygen.in │ │ │ ├── release-notes │ │ │ │ ├── nopoll-0.2.3.txt │ │ │ │ ├── nopoll-0.2.4.txt │ │ │ │ ├── nopoll-0.2.5.txt │ │ │ │ ├── nopoll-0.2.6.txt │ │ │ │ ├── nopoll-0.2.7.txt │ │ │ │ ├── nopoll-0.2.8.txt │ │ │ │ ├── nopoll-0.2.9.txt │ │ │ │ ├── nopoll-0.3.1.txt │ │ │ │ ├── nopoll-0.3.2.txt │ │ │ │ ├── nopoll-0.4.1.txt │ │ │ │ ├── nopoll-0.4.2.txt │ │ │ │ ├── nopoll-0.4.3.txt │ │ │ │ ├── nopoll-0.4.4.txt │ │ │ │ └── release-rutine.txt │ │ │ └── rfc6455.txt │ │ ├── get-version.py │ │ ├── src │ │ │ ├── nopoll.c │ │ │ ├── nopoll_FreeRTOS.c │ │ │ ├── nopoll_conn.c │ │ │ ├── nopoll_conn_opts.c │ │ │ ├── nopoll_ctx.c │ │ │ ├── nopoll_decl.c │ │ │ ├── nopoll_io.c │ │ │ ├── nopoll_listener.c │ │ │ ├── nopoll_log.c │ │ │ ├── nopoll_loop.c │ │ │ ├── nopoll_mbedtls.h │ │ │ ├── nopoll_msg.c │ │ │ └── nopoll_private.h │ │ └── versions.mk │ ├── ping │ │ ├── Makefile │ │ └── ping.c │ ├── shttpd-1.42 │ │ ├── CHANGELOG │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── examples │ │ │ ├── source.h │ │ │ └── web_server_demo.c │ │ └── src │ │ │ ├── auth.c │ │ │ ├── cgi.c │ │ │ ├── compat_rtems.c │ │ │ ├── compat_rtos.c │ │ │ ├── compat_unix.c │ │ │ ├── io_cgi.c │ │ │ ├── io_dir.c │ │ │ ├── io_emb.c │ │ │ ├── io_file.c │ │ │ ├── io_socket.c │ │ │ ├── io_ssi.c │ │ │ ├── io_ssl.c │ │ │ ├── log.c │ │ │ ├── md5.c │ │ │ ├── shttpd.1 │ │ │ ├── shttpd.c │ │ │ └── string.c │ ├── sntp │ │ ├── Makefile │ │ └── sntp.c │ ├── udhcp-0.9.8 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── README │ │ ├── README.dumpleases │ │ ├── README.udhcpc │ │ ├── README.udhcpd │ │ ├── TODO │ │ ├── arpping.c │ │ ├── arpping.h │ │ ├── clientpacket.c │ │ ├── clientpacket.h │ │ ├── debug.h │ │ ├── dhcp_time.c │ │ ├── dhcp_time.h │ │ ├── dhcpc.c │ │ ├── dhcpc.h │ │ ├── dhcpd.c │ │ ├── dhcpd.h │ │ ├── dhcpd_cfg.h │ │ ├── dns.h │ │ ├── dns_server.c │ │ ├── dumpleases.1 │ │ ├── dumpleases.c │ │ ├── files.c │ │ ├── files.h │ │ ├── frontend.c │ │ ├── leases.c │ │ ├── leases.h │ │ ├── libbb_udhcp.h │ │ ├── log │ │ ├── options.c │ │ ├── options.h │ │ ├── packet.c │ │ ├── packet.h │ │ ├── pidfile.c │ │ ├── pidfile.h │ │ ├── samples │ │ │ ├── README │ │ │ ├── sample.bound │ │ │ ├── sample.deconfig │ │ │ ├── sample.nak │ │ │ ├── sample.renew │ │ │ ├── sample.script │ │ │ ├── simple.script │ │ │ └── udhcpd.conf │ │ ├── script.c │ │ ├── script.h │ │ ├── serverpacket.c │ │ ├── serverpacket.h │ │ ├── socket.c │ │ ├── socket.h │ │ ├── udhcpc.8 │ │ ├── udhcpd.8 │ │ ├── udhcpd.conf.5 │ │ └── usr_dhcpd.c │ └── wlan │ │ ├── Makefile │ │ ├── ethernetif.c │ │ ├── wlan.c │ │ ├── wlan_ctrl.c │ │ ├── wlan_debug.h │ │ ├── wlan_ext_req.c │ │ └── wpa_ctrl_req.h ├── ota │ ├── Makefile │ ├── ota.c │ ├── ota_debug.h │ ├── ota_file.c │ ├── ota_file.h │ ├── ota_http.c │ ├── ota_http.h │ └── ota_i.h ├── pm │ ├── Makefile │ ├── pm.c │ ├── pm_i.h │ ├── port.c │ └── port.h ├── smartlink │ ├── Makefile │ ├── airkiss │ │ ├── airkiss.h │ │ ├── airkiss_ack.c │ │ ├── airkiss_discover.c │ │ └── airkiss_main.c │ ├── smartconfig │ │ ├── smart_config.h │ │ ├── smart_config_ack.c │ │ ├── smart_config_crc.c │ │ ├── smart_config_crc.h │ │ ├── smart_config_decode.c │ │ ├── smart_config_decode.h │ │ └── smart_config_main.c │ └── voice_print │ │ ├── adt.h │ │ └── voice_print.c ├── sys │ ├── Makefile │ ├── ducc │ │ ├── ducc.c │ │ ├── ducc.h │ │ ├── ducc_app.c │ │ ├── ducc_debug.h │ │ ├── ducc_hw_mbox.c │ │ ├── ducc_hw_mbox.h │ │ ├── ducc_mbox.c │ │ ├── ducc_mbox.h │ │ └── ducc_os.h │ └── mbuf │ │ ├── mbuf_1.c │ │ ├── mbuf_debug.h │ │ └── mbuf_util.h ├── util │ ├── Makefile │ └── atomic.c └── xz │ ├── makefile │ ├── xz_config.h │ ├── xz_crc32.c │ ├── xz_dec_bcj.c │ ├── xz_dec_lzma2.c │ ├── xz_dec_stream.c │ ├── xz_lzma2.h │ ├── xz_private.h │ └── xz_stream.h └── tools ├── mkimage ├── mkimage.exe ├── phoenixMC ├── phoenixMC.exe └── settings.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/README.md -------------------------------------------------------------------------------- /bin/xr871/boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/boot.bin -------------------------------------------------------------------------------- /bin/xr871/etf/app_etf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/app_etf -------------------------------------------------------------------------------- /bin/xr871/etf/boot_etf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/boot_etf -------------------------------------------------------------------------------- /bin/xr871/etf/copy_etf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/copy_etf.sh -------------------------------------------------------------------------------- /bin/xr871/etf/net_etf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/net_etf -------------------------------------------------------------------------------- /bin/xr871/etf/wlan_bl_etf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/wlan_bl_etf -------------------------------------------------------------------------------- /bin/xr871/etf/wlan_etf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/wlan_etf -------------------------------------------------------------------------------- /bin/xr871/etf/wlan_sdd_etf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/etf/wlan_sdd_etf -------------------------------------------------------------------------------- /bin/xr871/net.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/net.bin -------------------------------------------------------------------------------- /bin/xr871/net_ap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/net_ap.bin -------------------------------------------------------------------------------- /bin/xr871/net_wps.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/net_wps.bin -------------------------------------------------------------------------------- /bin/xr871/wlan_bl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/wlan_bl.bin -------------------------------------------------------------------------------- /bin/xr871/wlan_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/wlan_fw.bin -------------------------------------------------------------------------------- /bin/xr871/wlan_sdd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/bin/xr871/wlan_sdd.bin -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/config.mk -------------------------------------------------------------------------------- /gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/gcc.mk -------------------------------------------------------------------------------- /include/atcmd/at_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/atcmd/at_command.h -------------------------------------------------------------------------------- /include/atcmd/at_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/atcmd/at_config.h -------------------------------------------------------------------------------- /include/atcmd/at_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/atcmd/at_macros.h -------------------------------------------------------------------------------- /include/atcmd/at_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/atcmd/at_queue.h -------------------------------------------------------------------------------- /include/atcmd/at_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/atcmd/at_status.h -------------------------------------------------------------------------------- /include/atcmd/at_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/atcmd/at_types.h -------------------------------------------------------------------------------- /include/audio/pcm/audio_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/audio/pcm/audio_pcm.h -------------------------------------------------------------------------------- /include/audio/reverb/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/audio/reverb/mixer.h -------------------------------------------------------------------------------- /include/audio/reverb/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/audio/reverb/reverb.h -------------------------------------------------------------------------------- /include/audio/reverb/reverb_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/audio/reverb/reverb_pcm.h -------------------------------------------------------------------------------- /include/cedarx/cedarx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/cedarx/cedarx.h -------------------------------------------------------------------------------- /include/cjson/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/cjson/cJSON.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/console/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/console/console.h -------------------------------------------------------------------------------- /include/driver/chip/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/chip.h -------------------------------------------------------------------------------- /include/driver/chip/hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_adc.h -------------------------------------------------------------------------------- /include/driver/chip/hal_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_audio.h -------------------------------------------------------------------------------- /include/driver/chip/hal_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_ccm.h -------------------------------------------------------------------------------- /include/driver/chip/hal_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_chip.h -------------------------------------------------------------------------------- /include/driver/chip/hal_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_clock.h -------------------------------------------------------------------------------- /include/driver/chip/hal_cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_cmsis.h -------------------------------------------------------------------------------- /include/driver/chip/hal_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_codec.h -------------------------------------------------------------------------------- /include/driver/chip/hal_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_crypto.h -------------------------------------------------------------------------------- /include/driver/chip/hal_csi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_csi.h -------------------------------------------------------------------------------- /include/driver/chip/hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_def.h -------------------------------------------------------------------------------- /include/driver/chip/hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_dma.h -------------------------------------------------------------------------------- /include/driver/chip/hal_dmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_dmic.h -------------------------------------------------------------------------------- /include/driver/chip/hal_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_efuse.h -------------------------------------------------------------------------------- /include/driver/chip/hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_flash.h -------------------------------------------------------------------------------- /include/driver/chip/hal_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_global.h -------------------------------------------------------------------------------- /include/driver/chip/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_gpio.h -------------------------------------------------------------------------------- /include/driver/chip/hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_i2c.h -------------------------------------------------------------------------------- /include/driver/chip/hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_i2s.h -------------------------------------------------------------------------------- /include/driver/chip/hal_irrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_irrx.h -------------------------------------------------------------------------------- /include/driver/chip/hal_irtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_irtx.h -------------------------------------------------------------------------------- /include/driver/chip/hal_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_mbox.h -------------------------------------------------------------------------------- /include/driver/chip/hal_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_nvic.h -------------------------------------------------------------------------------- /include/driver/chip/hal_prcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_prcm.h -------------------------------------------------------------------------------- /include/driver/chip/hal_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_pwm.h -------------------------------------------------------------------------------- /include/driver/chip/hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_rtc.h -------------------------------------------------------------------------------- /include/driver/chip/hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_spi.h -------------------------------------------------------------------------------- /include/driver/chip/hal_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_spinlock.h -------------------------------------------------------------------------------- /include/driver/chip/hal_swd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_swd.h -------------------------------------------------------------------------------- /include/driver/chip/hal_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_timer.h -------------------------------------------------------------------------------- /include/driver/chip/hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_uart.h -------------------------------------------------------------------------------- /include/driver/chip/hal_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_util.h -------------------------------------------------------------------------------- /include/driver/chip/hal_wakeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_wakeup.h -------------------------------------------------------------------------------- /include/driver/chip/hal_wdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_wdg.h -------------------------------------------------------------------------------- /include/driver/chip/hal_xip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/hal_xip.h -------------------------------------------------------------------------------- /include/driver/chip/ir_nec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/ir_nec.h -------------------------------------------------------------------------------- /include/driver/chip/sdmmc/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/sdmmc/card.h -------------------------------------------------------------------------------- /include/driver/chip/sdmmc/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/sdmmc/sdmmc.h -------------------------------------------------------------------------------- /include/driver/chip/system_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/chip/system_chip.h -------------------------------------------------------------------------------- /include/driver/cmsis/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/cmsis/core_cm3.h -------------------------------------------------------------------------------- /include/driver/cmsis/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/cmsis/core_cm4.h -------------------------------------------------------------------------------- /include/driver/cmsis/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/cmsis/core_cmFunc.h -------------------------------------------------------------------------------- /include/driver/cmsis/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/cmsis/core_cmSimd.h -------------------------------------------------------------------------------- /include/driver/hal_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/hal_board.h -------------------------------------------------------------------------------- /include/driver/hal_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/driver/hal_dev.h -------------------------------------------------------------------------------- /include/efpg/efpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/efpg/efpg.h -------------------------------------------------------------------------------- /include/fs/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/fs/fatfs/diskio.h -------------------------------------------------------------------------------- /include/fs/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/fs/fatfs/ff.h -------------------------------------------------------------------------------- /include/fs/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/fs/fatfs/ffconf.h -------------------------------------------------------------------------------- /include/fs/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/fs/fatfs/integer.h -------------------------------------------------------------------------------- /include/image/fdcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/image/fdcm.h -------------------------------------------------------------------------------- /include/image/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/image/flash.h -------------------------------------------------------------------------------- /include/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/image/image.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/FreeRTOS.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/cpuusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/cpuusage.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/croutine.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/list.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/portable.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/projdefs.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/queue.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/semphr.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/task.h -------------------------------------------------------------------------------- /include/kernel/FreeRTOS/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/FreeRTOS/timers.h -------------------------------------------------------------------------------- /include/kernel/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os.h -------------------------------------------------------------------------------- /include/kernel/os/os_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_common.h -------------------------------------------------------------------------------- /include/kernel/os/os_cpuusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_cpuusage.h -------------------------------------------------------------------------------- /include/kernel/os/os_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_errno.h -------------------------------------------------------------------------------- /include/kernel/os/os_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_mutex.h -------------------------------------------------------------------------------- /include/kernel/os/os_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_queue.h -------------------------------------------------------------------------------- /include/kernel/os/os_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_semaphore.h -------------------------------------------------------------------------------- /include/kernel/os/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_thread.h -------------------------------------------------------------------------------- /include/kernel/os/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_time.h -------------------------------------------------------------------------------- /include/kernel/os/os_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/kernel/os/os_timer.h -------------------------------------------------------------------------------- /include/libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/libc/errno.h -------------------------------------------------------------------------------- /include/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/libc/stdio.h -------------------------------------------------------------------------------- /include/libc/sys/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/libc/sys/features.h -------------------------------------------------------------------------------- /include/libc/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/libc/sys/time.h -------------------------------------------------------------------------------- /include/net/HTTPClient/API/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/HTTPClient/API/debug.h -------------------------------------------------------------------------------- /include/net/cloud/aliyun/ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/cloud/aliyun/ca.h -------------------------------------------------------------------------------- /include/net/libwebsockets/romfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/libwebsockets/romfs.h -------------------------------------------------------------------------------- /include/net/libwebsockets/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/libwebsockets/ssl.h -------------------------------------------------------------------------------- /include/net/libwebsockets/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/libwebsockets/ssl3.h -------------------------------------------------------------------------------- /include/net/libwebsockets/ssl_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/libwebsockets/ssl_pm.h -------------------------------------------------------------------------------- /include/net/libwebsockets/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/libwebsockets/tls1.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/arch/cc.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/arch/perf.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/api.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/arch.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/def.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/dhcp.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/dns.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/err.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/init.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/mem.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/memp.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/opt.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/pbuf.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/raw.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/sio.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/snmp.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/sys.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/tcp.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwip/udp.h -------------------------------------------------------------------------------- /include/net/lwip-1.4.1/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-1.4.1/lwipopts.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/arch/cc.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/arch/perf.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/api.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/arch.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/def.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/dhcp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/dns.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/err.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/icmp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/igmp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/inet.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/init.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/ip.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/ip4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/ip4.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/ip6.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/mem.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/memp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/mld6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/mld6.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/nd6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/nd6.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/opt.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/pbuf.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/raw.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/sio.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/snmp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/sys.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/tcp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwip/udp.h -------------------------------------------------------------------------------- /include/net/lwip-2.0.3/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/lwip-2.0.3/lwipopts.h -------------------------------------------------------------------------------- /include/net/mbedtls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/CMakeLists.txt -------------------------------------------------------------------------------- /include/net/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/aes.h -------------------------------------------------------------------------------- /include/net/mbedtls/aes_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/aes_alt.h -------------------------------------------------------------------------------- /include/net/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/aesni.h -------------------------------------------------------------------------------- /include/net/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/arc4.h -------------------------------------------------------------------------------- /include/net/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/asn1.h -------------------------------------------------------------------------------- /include/net/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/asn1write.h -------------------------------------------------------------------------------- /include/net/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/base64.h -------------------------------------------------------------------------------- /include/net/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/bignum.h -------------------------------------------------------------------------------- /include/net/mbedtls/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/blowfish.h -------------------------------------------------------------------------------- /include/net/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /include/net/mbedtls/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/camellia.h -------------------------------------------------------------------------------- /include/net/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ccm.h -------------------------------------------------------------------------------- /include/net/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/certs.h -------------------------------------------------------------------------------- /include/net/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/check_config.h -------------------------------------------------------------------------------- /include/net/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/cipher.h -------------------------------------------------------------------------------- /include/net/mbedtls/compat-1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/compat-1.3.h -------------------------------------------------------------------------------- /include/net/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/config.h -------------------------------------------------------------------------------- /include/net/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /include/net/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/debug.h -------------------------------------------------------------------------------- /include/net/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/des.h -------------------------------------------------------------------------------- /include/net/mbedtls/des_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/des_alt.h -------------------------------------------------------------------------------- /include/net/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/dhm.h -------------------------------------------------------------------------------- /include/net/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ecdh.h -------------------------------------------------------------------------------- /include/net/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /include/net/mbedtls/ecjpake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ecjpake.h -------------------------------------------------------------------------------- /include/net/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ecp.h -------------------------------------------------------------------------------- /include/net/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/entropy.h -------------------------------------------------------------------------------- /include/net/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /include/net/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/error.h -------------------------------------------------------------------------------- /include/net/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/gcm.h -------------------------------------------------------------------------------- /include/net/mbedtls/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/havege.h -------------------------------------------------------------------------------- /include/net/mbedtls/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/hmac_drbg.h -------------------------------------------------------------------------------- /include/net/mbedtls/mbedtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/mbedtls.h -------------------------------------------------------------------------------- /include/net/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/md.h -------------------------------------------------------------------------------- /include/net/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/md2.h -------------------------------------------------------------------------------- /include/net/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/md4.h -------------------------------------------------------------------------------- /include/net/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/md5.h -------------------------------------------------------------------------------- /include/net/mbedtls/md5_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/md5_alt.h -------------------------------------------------------------------------------- /include/net/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/md_internal.h -------------------------------------------------------------------------------- /include/net/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/net.h -------------------------------------------------------------------------------- /include/net/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/oid.h -------------------------------------------------------------------------------- /include/net/mbedtls/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/padlock.h -------------------------------------------------------------------------------- /include/net/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/pem.h -------------------------------------------------------------------------------- /include/net/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/pk.h -------------------------------------------------------------------------------- /include/net/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /include/net/mbedtls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/pkcs11.h -------------------------------------------------------------------------------- /include/net/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /include/net/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /include/net/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/platform.h -------------------------------------------------------------------------------- /include/net/mbedtls/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ripemd160.h -------------------------------------------------------------------------------- /include/net/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/rsa.h -------------------------------------------------------------------------------- /include/net/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/sha1.h -------------------------------------------------------------------------------- /include/net/mbedtls/sha1_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/sha1_alt.h -------------------------------------------------------------------------------- /include/net/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/sha256.h -------------------------------------------------------------------------------- /include/net/mbedtls/sha256_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/sha256_alt.h -------------------------------------------------------------------------------- /include/net/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/sha512.h -------------------------------------------------------------------------------- /include/net/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ssl.h -------------------------------------------------------------------------------- /include/net/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /include/net/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /include/net/mbedtls/ssl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ssl_internal.h -------------------------------------------------------------------------------- /include/net/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /include/net/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/threading.h -------------------------------------------------------------------------------- /include/net/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/timing.h -------------------------------------------------------------------------------- /include/net/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/version.h -------------------------------------------------------------------------------- /include/net/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/x509.h -------------------------------------------------------------------------------- /include/net/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /include/net/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /include/net/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /include/net/mbedtls/xr_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/xr_mem.h -------------------------------------------------------------------------------- /include/net/mbedtls/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/mbedtls/xtea.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_config.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_conn.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_ctx.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_decl.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_io.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_log.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_loop.h -------------------------------------------------------------------------------- /include/net/nopoll/nopoll_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/nopoll/nopoll_msg.h -------------------------------------------------------------------------------- /include/net/ping/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/ping/ping.h -------------------------------------------------------------------------------- /include/net/shttpd/compat_rtems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/compat_rtems.h -------------------------------------------------------------------------------- /include/net/shttpd/compat_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/compat_rtos.h -------------------------------------------------------------------------------- /include/net/shttpd/compat_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/compat_unix.h -------------------------------------------------------------------------------- /include/net/shttpd/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/config.h -------------------------------------------------------------------------------- /include/net/shttpd/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/defs.h -------------------------------------------------------------------------------- /include/net/shttpd/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/io.h -------------------------------------------------------------------------------- /include/net/shttpd/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/llist.h -------------------------------------------------------------------------------- /include/net/shttpd/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/md5.h -------------------------------------------------------------------------------- /include/net/shttpd/shttpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/shttpd.h -------------------------------------------------------------------------------- /include/net/shttpd/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/ssl.h -------------------------------------------------------------------------------- /include/net/shttpd/std_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/shttpd/std_includes.h -------------------------------------------------------------------------------- /include/net/sntp/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/sntp/sntp.h -------------------------------------------------------------------------------- /include/net/udhcp/usr_dhcpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/udhcp/usr_dhcpd.h -------------------------------------------------------------------------------- /include/net/wlan/ethernetif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/wlan/ethernetif.h -------------------------------------------------------------------------------- /include/net/wlan/wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/wlan/wlan.h -------------------------------------------------------------------------------- /include/net/wlan/wlan_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/wlan/wlan_defs.h -------------------------------------------------------------------------------- /include/net/wlan/wlan_ext_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/net/wlan/wlan_ext_req.h -------------------------------------------------------------------------------- /include/ota/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/ota/ota.h -------------------------------------------------------------------------------- /include/ota/ota_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/ota/ota_opt.h -------------------------------------------------------------------------------- /include/pm/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/pm/pm.h -------------------------------------------------------------------------------- /include/smartlink/sc_assistant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/smartlink/sc_assistant.h -------------------------------------------------------------------------------- /include/sys/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/defs.h -------------------------------------------------------------------------------- /include/sys/ducc/ducc_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/ducc/ducc_addr.h -------------------------------------------------------------------------------- /include/sys/ducc/ducc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/ducc/ducc_app.h -------------------------------------------------------------------------------- /include/sys/ducc/ducc_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/ducc/ducc_net.h -------------------------------------------------------------------------------- /include/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/endian.h -------------------------------------------------------------------------------- /include/sys/fdcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/fdcm.h -------------------------------------------------------------------------------- /include/sys/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/image.h -------------------------------------------------------------------------------- /include/sys/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/interrupt.h -------------------------------------------------------------------------------- /include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/io.h -------------------------------------------------------------------------------- /include/sys/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/list.h -------------------------------------------------------------------------------- /include/sys/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/mbuf.h -------------------------------------------------------------------------------- /include/sys/mbuf_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/mbuf_0.h -------------------------------------------------------------------------------- /include/sys/mbuf_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/mbuf_1.h -------------------------------------------------------------------------------- /include/sys/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/ota.h -------------------------------------------------------------------------------- /include/sys/ota_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/ota_opt.h -------------------------------------------------------------------------------- /include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/param.h -------------------------------------------------------------------------------- /include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/queue.h -------------------------------------------------------------------------------- /include/sys/xr_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/xr_debug.h -------------------------------------------------------------------------------- /include/sys/xr_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/sys/xr_util.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/types.h -------------------------------------------------------------------------------- /include/util/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/util/atomic.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/version.h -------------------------------------------------------------------------------- /include/xz/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/xz/xz.h -------------------------------------------------------------------------------- /include/xz/xz_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/include/xz/xz_opt.h -------------------------------------------------------------------------------- /lib/libaac.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libaac.a -------------------------------------------------------------------------------- /lib/libadt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libadt.a -------------------------------------------------------------------------------- /lib/libairkiss_aes.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libairkiss_aes.a -------------------------------------------------------------------------------- /lib/libamr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libamr.a -------------------------------------------------------------------------------- /lib/libamren.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libamren.a -------------------------------------------------------------------------------- /lib/libcedarx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libcedarx.a -------------------------------------------------------------------------------- /lib/libmp3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libmp3.a -------------------------------------------------------------------------------- /lib/libreverb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libreverb.a -------------------------------------------------------------------------------- /lib/libsc_assistant.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libsc_assistant.a -------------------------------------------------------------------------------- /lib/libwav.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/lib/libwav.a -------------------------------------------------------------------------------- /project/bootloader/bl_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/bootloader/bl_debug.h -------------------------------------------------------------------------------- /project/bootloader/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/bootloader/gcc/Makefile -------------------------------------------------------------------------------- /project/bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/bootloader/main.c -------------------------------------------------------------------------------- /project/bootloader/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/bootloader/prj_config.h -------------------------------------------------------------------------------- /project/camera_demo/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/camera_demo/command.c -------------------------------------------------------------------------------- /project/camera_demo/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/camera_demo/command.h -------------------------------------------------------------------------------- /project/camera_demo/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/camera_demo/gcc/Makefile -------------------------------------------------------------------------------- /project/camera_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/camera_demo/main.c -------------------------------------------------------------------------------- /project/camera_demo/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/camera_demo/prj_config.h -------------------------------------------------------------------------------- /project/common/apps/player_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/apps/player_app.c -------------------------------------------------------------------------------- /project/common/apps/player_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/apps/player_app.h -------------------------------------------------------------------------------- /project/common/apps/recorder_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/apps/recorder_app.c -------------------------------------------------------------------------------- /project/common/apps/recorder_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/apps/recorder_app.h -------------------------------------------------------------------------------- /project/common/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/board/board.c -------------------------------------------------------------------------------- /project/common/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/board/board.h -------------------------------------------------------------------------------- /project/common/board/board_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/board/board_debug.h -------------------------------------------------------------------------------- /project/common/cmd/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_adc.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_adc.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_airkiss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_airkiss.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_airkiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_airkiss.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_arp.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_arp.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_auddbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_auddbg.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_auddbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_auddbg.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_audio.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_audio.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_broadcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_broadcast.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_broadcast.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ce.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ce.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_cedarx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_cedarx.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_cedarx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_cedarx.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_clock.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_clock.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_debug.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_defs.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_dhcpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_dhcpd.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_dhcpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_dhcpd.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_echo.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_echo.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_efpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_efpg.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_efpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_efpg.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_etf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_etf.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_etf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_etf.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_flash.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_flash.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_fs.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_fs.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_gpio.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_gpio.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_heap.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_heap.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_httpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_httpc.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_httpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_httpc.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_httpd.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_httpd.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_i2c.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_i2c.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_ifconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ifconfig.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_ifconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ifconfig.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_iperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_iperf.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_iperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_iperf.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_irrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_irrx.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_irrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_irrx.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_irtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_irtx.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_irtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_irtx.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_mem.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_mem.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_mqtt.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_mqtt.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_netcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_netcmd.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_netcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_netcmd.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_nopoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_nopoll.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_nopoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_nopoll.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ota.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ota.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ping.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_ping.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_pm.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_pm.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_pwm.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_pwm.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_rtc.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_rtc.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_sd.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_sd.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_smartlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_smartlink.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_smartlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_smartlink.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_sntp.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_sntp.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_sysinfo.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_sysinfo.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_thread.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_thread.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_timer.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_timer.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_uart.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_uart.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_upgrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_upgrade.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_upgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_upgrade.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_util.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_util.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_wdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_wdg.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_wdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_wdg.h -------------------------------------------------------------------------------- /project/common/cmd/cmd_wlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_wlan.c -------------------------------------------------------------------------------- /project/common/cmd/cmd_wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/cmd_wlan.h -------------------------------------------------------------------------------- /project/common/cmd/tls/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/tls/client.c -------------------------------------------------------------------------------- /project/common/cmd/tls/cmd_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/tls/cmd_tls.c -------------------------------------------------------------------------------- /project/common/cmd/tls/cmd_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/tls/cmd_tls.h -------------------------------------------------------------------------------- /project/common/cmd/tls/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/tls/server.c -------------------------------------------------------------------------------- /project/common/cmd/tls/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/tls/tls.c -------------------------------------------------------------------------------- /project/common/cmd/tls/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/cmd/tls/tls.h -------------------------------------------------------------------------------- /project/common/framework/fs_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/framework/fs_ctrl.c -------------------------------------------------------------------------------- /project/common/framework/fs_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/framework/fs_ctrl.h -------------------------------------------------------------------------------- /project/common/framework/net_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/framework/net_sys.c -------------------------------------------------------------------------------- /project/common/framework/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/framework/sysinfo.c -------------------------------------------------------------------------------- /project/common/framework/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/framework/sysinfo.h -------------------------------------------------------------------------------- /project/common/iperf/iperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/iperf/iperf.c -------------------------------------------------------------------------------- /project/common/iperf/iperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/iperf/iperf.h -------------------------------------------------------------------------------- /project/common/iperf/iperf_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/iperf/iperf_debug.h -------------------------------------------------------------------------------- /project/common/prj_conf_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/common/prj_conf_opt.h -------------------------------------------------------------------------------- /project/evb_audio/audio_buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/audio_buttons.c -------------------------------------------------------------------------------- /project/evb_audio/audio_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/audio_buttons.h -------------------------------------------------------------------------------- /project/evb_audio/audio_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/audio_display.c -------------------------------------------------------------------------------- /project/evb_audio/audio_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/audio_display.h -------------------------------------------------------------------------------- /project/evb_audio/audio_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/audio_player.c -------------------------------------------------------------------------------- /project/evb_audio/audio_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/audio_player.h -------------------------------------------------------------------------------- /project/evb_audio/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/command.c -------------------------------------------------------------------------------- /project/evb_audio/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/command.h -------------------------------------------------------------------------------- /project/evb_audio/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/gcc/Makefile -------------------------------------------------------------------------------- /project/evb_audio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/main.c -------------------------------------------------------------------------------- /project/evb_audio/play_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/play_list.c -------------------------------------------------------------------------------- /project/evb_audio/play_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/play_list.h -------------------------------------------------------------------------------- /project/evb_audio/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_audio/prj_config.h -------------------------------------------------------------------------------- /project/evb_sensor/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/command.c -------------------------------------------------------------------------------- /project/evb_sensor/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/command.h -------------------------------------------------------------------------------- /project/evb_sensor/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/gcc/Makefile -------------------------------------------------------------------------------- /project/evb_sensor/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/main.c -------------------------------------------------------------------------------- /project/evb_sensor/oled_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/oled_ui.c -------------------------------------------------------------------------------- /project/evb_sensor/oled_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/oled_ui.h -------------------------------------------------------------------------------- /project/evb_sensor/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/evb_sensor/prj_config.h -------------------------------------------------------------------------------- /project/example/adc/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/adc/gcc/Makefile -------------------------------------------------------------------------------- /project/example/adc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/adc/main.c -------------------------------------------------------------------------------- /project/example/adc/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/adc/prj_config.h -------------------------------------------------------------------------------- /project/example/airkiss/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/airkiss/main.c -------------------------------------------------------------------------------- /project/example/button/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/button/main.c -------------------------------------------------------------------------------- /project/example/ce/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/ce/gcc/Makefile -------------------------------------------------------------------------------- /project/example/ce/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/ce/main.c -------------------------------------------------------------------------------- /project/example/ce/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/ce/prj_config.h -------------------------------------------------------------------------------- /project/example/csi/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/csi/gcc/Makefile -------------------------------------------------------------------------------- /project/example/csi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/csi/main.c -------------------------------------------------------------------------------- /project/example/csi/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/csi/prj_config.h -------------------------------------------------------------------------------- /project/example/dma/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/dma/gcc/Makefile -------------------------------------------------------------------------------- /project/example/dma/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/dma/main.c -------------------------------------------------------------------------------- /project/example/dma/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/dma/prj_config.h -------------------------------------------------------------------------------- /project/example/gpio/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/gpio/gcc/Makefile -------------------------------------------------------------------------------- /project/example/gpio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/gpio/main.c -------------------------------------------------------------------------------- /project/example/gpio/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/gpio/prj_config.h -------------------------------------------------------------------------------- /project/example/i2c/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/i2c/gcc/Makefile -------------------------------------------------------------------------------- /project/example/i2c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/i2c/main.c -------------------------------------------------------------------------------- /project/example/i2c/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/i2c/prj_config.h -------------------------------------------------------------------------------- /project/example/ir/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/ir/gcc/Makefile -------------------------------------------------------------------------------- /project/example/ir/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/ir/main.c -------------------------------------------------------------------------------- /project/example/ir/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/ir/prj_config.h -------------------------------------------------------------------------------- /project/example/player/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/player/main.c -------------------------------------------------------------------------------- /project/example/pm/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pm/command.c -------------------------------------------------------------------------------- /project/example/pm/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pm/command.h -------------------------------------------------------------------------------- /project/example/pm/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pm/gcc/Makefile -------------------------------------------------------------------------------- /project/example/pm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pm/main.c -------------------------------------------------------------------------------- /project/example/pm/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pm/prj_config.h -------------------------------------------------------------------------------- /project/example/pwm/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pwm/gcc/Makefile -------------------------------------------------------------------------------- /project/example/pwm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pwm/main.c -------------------------------------------------------------------------------- /project/example/pwm/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/pwm/prj_config.h -------------------------------------------------------------------------------- /project/example/record/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/record/main.c -------------------------------------------------------------------------------- /project/example/reverb/bgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/reverb/bgm.c -------------------------------------------------------------------------------- /project/example/reverb/bgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/reverb/bgm.h -------------------------------------------------------------------------------- /project/example/reverb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/reverb/main.c -------------------------------------------------------------------------------- /project/example/rtc/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/rtc/gcc/Makefile -------------------------------------------------------------------------------- /project/example/rtc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/rtc/main.c -------------------------------------------------------------------------------- /project/example/rtc/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/rtc/prj_config.h -------------------------------------------------------------------------------- /project/example/sd/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/sd/gcc/Makefile -------------------------------------------------------------------------------- /project/example/sd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/sd/main.c -------------------------------------------------------------------------------- /project/example/sd/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/sd/prj_config.h -------------------------------------------------------------------------------- /project/example/smartconfig/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/smartconfig/main.c -------------------------------------------------------------------------------- /project/example/timer/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/timer/gcc/Makefile -------------------------------------------------------------------------------- /project/example/timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/timer/main.c -------------------------------------------------------------------------------- /project/example/timer/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/timer/prj_config.h -------------------------------------------------------------------------------- /project/example/uart/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/uart/gcc/Makefile -------------------------------------------------------------------------------- /project/example/uart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/uart/main.c -------------------------------------------------------------------------------- /project/example/uart/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/uart/prj_config.h -------------------------------------------------------------------------------- /project/example/wlan_sta/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/example/wlan_sta/main.c -------------------------------------------------------------------------------- /project/image_cfg/xr871/image.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/image_cfg/xr871/image.cfg -------------------------------------------------------------------------------- /project/prjconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/prjconfig.mk -------------------------------------------------------------------------------- /project/project.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/project.mk -------------------------------------------------------------------------------- /project/wlan_demo/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_demo/command.c -------------------------------------------------------------------------------- /project/wlan_demo/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_demo/command.h -------------------------------------------------------------------------------- /project/wlan_demo/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_demo/gcc/Makefile -------------------------------------------------------------------------------- /project/wlan_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_demo/main.c -------------------------------------------------------------------------------- /project/wlan_demo/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_demo/prj_config.h -------------------------------------------------------------------------------- /project/wlan_etf/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_etf/command.c -------------------------------------------------------------------------------- /project/wlan_etf/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_etf/command.h -------------------------------------------------------------------------------- /project/wlan_etf/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_etf/gcc/Makefile -------------------------------------------------------------------------------- /project/wlan_etf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_etf/main.c -------------------------------------------------------------------------------- /project/wlan_etf/prj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/project/wlan_etf/prj_config.h -------------------------------------------------------------------------------- /release-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/release-note.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/atcmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/Makefile -------------------------------------------------------------------------------- /src/atcmd/at_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_command.c -------------------------------------------------------------------------------- /src/atcmd/at_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_common.c -------------------------------------------------------------------------------- /src/atcmd/at_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_config.c -------------------------------------------------------------------------------- /src/atcmd/at_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_debug.h -------------------------------------------------------------------------------- /src/atcmd/at_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_gpio.c -------------------------------------------------------------------------------- /src/atcmd/at_parameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_parameter.c -------------------------------------------------------------------------------- /src/atcmd/at_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_private.h -------------------------------------------------------------------------------- /src/atcmd/at_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_queue.c -------------------------------------------------------------------------------- /src/atcmd/at_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_socket.c -------------------------------------------------------------------------------- /src/atcmd/at_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_status.c -------------------------------------------------------------------------------- /src/atcmd/at_upgrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_upgrade.c -------------------------------------------------------------------------------- /src/atcmd/at_wlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/atcmd/at_wlan.c -------------------------------------------------------------------------------- /src/audio/manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/audio/manager/Makefile -------------------------------------------------------------------------------- /src/audio/manager/audio_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/audio/manager/audio_manager.c -------------------------------------------------------------------------------- /src/audio/pcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/audio/pcm/Makefile -------------------------------------------------------------------------------- /src/audio/pcm/audio_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/audio/pcm/audio_pcm.c -------------------------------------------------------------------------------- /src/cjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/cjson/Makefile -------------------------------------------------------------------------------- /src/cjson/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/cjson/cJSON.c -------------------------------------------------------------------------------- /src/cjson/json_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/cjson/json_test.c -------------------------------------------------------------------------------- /src/console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/console/Makefile -------------------------------------------------------------------------------- /src/console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/console/console.c -------------------------------------------------------------------------------- /src/console/console_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/console/console_debug.h -------------------------------------------------------------------------------- /src/driver/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/Makefile -------------------------------------------------------------------------------- /src/driver/chip/codec/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/codec/codec.h -------------------------------------------------------------------------------- /src/driver/chip/codec/hal_ac101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/codec/hal_ac101.c -------------------------------------------------------------------------------- /src/driver/chip/codec/hal_ac101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/codec/hal_ac101.h -------------------------------------------------------------------------------- /src/driver/chip/codec/hal_ac101s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/codec/hal_ac101s.c -------------------------------------------------------------------------------- /src/driver/chip/codec/hal_ac101s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/codec/hal_ac101s.h -------------------------------------------------------------------------------- /src/driver/chip/codec/hal_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/codec/hal_codec.c -------------------------------------------------------------------------------- /src/driver/chip/hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_adc.c -------------------------------------------------------------------------------- /src/driver/chip/hal_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_base.h -------------------------------------------------------------------------------- /src/driver/chip/hal_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_board.c -------------------------------------------------------------------------------- /src/driver/chip/hal_ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_ccm.c -------------------------------------------------------------------------------- /src/driver/chip/hal_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_crypto.c -------------------------------------------------------------------------------- /src/driver/chip/hal_csi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_csi.c -------------------------------------------------------------------------------- /src/driver/chip/hal_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_debug.h -------------------------------------------------------------------------------- /src/driver/chip/hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_dma.c -------------------------------------------------------------------------------- /src/driver/chip/hal_dmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_dmic.c -------------------------------------------------------------------------------- /src/driver/chip/hal_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_efuse.c -------------------------------------------------------------------------------- /src/driver/chip/hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_flash.c -------------------------------------------------------------------------------- /src/driver/chip/hal_flash_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_flash_opt.h -------------------------------------------------------------------------------- /src/driver/chip/hal_flashcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_flashcache.c -------------------------------------------------------------------------------- /src/driver/chip/hal_flashctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_flashctrl.c -------------------------------------------------------------------------------- /src/driver/chip/hal_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_global.c -------------------------------------------------------------------------------- /src/driver/chip/hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_gpio.c -------------------------------------------------------------------------------- /src/driver/chip/hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_i2c.c -------------------------------------------------------------------------------- /src/driver/chip/hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_i2s.c -------------------------------------------------------------------------------- /src/driver/chip/hal_irrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_irrx.c -------------------------------------------------------------------------------- /src/driver/chip/hal_irtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_irtx.c -------------------------------------------------------------------------------- /src/driver/chip/hal_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_mbox.c -------------------------------------------------------------------------------- /src/driver/chip/hal_nvic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_nvic.c -------------------------------------------------------------------------------- /src/driver/chip/hal_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_os.h -------------------------------------------------------------------------------- /src/driver/chip/hal_prcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_prcm.c -------------------------------------------------------------------------------- /src/driver/chip/hal_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_pwm.c -------------------------------------------------------------------------------- /src/driver/chip/hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_rtc.c -------------------------------------------------------------------------------- /src/driver/chip/hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_spi.c -------------------------------------------------------------------------------- /src/driver/chip/hal_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_spinlock.c -------------------------------------------------------------------------------- /src/driver/chip/hal_swd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_swd.c -------------------------------------------------------------------------------- /src/driver/chip/hal_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_timer.c -------------------------------------------------------------------------------- /src/driver/chip/hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_uart.c -------------------------------------------------------------------------------- /src/driver/chip/hal_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_util.c -------------------------------------------------------------------------------- /src/driver/chip/hal_wakeup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_wakeup.c -------------------------------------------------------------------------------- /src/driver/chip/hal_wdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_wdg.c -------------------------------------------------------------------------------- /src/driver/chip/hal_xip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/hal_xip.c -------------------------------------------------------------------------------- /src/driver/chip/ir_nec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/ir_nec.c -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/_sd.h -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/core.c -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/core.h -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/hal_sdhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/hal_sdhost.c -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/sd.c -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/sdhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/sdhost.h -------------------------------------------------------------------------------- /src/driver/chip/sdmmc/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/sdmmc/test.c -------------------------------------------------------------------------------- /src/driver/chip/system_chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/chip/system_chip.c -------------------------------------------------------------------------------- /src/driver/component/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/driver/component/Makefile -------------------------------------------------------------------------------- /src/efpg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/efpg/Makefile -------------------------------------------------------------------------------- /src/efpg/efpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/efpg/efpg.c -------------------------------------------------------------------------------- /src/efpg/efpg_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/efpg/efpg_debug.h -------------------------------------------------------------------------------- /src/efpg/efpg_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/efpg/efpg_efuse.c -------------------------------------------------------------------------------- /src/efpg/efpg_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/efpg/efpg_frame.c -------------------------------------------------------------------------------- /src/efpg/efpg_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/efpg/efpg_i.h -------------------------------------------------------------------------------- /src/fs/fatfs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/00history.txt -------------------------------------------------------------------------------- /src/fs/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/00readme.txt -------------------------------------------------------------------------------- /src/fs/fatfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/Makefile -------------------------------------------------------------------------------- /src/fs/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/diskio.c -------------------------------------------------------------------------------- /src/fs/fatfs/driver/sdmmc_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/driver/sdmmc_diskio.c -------------------------------------------------------------------------------- /src/fs/fatfs/driver/sdmmc_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/driver/sdmmc_diskio.h -------------------------------------------------------------------------------- /src/fs/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/ff.c -------------------------------------------------------------------------------- /src/fs/fatfs/fferrno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/fferrno.c -------------------------------------------------------------------------------- /src/fs/fatfs/fferrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/fferrno.h -------------------------------------------------------------------------------- /src/fs/fatfs/option/cc932.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/cc932.c -------------------------------------------------------------------------------- /src/fs/fatfs/option/cc936.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/cc936.c -------------------------------------------------------------------------------- /src/fs/fatfs/option/cc949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/cc949.c -------------------------------------------------------------------------------- /src/fs/fatfs/option/cc950.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/cc950.c -------------------------------------------------------------------------------- /src/fs/fatfs/option/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/ccsbcs.c -------------------------------------------------------------------------------- /src/fs/fatfs/option/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/syscall.c -------------------------------------------------------------------------------- /src/fs/fatfs/option/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/fs/fatfs/option/unicode.c -------------------------------------------------------------------------------- /src/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/image/Makefile -------------------------------------------------------------------------------- /src/image/fdcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/image/fdcm.c -------------------------------------------------------------------------------- /src/image/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/image/flash.c -------------------------------------------------------------------------------- /src/image/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/image/image.c -------------------------------------------------------------------------------- /src/image/image_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/image/image_debug.h -------------------------------------------------------------------------------- /src/kernel/FreeRTOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/FreeRTOS/Makefile -------------------------------------------------------------------------------- /src/kernel/FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /src/kernel/FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /src/kernel/FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/Makefile -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_debug.c -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_debug.h -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_mutex.c -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_queue.c -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_thread.c -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_timer.c -------------------------------------------------------------------------------- /src/kernel/os/FreeRTOS/os_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/kernel/os/FreeRTOS/os_util.h -------------------------------------------------------------------------------- /src/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/lib.mk -------------------------------------------------------------------------------- /src/libc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/Makefile -------------------------------------------------------------------------------- /src/libc/wrap_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/wrap_malloc.c -------------------------------------------------------------------------------- /src/libc/wrap_memcpy-armv7m.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/wrap_memcpy-armv7m.S -------------------------------------------------------------------------------- /src/libc/wrap_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/wrap_memmove.c -------------------------------------------------------------------------------- /src/libc/wrap_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/wrap_memset.c -------------------------------------------------------------------------------- /src/libc/wrap_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/wrap_stdio.c -------------------------------------------------------------------------------- /src/libc/wrap_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/libc/wrap_time.c -------------------------------------------------------------------------------- /src/net/HTTPClient/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/.cproject -------------------------------------------------------------------------------- /src/net/HTTPClient/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/.project -------------------------------------------------------------------------------- /src/net/HTTPClient/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/Debug/makefile -------------------------------------------------------------------------------- /src/net/HTTPClient/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/Debug/subdir.mk -------------------------------------------------------------------------------- /src/net/HTTPClient/HTTPCUsr_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/HTTPCUsr_api.c -------------------------------------------------------------------------------- /src/net/HTTPClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/Makefile -------------------------------------------------------------------------------- /src/net/HTTPClient/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/HTTPClient/Readme.txt -------------------------------------------------------------------------------- /src/net/cloud/aliyun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/Makefile -------------------------------------------------------------------------------- /src/net/cloud/aliyun/alink_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/alink_auth.c -------------------------------------------------------------------------------- /src/net/cloud/aliyun/alink_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/alink_auth.h -------------------------------------------------------------------------------- /src/net/cloud/aliyun/alink_ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/alink_ca.c -------------------------------------------------------------------------------- /src/net/cloud/aliyun/alink_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/alink_debug.h -------------------------------------------------------------------------------- /src/net/cloud/aliyun/alink_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/alink_utils.c -------------------------------------------------------------------------------- /src/net/cloud/aliyun/alink_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/cloud/aliyun/alink_utils.h -------------------------------------------------------------------------------- /src/net/libwebsockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/.gitignore -------------------------------------------------------------------------------- /src/net/libwebsockets/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/.travis.yml -------------------------------------------------------------------------------- /src/net/libwebsockets/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/Kconfig -------------------------------------------------------------------------------- /src/net/libwebsockets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/LICENSE -------------------------------------------------------------------------------- /src/net/libwebsockets/Makefile.projbuild: -------------------------------------------------------------------------------- 1 | CPPFLAGS += -I$(BUILD_DIR_BASE)/libwebsockets/include 2 | -------------------------------------------------------------------------------- /src/net/libwebsockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/README.md -------------------------------------------------------------------------------- /src/net/libwebsockets/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/appveyor.yml -------------------------------------------------------------------------------- /src/net/libwebsockets/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/changelog -------------------------------------------------------------------------------- /src/net/libwebsockets/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/component.mk -------------------------------------------------------------------------------- /src/net/libwebsockets/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/lib/Makefile -------------------------------------------------------------------------------- /src/net/libwebsockets/lib/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/lib/alloc.c -------------------------------------------------------------------------------- /src/net/libwebsockets/lib/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/lib/header.c -------------------------------------------------------------------------------- /src/net/libwebsockets/lib/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/lib/output.c -------------------------------------------------------------------------------- /src/net/libwebsockets/lib/pollfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/lib/pollfd.c -------------------------------------------------------------------------------- /src/net/libwebsockets/lwsws/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/libwebsockets/lwsws/main.c -------------------------------------------------------------------------------- /src/net/libwebsockets/plugins/generic-sessions/assets/post-register-fail.html: -------------------------------------------------------------------------------- 1 | Registration failed, sorry 2 | -------------------------------------------------------------------------------- /src/net/libwebsockets/scripts/client-ca/certindex.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/net/libwebsockets/scripts/client-ca/serial: -------------------------------------------------------------------------------- 1 | 100003 2 | -------------------------------------------------------------------------------- /src/net/libwebsockets/test-apps/android/app/src/main/libs/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/net/libwebsockets/test-apps/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /src/net/libwebsockets/test-apps/private/index.html: -------------------------------------------------------------------------------- 1 | Protected by basic auth 2 | -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/CHANGELOG -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/COPYING -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/FILES -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/Makefile -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/README -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/UPGRADING -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/doc/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/doc/FILES -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/doc/contrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/doc/contrib.txt -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/doc/rawapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/doc/rawapi.txt -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/FILES -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/api/err.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/api/netdb.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/api/tcpip.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/def.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/dhcp.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/dns.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/init.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/ipv6/README: -------------------------------------------------------------------------------- 1 | IPv6 support in lwIP is very experimental. 2 | -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/mem.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/memp.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/pbuf.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/raw.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/sys.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/tcp.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/core/udp.c -------------------------------------------------------------------------------- /src/net/lwip-1.4.1/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-1.4.1/src/netif/FILES -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/.gitattributes -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/.gitignore -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/CHANGELOG -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/COPYING -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/FILES -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/Makefile -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/README -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/UPGRADING -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/doc/FILES -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/contrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/doc/contrib.txt -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/doxygen/generate.bat: -------------------------------------------------------------------------------- 1 | doxygen lwip.Doxyfile 2 | -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/doxygen/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | doxygen lwip.Doxyfile 4 | -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/mdns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/doc/mdns.txt -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/ppp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/doc/ppp.txt -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/doc/rawapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/doc/rawapi.txt -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/FILES -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/api/err.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/api/netdb.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/api/tcpip.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/def.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/dns.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/init.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/ip.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/mem.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/memp.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/pbuf.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/raw.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/sys.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/tcp.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/core/udp.c -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/lwip-2.0.3/src/netif/FILES -------------------------------------------------------------------------------- /src/net/lwip-2.0.3/test/fuzz/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/.ignore: -------------------------------------------------------------------------------- 1 | ./.* 2 | ./*.d 3 | -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/.travis.yml -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/ChangeLog -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/LICENSE -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/Makefile -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/Makefile_ORI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/Makefile_ORI -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/README.md -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libmbed* 3 | *.sln 4 | *.vcxproj 5 | -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/library/md.c -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/library/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/library/pk.c -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mbedtls-2.2.0/mbedtls.c -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /src/net/mbedtls-2.2.0/yotta/.gitignore: -------------------------------------------------------------------------------- 1 | module 2 | -------------------------------------------------------------------------------- /src/net/mqtt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/net/mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/Makefile -------------------------------------------------------------------------------- /src/net/mqtt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/README.md -------------------------------------------------------------------------------- /src/net/mqtt/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/about.html -------------------------------------------------------------------------------- /src/net/mqtt/edl-v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/edl-v10 -------------------------------------------------------------------------------- /src/net/mqtt/epl-v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/epl-v10 -------------------------------------------------------------------------------- /src/net/mqtt/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/mqtt/notice.html -------------------------------------------------------------------------------- /src/net/nopoll/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/AUTHORS -------------------------------------------------------------------------------- /src/net/nopoll/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/COPYING -------------------------------------------------------------------------------- /src/net/nopoll/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/ChangeLog -------------------------------------------------------------------------------- /src/net/nopoll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/Makefile -------------------------------------------------------------------------------- /src/net/nopoll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/README -------------------------------------------------------------------------------- /src/net/nopoll/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/TODO -------------------------------------------------------------------------------- /src/net/nopoll/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.4.b349 2 | -------------------------------------------------------------------------------- /src/net/nopoll/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/autogen.sh -------------------------------------------------------------------------------- /src/net/nopoll/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/doc/Makefile.am -------------------------------------------------------------------------------- /src/net/nopoll/doc/body_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/doc/body_back.gif -------------------------------------------------------------------------------- /src/net/nopoll/doc/nopoll-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/doc/nopoll-logo.svg -------------------------------------------------------------------------------- /src/net/nopoll/doc/nopoll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/doc/nopoll.css -------------------------------------------------------------------------------- /src/net/nopoll/doc/rfc6455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/doc/rfc6455.txt -------------------------------------------------------------------------------- /src/net/nopoll/get-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/get-version.py -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_conn.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_ctx.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_decl.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_io.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_log.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_loop.c -------------------------------------------------------------------------------- /src/net/nopoll/src/nopoll_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/nopoll/src/nopoll_msg.c -------------------------------------------------------------------------------- /src/net/nopoll/versions.mk: -------------------------------------------------------------------------------- 1 | nopoll_version = 0.4.2.b282 2 | -------------------------------------------------------------------------------- /src/net/ping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/ping/Makefile -------------------------------------------------------------------------------- /src/net/ping/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/ping/ping.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/CHANGELOG -------------------------------------------------------------------------------- /src/net/shttpd-1.42/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/COPYING -------------------------------------------------------------------------------- /src/net/shttpd-1.42/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/Makefile -------------------------------------------------------------------------------- /src/net/shttpd-1.42/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/README -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/auth.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/cgi.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/io_cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/io_cgi.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/io_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/io_dir.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/io_emb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/io_emb.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/io_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/io_file.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/io_ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/io_ssi.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/io_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/io_ssl.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/log.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/md5.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/shttpd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/shttpd.1 -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/shttpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/shttpd.c -------------------------------------------------------------------------------- /src/net/shttpd-1.42/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/shttpd-1.42/src/string.c -------------------------------------------------------------------------------- /src/net/sntp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/sntp/Makefile -------------------------------------------------------------------------------- /src/net/sntp/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/sntp/sntp.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/AUTHORS -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/COPYING -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/ChangeLog -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/Makefile -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/README -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/README.udhcpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/README.udhcpc -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/README.udhcpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/README.udhcpd -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/TODO -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/arpping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/arpping.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/arpping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/arpping.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/clientpacket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/clientpacket.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/clientpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/clientpacket.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/debug.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcp_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcp_time.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcp_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcp_time.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcpc.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcpc.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcpd.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcpd.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dhcpd_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dhcpd_cfg.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dns.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/dns_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/dns_server.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/files.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/files.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/frontend.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/leases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/leases.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/leases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/leases.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/log -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/options.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/options.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/packet.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/packet.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/pidfile.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/pidfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/pidfile.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/script.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/script.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/socket.c -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/socket.h -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/udhcpc.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/udhcpc.8 -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/udhcpd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/udhcpd.8 -------------------------------------------------------------------------------- /src/net/udhcp-0.9.8/usr_dhcpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/udhcp-0.9.8/usr_dhcpd.c -------------------------------------------------------------------------------- /src/net/wlan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/Makefile -------------------------------------------------------------------------------- /src/net/wlan/ethernetif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/ethernetif.c -------------------------------------------------------------------------------- /src/net/wlan/wlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/wlan.c -------------------------------------------------------------------------------- /src/net/wlan/wlan_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/wlan_ctrl.c -------------------------------------------------------------------------------- /src/net/wlan/wlan_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/wlan_debug.h -------------------------------------------------------------------------------- /src/net/wlan/wlan_ext_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/wlan_ext_req.c -------------------------------------------------------------------------------- /src/net/wlan/wpa_ctrl_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/net/wlan/wpa_ctrl_req.h -------------------------------------------------------------------------------- /src/ota/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/Makefile -------------------------------------------------------------------------------- /src/ota/ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota.c -------------------------------------------------------------------------------- /src/ota/ota_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota_debug.h -------------------------------------------------------------------------------- /src/ota/ota_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota_file.c -------------------------------------------------------------------------------- /src/ota/ota_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota_file.h -------------------------------------------------------------------------------- /src/ota/ota_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota_http.c -------------------------------------------------------------------------------- /src/ota/ota_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota_http.h -------------------------------------------------------------------------------- /src/ota/ota_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/ota/ota_i.h -------------------------------------------------------------------------------- /src/pm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/pm/Makefile -------------------------------------------------------------------------------- /src/pm/pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/pm/pm.c -------------------------------------------------------------------------------- /src/pm/pm_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/pm/pm_i.h -------------------------------------------------------------------------------- /src/pm/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/pm/port.c -------------------------------------------------------------------------------- /src/pm/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/pm/port.h -------------------------------------------------------------------------------- /src/smartlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/smartlink/Makefile -------------------------------------------------------------------------------- /src/smartlink/airkiss/airkiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/smartlink/airkiss/airkiss.h -------------------------------------------------------------------------------- /src/smartlink/voice_print/adt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/smartlink/voice_print/adt.h -------------------------------------------------------------------------------- /src/sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/Makefile -------------------------------------------------------------------------------- /src/sys/ducc/ducc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc.c -------------------------------------------------------------------------------- /src/sys/ducc/ducc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc.h -------------------------------------------------------------------------------- /src/sys/ducc/ducc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_app.c -------------------------------------------------------------------------------- /src/sys/ducc/ducc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_debug.h -------------------------------------------------------------------------------- /src/sys/ducc/ducc_hw_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_hw_mbox.c -------------------------------------------------------------------------------- /src/sys/ducc/ducc_hw_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_hw_mbox.h -------------------------------------------------------------------------------- /src/sys/ducc/ducc_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_mbox.c -------------------------------------------------------------------------------- /src/sys/ducc/ducc_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_mbox.h -------------------------------------------------------------------------------- /src/sys/ducc/ducc_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/ducc/ducc_os.h -------------------------------------------------------------------------------- /src/sys/mbuf/mbuf_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/mbuf/mbuf_1.c -------------------------------------------------------------------------------- /src/sys/mbuf/mbuf_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/mbuf/mbuf_debug.h -------------------------------------------------------------------------------- /src/sys/mbuf/mbuf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/sys/mbuf/mbuf_util.h -------------------------------------------------------------------------------- /src/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/util/Makefile -------------------------------------------------------------------------------- /src/util/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/util/atomic.c -------------------------------------------------------------------------------- /src/xz/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/makefile -------------------------------------------------------------------------------- /src/xz/xz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_config.h -------------------------------------------------------------------------------- /src/xz/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_crc32.c -------------------------------------------------------------------------------- /src/xz/xz_dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_dec_bcj.c -------------------------------------------------------------------------------- /src/xz/xz_dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_dec_lzma2.c -------------------------------------------------------------------------------- /src/xz/xz_dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_dec_stream.c -------------------------------------------------------------------------------- /src/xz/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_lzma2.h -------------------------------------------------------------------------------- /src/xz/xz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_private.h -------------------------------------------------------------------------------- /src/xz/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/src/xz/xz_stream.h -------------------------------------------------------------------------------- /tools/mkimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/tools/mkimage -------------------------------------------------------------------------------- /tools/mkimage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/tools/mkimage.exe -------------------------------------------------------------------------------- /tools/phoenixMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/tools/phoenixMC -------------------------------------------------------------------------------- /tools/phoenixMC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/tools/phoenixMC.exe -------------------------------------------------------------------------------- /tools/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XradioTech/XR871SDK/HEAD/tools/settings.ini --------------------------------------------------------------------------------