├── .gitignore ├── README.md ├── WiFi_SDK ├── .gdbinit_attach ├── API_updates.txt ├── CHANGELOG.txt ├── LICENSE.txt ├── Makefile ├── README.txt ├── WICED │ ├── RTOS │ │ ├── FreeRTOS │ │ │ ├── FreeRTOS.mk │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── rtos.h │ │ │ │ └── wiced_rtos.c │ │ │ ├── WWD │ │ │ │ ├── ARM_CM3 │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── low_level_init.c │ │ │ │ │ ├── low_power.c │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── ARM_CM7 │ │ │ │ │ ├── FreeRTO222SConfig.h │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── low_level_init.c │ │ │ │ │ ├── low_power.c │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── ARM_CR4 │ │ │ │ │ ├── FreeRTOSConfig.h │ │ │ │ │ ├── low_level_init.c │ │ │ │ │ ├── low_power.c │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── WWD.mk │ │ │ │ ├── wwd_FreeRTOS_systick.h │ │ │ │ ├── wwd_rtos.c │ │ │ │ └── wwd_rtos.h │ │ │ └── ver9.0.0 │ │ │ │ ├── License │ │ │ │ └── license.txt │ │ │ │ ├── Source │ │ │ │ ├── croutine.c │ │ │ │ ├── event_groups.c │ │ │ │ ├── include │ │ │ │ │ ├── FreeRTOS.h │ │ │ │ │ ├── StackMacros.h │ │ │ │ │ ├── croutine.h │ │ │ │ │ ├── deprecated_definitions.h │ │ │ │ │ ├── event_groups.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── mpu_prototypes.h │ │ │ │ │ ├── mpu_wrappers.h │ │ │ │ │ ├── portable.h │ │ │ │ │ ├── projdefs.h │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── semphr.h │ │ │ │ │ ├── stdint.readme │ │ │ │ │ ├── task.h │ │ │ │ │ └── timers.h │ │ │ │ ├── list.c │ │ │ │ ├── portable │ │ │ │ │ ├── Common │ │ │ │ │ │ └── mpu_wrappers.c │ │ │ │ │ ├── GCC │ │ │ │ │ │ ├── ARM7_AT91FR40008 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portISR.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM7_AT91SAM7S │ │ │ │ │ │ │ ├── AT91SAM7X256.h │ │ │ │ │ │ │ ├── ioat91sam7x256.h │ │ │ │ │ │ │ ├── lib_AT91SAM7X256.c │ │ │ │ │ │ │ ├── lib_AT91SAM7X256.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portISR.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM7_LPC2000 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portISR.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM7_LPC23xx │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portISR.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CA53_64_BIT │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CA9 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM0 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM3_MPU │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM4F │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM4_MPU │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM7 │ │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ │ └── r0p1 │ │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CR5 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CRx_No_GIC │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ATMega323 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── AVR32_UC3 │ │ │ │ │ │ │ ├── exception.S │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── CORTUS_APS3 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ColdFire_V2 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── H8S2329 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── HCS12 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── IA32_flat │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MCF5235 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MSP430F449 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MicroBlaze │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MicroBlazeV8 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_exceptions.c │ │ │ │ │ │ │ ├── portasm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MicroBlazeV9 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_exceptions.c │ │ │ │ │ │ │ ├── portasm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── NiosII │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── PPC405_Xilinx │ │ │ │ │ │ │ ├── FPU_Macros.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── PPC440_Xilinx │ │ │ │ │ │ │ ├── FPU_Macros.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RL78 │ │ │ │ │ │ │ ├── isr_support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.S │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX100 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX600 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX600v2 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── STR75x │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portISR.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ └── TriCore_1782 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ │ └── porttrap.c │ │ │ │ │ ├── IAR │ │ │ │ │ │ ├── 78K0R │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s26 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CA5_No_GIC │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.h │ │ │ │ │ │ │ ├── portASM.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CA9 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.h │ │ │ │ │ │ │ ├── portASM.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM0 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM4F │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM7 │ │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ │ └── r0p1 │ │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ │ ├── portasm.s │ │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CRx_No_GIC │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ATMega323 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ │ └── portmacro.s90 │ │ │ │ │ │ ├── AVR32_UC3 │ │ │ │ │ │ │ ├── exception.s82 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ │ ├── read.c │ │ │ │ │ │ │ └── write.c │ │ │ │ │ │ ├── AtmelSAM7S64 │ │ │ │ │ │ │ ├── AT91SAM7S64.h │ │ │ │ │ │ │ ├── AT91SAM7S64_inc.h │ │ │ │ │ │ │ ├── AT91SAM7X128.h │ │ │ │ │ │ │ ├── AT91SAM7X128_inc.h │ │ │ │ │ │ │ ├── AT91SAM7X256.h │ │ │ │ │ │ │ ├── AT91SAM7X256_inc.h │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── lib_AT91SAM7S64.h │ │ │ │ │ │ │ ├── lib_AT91SAM7X128.h │ │ │ │ │ │ │ ├── lib_AT91SAM7X256.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s79 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── AtmelSAM9XE │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s79 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── LPC2000 │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s79 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MSP430 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.h │ │ │ │ │ │ │ ├── portext.s43 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── MSP430X │ │ │ │ │ │ │ ├── data_model.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portext.s43 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RL78 │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s87 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX100 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX600 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RXv2 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.s │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── STR71x │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s79 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── STR75x │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s79 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── STR91x │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s79 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ └── V850ES │ │ │ │ │ │ │ ├── ISR_Support.h │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.s85 │ │ │ │ │ │ │ ├── portasm_Fx3.s85 │ │ │ │ │ │ │ ├── portasm_Hx2.s85 │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ ├── MSVC-MingW │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ ├── MemMang │ │ │ │ │ │ ├── ReadMe.url │ │ │ │ │ │ ├── heap_1.c │ │ │ │ │ │ ├── heap_2.c │ │ │ │ │ │ ├── heap_3.c │ │ │ │ │ │ ├── heap_4.c │ │ │ │ │ │ └── heap_5.c │ │ │ │ │ ├── MikroC │ │ │ │ │ │ └── ARM_CM4F │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ ├── RVDS │ │ │ │ │ │ ├── ARM7_LPC21xx │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.s │ │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ │ └── portmacro.inc │ │ │ │ │ │ ├── ARM_CA9 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portASM.s │ │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ │ └── portmacro.inc │ │ │ │ │ │ ├── ARM_CM0 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM3 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM4F │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── ARM_CM4_MPU │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ └── ARM_CM7 │ │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ │ └── r0p1 │ │ │ │ │ │ │ ├── fsl_tickless_generic.h │ │ │ │ │ │ │ ├── fsl_tickless_systick.c │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portmacro.h │ │ │ │ │ │ │ ├── r0p1.rar │ │ │ │ │ │ │ └── r0p1 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ ├── Renesas │ │ │ │ │ │ ├── RX100 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.src │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX200 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.src │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX600 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.src │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ ├── RX600v2 │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── port_asm.src │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ │ └── SH2A_FPU │ │ │ │ │ │ │ ├── ISR_Support.inc │ │ │ │ │ │ │ ├── port.c │ │ │ │ │ │ │ ├── portasm.src │ │ │ │ │ │ │ └── portmacro.h │ │ │ │ │ └── readme.txt │ │ │ │ ├── queue.c │ │ │ │ ├── readme.txt │ │ │ │ ├── tasks.c │ │ │ │ └── timers.c │ │ │ │ └── readme.txt │ │ ├── NoOS │ │ │ ├── NoOS.mk │ │ │ ├── WWD │ │ │ │ ├── Cortex_M3_M4 │ │ │ │ │ ├── noos.c │ │ │ │ │ ├── noos.h │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── Cortex_M7 │ │ │ │ │ ├── noos.c │ │ │ │ │ ├── noos.h │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── Cortex_R4 │ │ │ │ │ ├── noos.c │ │ │ │ │ ├── noos.h │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── WWD.mk │ │ │ │ ├── wwd_rtos.c │ │ │ │ └── wwd_rtos.h │ │ │ └── rtos.h │ │ ├── ThreadX │ │ │ ├── ThreadX.mk │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── rtos.h │ │ │ │ └── wiced_rtos.c │ │ │ ├── WWD │ │ │ │ ├── CM3_CM4 │ │ │ │ │ ├── low_level_init.c │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── CR4 │ │ │ │ │ ├── low_level_init.S │ │ │ │ │ ├── timer_isr.c │ │ │ │ │ └── wwd_rtos_isr.h │ │ │ │ ├── WWD.mk │ │ │ │ ├── wwd_rtos.c │ │ │ │ └── wwd_rtos.h │ │ │ └── ver5.8 │ │ │ │ ├── Cortex_M3_M4 │ │ │ │ ├── GCC │ │ │ │ │ └── tx_port.h │ │ │ │ ├── IAR │ │ │ │ │ └── tx_port.h │ │ │ │ └── tx_low_power.h │ │ │ │ ├── Cortex_R4 │ │ │ │ ├── GCC │ │ │ │ │ └── tx_port.h │ │ │ │ └── tx_low_power.h │ │ │ │ ├── docs │ │ │ │ └── ThreadX_User_Guide.pdf │ │ │ │ ├── tx_api.h │ │ │ │ ├── tx_block_pool.h │ │ │ │ ├── tx_byte_pool.h │ │ │ │ ├── tx_event_flags.h │ │ │ │ ├── tx_initialize.h │ │ │ │ ├── tx_mutex.h │ │ │ │ ├── tx_queue.h │ │ │ │ ├── tx_semaphore.h │ │ │ │ ├── tx_thread.h │ │ │ │ ├── tx_timer.h │ │ │ │ ├── tx_trace.h │ │ │ │ └── tx_user.h │ │ ├── wiced_rtos_common.c │ │ └── wiced_rtos_common.h │ ├── WICED.mk │ ├── WPL │ │ ├── WPL.mk │ │ ├── include │ │ │ └── wpl_console.h │ │ └── internal │ │ │ ├── wpl_core.c │ │ │ ├── wpl_core.h │ │ │ ├── wpl_cpl.c │ │ │ ├── wpl_cpl.h │ │ │ ├── wpl_packet.c │ │ │ ├── wpl_packet.h │ │ │ ├── wpl_transport.c │ │ │ ├── wpl_transport.h │ │ │ ├── wpl_transport_uart.c │ │ │ ├── wpl_transport_uart.h │ │ │ └── wpl_wifi.c │ ├── WWD │ │ ├── WWD.mk │ │ ├── include │ │ │ ├── RTOS │ │ │ │ └── wwd_rtos_interface.h │ │ │ ├── network │ │ │ │ ├── wwd_buffer_interface.h │ │ │ │ ├── wwd_network_constants.h │ │ │ │ └── wwd_network_interface.h │ │ │ ├── platform │ │ │ │ ├── wwd_bus_interface.h │ │ │ │ ├── wwd_platform_interface.h │ │ │ │ ├── wwd_resource_interface.h │ │ │ │ ├── wwd_sdio_interface.h │ │ │ │ └── wwd_spi_interface.h │ │ │ ├── wwd_assert.h │ │ │ ├── wwd_constants.h │ │ │ ├── wwd_debug.h │ │ │ ├── wwd_eapol.h │ │ │ ├── wwd_events.h │ │ │ ├── wwd_management.h │ │ │ ├── wwd_poll.h │ │ │ ├── wwd_structures.h │ │ │ ├── wwd_wifi.h │ │ │ ├── wwd_wifi_sleep.h │ │ │ └── wwd_wlioctl.h │ │ └── internal │ │ │ ├── bus_protocols │ │ │ ├── SDIO │ │ │ │ ├── wwd_bus_protocol.c │ │ │ │ └── wwd_bus_protocol.h │ │ │ ├── SPI │ │ │ │ ├── wwd_bus_protocol.c │ │ │ │ └── wwd_bus_protocol.h │ │ │ ├── SoC │ │ │ │ ├── 4390 │ │ │ │ │ ├── wwd_bus_protocol.c │ │ │ │ │ └── wwd_bus_protocol.h │ │ │ │ └── 43909 │ │ │ │ │ ├── wwd_bus_protocol.c │ │ │ │ │ └── wwd_bus_protocol.h │ │ │ ├── wwd_bus_common.c │ │ │ └── wwd_bus_protocol_interface.h │ │ │ ├── chips │ │ │ ├── 43362 │ │ │ │ ├── chip_constants.h │ │ │ │ ├── wwd_ap.c │ │ │ │ └── wwd_chip_specific_functions.c │ │ │ ├── 4334x │ │ │ │ ├── chip_constants.h │ │ │ │ ├── wwd_ap.c │ │ │ │ └── wwd_chip_specific_functions.c │ │ │ ├── 4343x │ │ │ │ ├── chip_constants.h │ │ │ │ ├── wwd_ap.c │ │ │ │ └── wwd_chip_specific_functions.c │ │ │ └── 4390x │ │ │ │ ├── chip_constants.h │ │ │ │ ├── wwd_ap.c │ │ │ │ └── wwd_chip_specific_functions.c │ │ │ ├── wwd_ap.h │ │ │ ├── wwd_ap_common.c │ │ │ ├── wwd_ap_common.h │ │ │ ├── wwd_bcmendian.h │ │ │ ├── wwd_clm.c │ │ │ ├── wwd_clm.h │ │ │ ├── wwd_debug.c │ │ │ ├── wwd_eapol.c │ │ │ ├── wwd_internal.c │ │ │ ├── wwd_internal.h │ │ │ ├── wwd_logging.c │ │ │ ├── wwd_logging.h │ │ │ ├── wwd_management.c │ │ │ ├── wwd_rtos_interface.c │ │ │ ├── wwd_sdpcm.c │ │ │ ├── wwd_sdpcm.h │ │ │ ├── wwd_thread.c │ │ │ ├── wwd_thread.h │ │ │ ├── wwd_thread_internal.c │ │ │ ├── wwd_thread_internal.h │ │ │ ├── wwd_wifi.c │ │ │ ├── wwd_wifi_chip_common.c │ │ │ ├── wwd_wifi_chip_common.h │ │ │ └── wwd_wifi_sleep.c │ ├── internal │ │ ├── dct.c │ │ ├── management.c │ │ ├── system_monitor.c │ │ ├── time.c │ │ ├── unit │ │ │ └── wiced_unit.cpp │ │ ├── waf.c │ │ ├── wiced_audio.c │ │ ├── wiced_cooee.c │ │ ├── wiced_core.c │ │ ├── wiced_crypto.c │ │ ├── wiced_easy_setup.c │ │ ├── wiced_filesystem.c │ │ ├── wiced_filesystem_internal.h │ │ ├── wiced_internal_api.h │ │ ├── wiced_lib.c │ │ ├── wiced_low_power.c │ │ ├── wiced_wifi_deep_sleep.c │ │ └── wifi.c │ ├── network │ │ ├── LwIP │ │ │ ├── LwIP.mk │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── tcpip.c │ │ │ │ ├── wiced_network.c │ │ │ │ ├── wiced_network.h │ │ │ │ ├── wiced_ping.c │ │ │ │ └── wiced_ping.h │ │ │ ├── WWD │ │ │ │ ├── EMBOS │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── embos.mk │ │ │ │ │ └── sys_arch.c │ │ │ │ ├── FreeRTOS │ │ │ │ │ ├── FreeRTOS.mk │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ └── sys_arch.c │ │ │ │ ├── LinuxOS │ │ │ │ │ ├── LinuxOS.mk │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ ├── perf.h │ │ │ │ │ │ └── sys_arch.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ └── sys_arch.c │ │ │ │ ├── WWD.mk │ │ │ │ ├── wwd_buffer.c │ │ │ │ ├── wwd_buffer.h │ │ │ │ ├── wwd_network.c │ │ │ │ └── wwd_network.h │ │ │ ├── ver2.0.3 │ │ │ │ ├── CHANGELOG │ │ │ │ ├── COPYING │ │ │ │ ├── FILES │ │ │ │ ├── README │ │ │ │ ├── UPGRADING │ │ │ │ ├── doc │ │ │ │ │ ├── FILES │ │ │ │ │ ├── NO_SYS_SampleCode.c │ │ │ │ │ ├── contrib.txt │ │ │ │ │ ├── doxygen │ │ │ │ │ │ ├── generate.bat │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── lwip.Doxyfile │ │ │ │ │ │ └── main_page.h │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ └── img │ │ │ │ │ │ │ │ │ └── sics.gif │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── include │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ └── netif │ │ │ │ │ │ ├── FILES │ │ │ │ │ │ ├── ethernet.c │ │ │ │ │ │ ├── ethernetif.c │ │ │ │ │ │ ├── lowpan6.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 │ │ │ └── version.txt │ │ ├── NetX │ │ │ ├── NetX.mk │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── tcpip.c │ │ │ │ ├── wiced_network.c │ │ │ │ └── wiced_network.h │ │ │ ├── WWD │ │ │ │ ├── WWD.mk │ │ │ │ ├── wwd_buffer.c │ │ │ │ ├── wwd_buffer.h │ │ │ │ ├── wwd_network.c │ │ │ │ └── wwd_network.h │ │ │ └── ver5.10_sp3 │ │ │ │ ├── docs │ │ │ │ └── NetX_User_Guide.pdf │ │ │ │ ├── netx_applications │ │ │ │ ├── auto_ip │ │ │ │ │ ├── nx_auto_ip.h │ │ │ │ │ └── nx_auto_ip.pdf │ │ │ │ ├── dhcp │ │ │ │ │ ├── nx_dhcp.h │ │ │ │ │ ├── nx_dhcp.pdf │ │ │ │ │ ├── nx_dhcp_server.h │ │ │ │ │ └── nx_dhcp_server.pdf │ │ │ │ ├── dns │ │ │ │ │ ├── nx_dns.h │ │ │ │ │ └── nx_dns.pdf │ │ │ │ ├── ftp │ │ │ │ │ ├── filex_stub.h │ │ │ │ │ ├── nx_ftp.h │ │ │ │ │ ├── nx_ftp.pdf │ │ │ │ │ ├── nx_ftp_client.h │ │ │ │ │ └── nx_ftp_server.h │ │ │ │ ├── http │ │ │ │ │ ├── filex_stub.h │ │ │ │ │ ├── nx_http.h │ │ │ │ │ ├── nx_http.pdf │ │ │ │ │ ├── nx_http_client.h │ │ │ │ │ ├── nx_http_server.h │ │ │ │ │ └── nx_md5.h │ │ │ │ ├── pop3 │ │ │ │ │ ├── nx_md5.h │ │ │ │ │ ├── nx_pop3.h │ │ │ │ │ ├── nx_pop3_client.h │ │ │ │ │ └── nx_pop3_client.pdf │ │ │ │ ├── ppp │ │ │ │ │ ├── nx_md5.h │ │ │ │ │ ├── nx_ppp.h │ │ │ │ │ └── nx_ppp.pdf │ │ │ │ ├── smtp │ │ │ │ │ ├── nx_smtp_client.h │ │ │ │ │ └── nx_smtp_client.pdf │ │ │ │ ├── snmp │ │ │ │ │ ├── nx_des.h │ │ │ │ │ ├── nx_md5.h │ │ │ │ │ ├── nx_sha1.h │ │ │ │ │ ├── nx_snmp.h │ │ │ │ │ └── nx_snmp.pdf │ │ │ │ ├── sntp │ │ │ │ │ ├── nx_sntp_client.h │ │ │ │ │ └── nx_sntp_client.pdf │ │ │ │ ├── telnet │ │ │ │ │ ├── nx_telnet.h │ │ │ │ │ ├── nx_telnet.pdf │ │ │ │ │ ├── nx_telnet_client.h │ │ │ │ │ └── nx_telnet_server.h │ │ │ │ └── tftp │ │ │ │ │ ├── filex_stub.h │ │ │ │ │ ├── nx_tftp.h │ │ │ │ │ ├── nx_tftp.pdf │ │ │ │ │ ├── nx_tftp_client.h │ │ │ │ │ └── nx_tftp_server.h │ │ │ │ ├── netx_bsd_layer │ │ │ │ ├── nx_bsd.h │ │ │ │ └── nx_bsd.pdf │ │ │ │ ├── nx_api.h │ │ │ │ ├── nx_arp.h │ │ │ │ ├── nx_external_functions.c │ │ │ │ ├── nx_icmp.h │ │ │ │ ├── nx_igmp.h │ │ │ │ ├── nx_ip.h │ │ │ │ ├── nx_packet.h │ │ │ │ ├── nx_port.h │ │ │ │ ├── nx_rarp.h │ │ │ │ ├── nx_system.h │ │ │ │ ├── nx_tcp.h │ │ │ │ ├── nx_udp.h │ │ │ │ └── nx_user.h │ │ ├── NetX_Duo │ │ │ ├── NetX_Duo.mk │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── tcpip.c │ │ │ │ ├── wiced_network.c │ │ │ │ └── wiced_network.h │ │ │ ├── WWD │ │ │ │ ├── WWD.mk │ │ │ │ ├── wwd_buffer.c │ │ │ │ ├── wwd_buffer.h │ │ │ │ ├── wwd_network.c │ │ │ │ └── wwd_network.h │ │ │ └── ver5.10_sp3 │ │ │ │ ├── docs │ │ │ │ └── NetX_Duo_User_Guide.pdf │ │ │ │ ├── netx_applications │ │ │ │ ├── auto_ip │ │ │ │ │ ├── nx_auto_ip.h │ │ │ │ │ └── nxd_auto_ip.pdf │ │ │ │ ├── dhcp │ │ │ │ │ ├── nxd_dhcp_client.h │ │ │ │ │ ├── nxd_dhcp_client.pdf │ │ │ │ │ ├── nxd_dhcp_server.h │ │ │ │ │ ├── nxd_dhcp_server.pdf │ │ │ │ │ ├── nxd_dhcpv6_client.h │ │ │ │ │ ├── nxd_dhcpv6_client.pdf │ │ │ │ │ ├── nxd_dhcpv6_server.h │ │ │ │ │ └── nxd_dhcpv6_server.pdf │ │ │ │ ├── dns │ │ │ │ │ ├── nxd_dns.h │ │ │ │ │ └── nxd_dns.pdf │ │ │ │ ├── ftp │ │ │ │ │ ├── filex_stub.h │ │ │ │ │ ├── nxd_ftp.pdf │ │ │ │ │ ├── nxd_ftp_client.h │ │ │ │ │ └── nxd_ftp_server.h │ │ │ │ ├── http │ │ │ │ │ ├── filex_stub.h │ │ │ │ │ ├── nx_md5.h │ │ │ │ │ ├── nxd_http.pdf │ │ │ │ │ ├── nxd_http_client.h │ │ │ │ │ └── nxd_http_server.h │ │ │ │ ├── ppp │ │ │ │ │ ├── nx_md5.h │ │ │ │ │ ├── nx_ppp.h │ │ │ │ │ └── nxd_ppp.pdf │ │ │ │ ├── smtp │ │ │ │ │ ├── nxd_smtp_client.h │ │ │ │ │ └── nxd_smtp_client.pdf │ │ │ │ ├── snmp │ │ │ │ │ ├── nx_des.h │ │ │ │ │ ├── nx_md5.h │ │ │ │ │ ├── nx_sha1.h │ │ │ │ │ ├── nxd_snmp.h │ │ │ │ │ └── nxd_snmp.pdf │ │ │ │ ├── sntp │ │ │ │ │ ├── nxd_sntp_client.h │ │ │ │ │ └── nxd_sntp_client.pdf │ │ │ │ ├── telnet │ │ │ │ │ ├── nxd_telnet.pdf │ │ │ │ │ ├── nxd_telnet_client.h │ │ │ │ │ └── nxd_telnet_server.h │ │ │ │ └── tftp │ │ │ │ │ ├── filex_stub.h │ │ │ │ │ ├── nxd_tftp.pdf │ │ │ │ │ ├── nxd_tftp_client.h │ │ │ │ │ └── nxd_tftp_server.h │ │ │ │ ├── netx_bsd_layer │ │ │ │ ├── nxd_bsd.h │ │ │ │ └── nxd_bsd.pdf │ │ │ │ ├── nx_api.h │ │ │ │ ├── nx_arp.h │ │ │ │ ├── nx_icmp.h │ │ │ │ ├── nx_icmpv4.h │ │ │ │ ├── nx_icmpv6.h │ │ │ │ ├── nx_igmp.h │ │ │ │ ├── nx_ip.h │ │ │ │ ├── nx_ipv4.h │ │ │ │ ├── nx_ipv6.h │ │ │ │ ├── nx_mld.h │ │ │ │ ├── nx_nd_cache.h │ │ │ │ ├── nx_packet.h │ │ │ │ ├── nx_port.h │ │ │ │ ├── nx_rarp.h │ │ │ │ ├── nx_system.h │ │ │ │ ├── nx_tcp.h │ │ │ │ ├── nx_udp.h │ │ │ │ ├── nx_user.h │ │ │ │ └── nxd_external_functions.c │ │ ├── NoNS │ │ │ ├── NoNS.mk │ │ │ └── WWD │ │ │ │ ├── WWD.mk │ │ │ │ ├── wiced_network.h │ │ │ │ ├── wwd_buffer.c │ │ │ │ └── wwd_buffer.h │ │ ├── wiced_network_common.c │ │ └── wiced_tcpip_common.c │ ├── platform │ │ ├── ARM_CM3 │ │ │ ├── CMSIS │ │ │ │ ├── CMSIS_EULA.pdf │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ └── core_cmInstr.h │ │ │ ├── crt0_GCC.c │ │ │ ├── crt0_IAR.c │ │ │ ├── hardfault_handler.c │ │ │ ├── host_cm3.c │ │ │ ├── platform_assert.h │ │ │ ├── platform_checkpoint.h │ │ │ └── platform_isr.h │ │ ├── ARM_CM4 │ │ │ ├── CMSIS │ │ │ │ ├── CMSIS_EULA.pdf │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm4_simd.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ └── core_cmInstr.h │ │ │ ├── crt0_GCC.c │ │ │ ├── crt0_IAR.c │ │ │ ├── hardfault_handler.c │ │ │ ├── host_cm4.c │ │ │ ├── platform_assert.h │ │ │ ├── platform_checkpoint.h │ │ │ └── platform_isr.h │ │ ├── ARM_CM7 │ │ │ ├── CMSIS │ │ │ │ ├── CMSIS_EULA.pdf │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ └── core_cmInstr.h │ │ │ ├── crt0_GCC.c │ │ │ ├── crt0_IAR.c │ │ │ ├── hardfault_handler.c │ │ │ ├── host_cm7.c │ │ │ ├── platform_assert.h │ │ │ ├── platform_checkpoint.h │ │ │ └── platform_isr.h │ │ ├── ARM_CR4 │ │ │ ├── cr4.h │ │ │ ├── crt0_GCC.c │ │ │ ├── exception_handlers.c │ │ │ ├── platform_assert.h │ │ │ ├── platform_cache.c │ │ │ ├── platform_cache.h │ │ │ ├── platform_cache_asm.S │ │ │ ├── platform_checkpoint.h │ │ │ └── platform_isr.h │ │ ├── GCC │ │ │ ├── GCC.mk │ │ │ ├── cxx_funcs.c │ │ │ ├── linker_symbols.h │ │ │ ├── math_newlib.c │ │ │ ├── mem_newlib.c │ │ │ ├── platform_toolchain.h │ │ │ ├── stdio_newlib.c │ │ │ └── time_newlib.c │ │ ├── IAR │ │ │ ├── IAR.mk │ │ │ ├── gnu_compat │ │ │ │ ├── iar_getopt_long.c │ │ │ │ ├── iar_strlcpy.c │ │ │ │ └── iar_unistd.c │ │ │ ├── iar_getopt.h │ │ │ ├── iar_gnudecls.h │ │ │ ├── iar_gnudefs.h │ │ │ ├── iar_unistd.h │ │ │ ├── linker_symbols.h │ │ │ ├── mem_IAR.c │ │ │ ├── platform_toolchain.h │ │ │ └── stdio_IAR.c │ │ ├── MCU │ │ │ ├── STM32F2xx │ │ │ │ ├── IAR │ │ │ │ │ ├── application.icf │ │ │ │ │ ├── application_ram.icf │ │ │ │ │ ├── bootloader.icf │ │ │ │ │ └── dct.icf │ │ │ │ ├── STM32F2xx.mk │ │ │ │ ├── WAF │ │ │ │ │ ├── waf_platform.c │ │ │ │ │ └── waf_platform.h │ │ │ │ ├── WWD │ │ │ │ │ ├── wwd_SDIO.c │ │ │ │ │ ├── wwd_SPI.c │ │ │ │ │ └── wwd_platform.c │ │ │ │ ├── peripherals │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ │ ├── stm32f2xx_adc.h │ │ │ │ │ │ │ ├── stm32f2xx_can.h │ │ │ │ │ │ │ ├── stm32f2xx_crc.h │ │ │ │ │ │ │ ├── stm32f2xx_cryp.h │ │ │ │ │ │ │ ├── stm32f2xx_dac.h │ │ │ │ │ │ │ ├── stm32f2xx_dbgmcu.h │ │ │ │ │ │ │ ├── stm32f2xx_dcmi.h │ │ │ │ │ │ │ ├── stm32f2xx_dma.h │ │ │ │ │ │ │ ├── stm32f2xx_exti.h │ │ │ │ │ │ │ ├── stm32f2xx_flash.h │ │ │ │ │ │ │ ├── stm32f2xx_fsmc.h │ │ │ │ │ │ │ ├── stm32f2xx_gpio.h │ │ │ │ │ │ │ ├── stm32f2xx_hash.h │ │ │ │ │ │ │ ├── stm32f2xx_i2c.h │ │ │ │ │ │ │ ├── stm32f2xx_iwdg.h │ │ │ │ │ │ │ ├── stm32f2xx_pwr.h │ │ │ │ │ │ │ ├── stm32f2xx_rcc.h │ │ │ │ │ │ │ ├── stm32f2xx_rng.h │ │ │ │ │ │ │ ├── stm32f2xx_rtc.h │ │ │ │ │ │ │ ├── stm32f2xx_sdio.h │ │ │ │ │ │ │ ├── stm32f2xx_spi.h │ │ │ │ │ │ │ ├── stm32f2xx_syscfg.h │ │ │ │ │ │ │ ├── stm32f2xx_tim.h │ │ │ │ │ │ │ ├── stm32f2xx_usart.h │ │ │ │ │ │ │ └── stm32f2xx_wwdg.h │ │ │ │ │ │ ├── libraries.mk │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ │ ├── stm32f2xx_adc.c │ │ │ │ │ │ │ ├── stm32f2xx_can.c │ │ │ │ │ │ │ ├── stm32f2xx_crc.c │ │ │ │ │ │ │ ├── stm32f2xx_cryp.c │ │ │ │ │ │ │ ├── stm32f2xx_cryp_aes.c │ │ │ │ │ │ │ ├── stm32f2xx_cryp_des.c │ │ │ │ │ │ │ ├── stm32f2xx_cryp_tdes.c │ │ │ │ │ │ │ ├── stm32f2xx_dac.c │ │ │ │ │ │ │ ├── stm32f2xx_dbgmcu.c │ │ │ │ │ │ │ ├── stm32f2xx_dcmi.c │ │ │ │ │ │ │ ├── stm32f2xx_dma.c │ │ │ │ │ │ │ ├── stm32f2xx_exti.c │ │ │ │ │ │ │ ├── stm32f2xx_flash.c │ │ │ │ │ │ │ ├── stm32f2xx_fsmc.c │ │ │ │ │ │ │ ├── stm32f2xx_gpio.c │ │ │ │ │ │ │ ├── stm32f2xx_hash.c │ │ │ │ │ │ │ ├── stm32f2xx_hash_md5.c │ │ │ │ │ │ │ ├── stm32f2xx_hash_sha1.c │ │ │ │ │ │ │ ├── stm32f2xx_i2c.c │ │ │ │ │ │ │ ├── stm32f2xx_iwdg.c │ │ │ │ │ │ │ ├── stm32f2xx_pwr.c │ │ │ │ │ │ │ ├── stm32f2xx_rcc.c │ │ │ │ │ │ │ ├── stm32f2xx_rng.c │ │ │ │ │ │ │ ├── stm32f2xx_rtc.c │ │ │ │ │ │ │ ├── stm32f2xx_sdio.c │ │ │ │ │ │ │ ├── stm32f2xx_spi.c │ │ │ │ │ │ │ ├── stm32f2xx_syscfg.c │ │ │ │ │ │ │ ├── stm32f2xx_tim.c │ │ │ │ │ │ │ ├── stm32f2xx_usart.c │ │ │ │ │ │ │ └── stm32f2xx_wwdg.c │ │ │ │ │ │ ├── stm32f2xx.h │ │ │ │ │ │ ├── stm32f2xx_conf.h │ │ │ │ │ │ ├── system_stm32f2xx.c │ │ │ │ │ │ └── system_stm32f2xx.h │ │ │ │ │ ├── peripherals.mk │ │ │ │ │ ├── platform_adc.c │ │ │ │ │ ├── platform_gpio.c │ │ │ │ │ ├── platform_i2c.c │ │ │ │ │ ├── platform_mcu_peripheral.h │ │ │ │ │ ├── platform_mcu_powersave.c │ │ │ │ │ ├── platform_pwm.c │ │ │ │ │ ├── platform_rtc.c │ │ │ │ │ ├── platform_spi.c │ │ │ │ │ ├── platform_uart.c │ │ │ │ │ └── platform_watchdog.c │ │ │ │ ├── platform_cmsis.h │ │ │ │ ├── platform_filesystem.c │ │ │ │ ├── platform_init.c │ │ │ │ ├── platform_isr_interface.h │ │ │ │ ├── platform_low_power.h │ │ │ │ ├── platform_unhandled_isr.c │ │ │ │ └── platform_vector_table.c │ │ │ ├── STM32F4xx │ │ │ │ ├── IAR │ │ │ │ │ ├── STM32F411 │ │ │ │ │ │ ├── dct.icf │ │ │ │ │ │ ├── memory_no_bootloader.icf │ │ │ │ │ │ ├── memory_ram.icf │ │ │ │ │ │ └── memory_with_bootloader.icf │ │ │ │ │ ├── app_no_bootloader.icf │ │ │ │ │ ├── app_ram.icf │ │ │ │ │ ├── app_with_bootloader.icf │ │ │ │ │ └── bootloader.icf │ │ │ │ ├── STM32F4xx.mk │ │ │ │ ├── WAF │ │ │ │ │ ├── waf_platform.c │ │ │ │ │ └── waf_platform.h │ │ │ │ ├── WWD │ │ │ │ │ ├── platform.c │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── wwd_SDIO.c │ │ │ │ │ ├── wwd_SPI.c │ │ │ │ │ └── wwd_platform.c │ │ │ │ ├── peripherals │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ │ ├── stm32f4xx_adc.h │ │ │ │ │ │ │ ├── stm32f4xx_can.h │ │ │ │ │ │ │ ├── stm32f4xx_cec.h │ │ │ │ │ │ │ ├── stm32f4xx_crc.h │ │ │ │ │ │ │ ├── stm32f4xx_cryp.h │ │ │ │ │ │ │ ├── stm32f4xx_dac.h │ │ │ │ │ │ │ ├── stm32f4xx_dbgmcu.h │ │ │ │ │ │ │ ├── stm32f4xx_dcmi.h │ │ │ │ │ │ │ ├── stm32f4xx_dfsdm.h │ │ │ │ │ │ │ ├── stm32f4xx_dma.h │ │ │ │ │ │ │ ├── stm32f4xx_dma2d.h │ │ │ │ │ │ │ ├── stm32f4xx_dsi.h │ │ │ │ │ │ │ ├── stm32f4xx_exti.h │ │ │ │ │ │ │ ├── stm32f4xx_flash.h │ │ │ │ │ │ │ ├── stm32f4xx_flash_ramfunc.h │ │ │ │ │ │ │ ├── stm32f4xx_fmc.h │ │ │ │ │ │ │ ├── stm32f4xx_fmpi2c.h │ │ │ │ │ │ │ ├── stm32f4xx_fsmc.h │ │ │ │ │ │ │ ├── stm32f4xx_gpio.h │ │ │ │ │ │ │ ├── stm32f4xx_hash.h │ │ │ │ │ │ │ ├── stm32f4xx_i2c.h │ │ │ │ │ │ │ ├── stm32f4xx_iwdg.h │ │ │ │ │ │ │ ├── stm32f4xx_lptim.h │ │ │ │ │ │ │ ├── stm32f4xx_ltdc.h │ │ │ │ │ │ │ ├── stm32f4xx_pwr.h │ │ │ │ │ │ │ ├── stm32f4xx_qspi.h │ │ │ │ │ │ │ ├── stm32f4xx_rcc.h │ │ │ │ │ │ │ ├── stm32f4xx_rng.h │ │ │ │ │ │ │ ├── stm32f4xx_rtc.h │ │ │ │ │ │ │ ├── stm32f4xx_sai.h │ │ │ │ │ │ │ ├── stm32f4xx_sdio.h │ │ │ │ │ │ │ ├── stm32f4xx_spdifrx.h │ │ │ │ │ │ │ ├── stm32f4xx_spi.h │ │ │ │ │ │ │ ├── stm32f4xx_syscfg.h │ │ │ │ │ │ │ ├── stm32f4xx_tim.h │ │ │ │ │ │ │ ├── stm32f4xx_usart.h │ │ │ │ │ │ │ └── stm32f4xx_wwdg.h │ │ │ │ │ │ ├── libraries.mk │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ │ ├── stm32f4xx_adc.c │ │ │ │ │ │ │ ├── stm32f4xx_can.c │ │ │ │ │ │ │ ├── stm32f4xx_cec.c │ │ │ │ │ │ │ ├── stm32f4xx_crc.c │ │ │ │ │ │ │ ├── stm32f4xx_cryp.c │ │ │ │ │ │ │ ├── stm32f4xx_cryp_aes.c │ │ │ │ │ │ │ ├── stm32f4xx_cryp_des.c │ │ │ │ │ │ │ ├── stm32f4xx_cryp_tdes.c │ │ │ │ │ │ │ ├── stm32f4xx_dac.c │ │ │ │ │ │ │ ├── stm32f4xx_dbgmcu.c │ │ │ │ │ │ │ ├── stm32f4xx_dcmi.c │ │ │ │ │ │ │ ├── stm32f4xx_dfsdm.c │ │ │ │ │ │ │ ├── stm32f4xx_dma.c │ │ │ │ │ │ │ ├── stm32f4xx_dma2d.c │ │ │ │ │ │ │ ├── stm32f4xx_dsi.c │ │ │ │ │ │ │ ├── stm32f4xx_exti.c │ │ │ │ │ │ │ ├── stm32f4xx_flash.c │ │ │ │ │ │ │ ├── stm32f4xx_flash_ramfunc.c │ │ │ │ │ │ │ ├── stm32f4xx_fmc.c │ │ │ │ │ │ │ ├── stm32f4xx_fmpi2c.c │ │ │ │ │ │ │ ├── stm32f4xx_fsmc.c │ │ │ │ │ │ │ ├── stm32f4xx_gpio.c │ │ │ │ │ │ │ ├── stm32f4xx_hash.c │ │ │ │ │ │ │ ├── stm32f4xx_hash_md5.c │ │ │ │ │ │ │ ├── stm32f4xx_hash_sha1.c │ │ │ │ │ │ │ ├── stm32f4xx_i2c.c │ │ │ │ │ │ │ ├── stm32f4xx_iwdg.c │ │ │ │ │ │ │ ├── stm32f4xx_lptim.c │ │ │ │ │ │ │ ├── stm32f4xx_ltdc.c │ │ │ │ │ │ │ ├── stm32f4xx_pwr.c │ │ │ │ │ │ │ ├── stm32f4xx_qspi.c │ │ │ │ │ │ │ ├── stm32f4xx_rcc.c │ │ │ │ │ │ │ ├── stm32f4xx_rng.c │ │ │ │ │ │ │ ├── stm32f4xx_rtc.c │ │ │ │ │ │ │ ├── stm32f4xx_sai.c │ │ │ │ │ │ │ ├── stm32f4xx_sdio.c │ │ │ │ │ │ │ ├── stm32f4xx_spdifrx.c │ │ │ │ │ │ │ ├── stm32f4xx_spi.c │ │ │ │ │ │ │ ├── stm32f4xx_syscfg.c │ │ │ │ │ │ │ ├── stm32f4xx_tim.c │ │ │ │ │ │ │ ├── stm32f4xx_usart.c │ │ │ │ │ │ │ └── stm32f4xx_wwdg.c │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ ├── stm32f4xx_conf.h │ │ │ │ │ │ ├── system_stm32f4xx.c │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ ├── peripherals.mk │ │ │ │ │ ├── platform_adc.c │ │ │ │ │ ├── platform_audio_timer.c │ │ │ │ │ ├── platform_ext_memory.c │ │ │ │ │ ├── platform_ext_memory.h │ │ │ │ │ ├── platform_gpio.c │ │ │ │ │ ├── platform_gspi_master.c │ │ │ │ │ ├── platform_i2c.c │ │ │ │ │ ├── platform_i2s.c │ │ │ │ │ ├── platform_i2s.h │ │ │ │ │ ├── platform_mcu_peripheral.h │ │ │ │ │ ├── platform_mcu_powersave.c │ │ │ │ │ ├── platform_pwm.c │ │ │ │ │ ├── platform_rtc.c │ │ │ │ │ ├── platform_spi.c │ │ │ │ │ ├── platform_uart.c │ │ │ │ │ └── platform_watchdog.c │ │ │ │ ├── platform_assert.h │ │ │ │ ├── platform_bootloader.c │ │ │ │ ├── platform_cmsis.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── platform_filesystem.c │ │ │ │ ├── platform_init.c │ │ │ │ ├── platform_isr.h │ │ │ │ ├── platform_isr_interface.h │ │ │ │ ├── platform_low_power.h │ │ │ │ ├── platform_unhandled_isr.c │ │ │ │ ├── platform_vector_table.c │ │ │ │ └── wifi_nvram_image.h │ │ │ ├── STM32H7xx │ │ │ │ ├── STM32H7xx.mk │ │ │ │ ├── WAF │ │ │ │ │ ├── waf_platform.c │ │ │ │ │ └── waf_platform.h │ │ │ │ ├── WWD │ │ │ │ │ ├── platform.c │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── wwd_SDIO.c │ │ │ │ │ ├── wwd_SPI.c │ │ │ │ │ └── wwd_platform.c │ │ │ │ ├── peripherals │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── cmsis │ │ │ │ │ │ │ └── include │ │ │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ │ │ └── cmsis_gcc.h │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── Legacy │ │ │ │ │ │ │ │ └── stm32_hal_legacy.h │ │ │ │ │ │ │ ├── stm32h7xx_hal.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_adc.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_adc_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_cec.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_comp.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_conf_template.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_cortex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_crc.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_crc_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_cryp.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_cryp_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dac.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dac_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dcmi.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_def.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dfsdm.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dma.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dma2d.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_dma_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_eth.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_eth_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_fdcan.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_flash.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_flash_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_gpio.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_gpio_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_hash.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_hash_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_hcd.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_hrtim.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_hsem.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2c.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2c_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2s.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2s_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_irda.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_irda_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_iwdg.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_jpeg.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_lptim.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_ltdc.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_mdios.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_mdma.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_mmc.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_mmc_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_nand.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_nor.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_opamp.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_opamp_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_pcd.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_pcd_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_pwr.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_pwr_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_qspi.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_rcc.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_rcc_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_rng.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_rtc.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_rtc_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_sai.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_sai_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_sd.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_sd_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_sdram.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_smartcard.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_smartcard_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_smbus.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_spdifrx.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_spi.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_spi_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_sram.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_swpmi.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_tim.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_tim_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_uart.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_uart_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_usart.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_usart_ex.h │ │ │ │ │ │ │ ├── stm32h7xx_hal_wwdg.h │ │ │ │ │ │ │ ├── stm32h7xx_ll_delayblock.h │ │ │ │ │ │ │ ├── stm32h7xx_ll_fmc.h │ │ │ │ │ │ │ ├── stm32h7xx_ll_sdmmc.h │ │ │ │ │ │ │ └── stm32h7xx_ll_usb.h │ │ │ │ │ │ ├── libraries.mk │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── stm32h7xx_hal.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_adc.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_adc_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_cec.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_comp.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_cortex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_crc.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_crc_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_cryp.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_cryp_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dac.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dac_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dcmi.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dfsdm.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dma.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dma2d.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_dma_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_eth.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_eth_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_fdcan.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_flash.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_flash_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_gpio.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_hash.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_hash_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_hcd.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_hrtim.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_hsem.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2c.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2c_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2s.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_i2s_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_irda.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_iwdg.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_jpeg.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_lptim.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_ltdc.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_mdios.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_mdma.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_mmc.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_mmc_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_nand.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_nor.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_opamp.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_opamp_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_pcd.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_pcd_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_pwr.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_pwr_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_qspi.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_rcc.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_rcc_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_rng.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_rtc.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_rtc_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_sai.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_sai_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_sd.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_sd_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_sdram.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_smartcard.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_smartcard_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_smbus.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_spdifrx.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_spi.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_spi_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_sram.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_swpmi.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_tim.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_tim_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_uart.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_uart_ex.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_usart.c │ │ │ │ │ │ │ ├── stm32h7xx_hal_wwdg.c │ │ │ │ │ │ │ ├── stm32h7xx_ll_delayblock.c │ │ │ │ │ │ │ ├── stm32h7xx_ll_fmc.c │ │ │ │ │ │ │ ├── stm32h7xx_ll_sdmmc.c │ │ │ │ │ │ │ └── stm32h7xx_ll_usb.c │ │ │ │ │ │ ├── stm32h753xx.h │ │ │ │ │ │ ├── stm32h7xx.h │ │ │ │ │ │ ├── stm32h7xx_hal_conf.h │ │ │ │ │ │ ├── stm32h7xx_it.c │ │ │ │ │ │ ├── system_stm32h7xx.c │ │ │ │ │ │ └── system_stm32h7xx.h │ │ │ │ │ ├── peripherals.mk │ │ │ │ │ ├── platform_gpio.c │ │ │ │ │ ├── platform_i2c.c │ │ │ │ │ ├── platform_mcu_peripheral.h │ │ │ │ │ ├── platform_pwm.c │ │ │ │ │ └── platform_uart.c │ │ │ │ ├── platform_bootloader.c │ │ │ │ ├── platform_cmsis.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── platform_filesystem.c │ │ │ │ ├── platform_init.c │ │ │ │ ├── platform_isr_interface.h │ │ │ │ ├── platform_low_power.h │ │ │ │ ├── platform_unhandled_isr.c │ │ │ │ ├── platform_vector_table.c │ │ │ │ └── wifi_nvram_image.h │ │ │ ├── iMXRT10xx │ │ │ │ ├── WWD │ │ │ │ │ ├── wlan_bus_sdio.c │ │ │ │ │ ├── wwd_SPI.c │ │ │ │ │ └── wwd_platform.c │ │ │ │ ├── peripherals │ │ │ │ │ ├── peripherals.mk │ │ │ │ │ ├── platform_gpio.c │ │ │ │ │ ├── platform_mcu_peripheral.h │ │ │ │ │ ├── platform_mcu_powersave.c │ │ │ │ │ ├── platform_sdio.c │ │ │ │ │ ├── platform_spi.c │ │ │ │ │ ├── platform_spifi.c │ │ │ │ │ ├── platform_uart.c │ │ │ │ │ └── platform_watchdog.c │ │ │ │ ├── platform.h │ │ │ │ ├── platform_assert.h │ │ │ │ ├── platform_cmsis.h │ │ │ │ ├── platform_config.h │ │ │ │ ├── platform_isr.h │ │ │ │ ├── platform_low_power.h │ │ │ │ └── wifi_nvram_image.h │ │ │ ├── platform_button.c │ │ │ ├── platform_nsclock.c │ │ │ ├── platform_resource.c │ │ │ ├── platform_stdio.c │ │ │ ├── platform_stdio.h │ │ │ ├── wiced_apps_common.c │ │ │ ├── wiced_apps_common.h │ │ │ ├── wiced_apps_lut.c │ │ │ ├── wiced_dct_common.h │ │ │ ├── wiced_dct_external_common.c │ │ │ ├── wiced_dct_external_ota2.c │ │ │ ├── wiced_dct_internal_common.c │ │ │ ├── wiced_dct_internal_ota2.c │ │ │ ├── wiced_dct_local_file.c │ │ │ ├── wiced_dct_update.c │ │ │ ├── wiced_platform_common.c │ │ │ ├── wiced_waf_common.c │ │ │ ├── wiced_waf_common.h │ │ │ ├── wwd_platform_common.h │ │ │ ├── wwd_platform_separate_mcu.c │ │ │ └── wwd_resources.c │ │ ├── README.txt │ │ └── include │ │ │ ├── elf.h │ │ │ ├── platform_audio.h │ │ │ ├── platform_bluetooth.h │ │ │ ├── platform_button.h │ │ │ ├── platform_cache_def.h │ │ │ ├── platform_constants.h │ │ │ ├── platform_dct.h │ │ │ ├── platform_dct_old_sdk.h │ │ │ ├── platform_ethernet.h │ │ │ ├── platform_external_memory.h │ │ │ ├── platform_init.h │ │ │ ├── platform_memory.h │ │ │ ├── platform_mfi.h │ │ │ ├── platform_nfc.h │ │ │ ├── platform_peripheral.h │ │ │ ├── platform_resource.h │ │ │ ├── platform_sflash_dct.h │ │ │ ├── platform_sleep.h │ │ │ ├── platform_usb.h │ │ │ └── wiced_block_device.h │ └── security │ │ ├── BESL │ │ ├── BESL.mk │ │ ├── DTLS │ │ │ └── dtls_host_api.h │ │ ├── P2P │ │ │ ├── p2p_constants.h │ │ │ ├── p2p_events.c │ │ │ ├── p2p_frame_writer.c │ │ │ ├── p2p_frame_writer.h │ │ │ └── p2p_structures.h │ │ ├── TLS │ │ │ └── tls_host_api.h │ │ ├── WPS │ │ │ ├── template_wps_packets.h │ │ │ ├── wps_common.h │ │ │ ├── wps_constants.h │ │ │ └── wps_structures.h │ │ ├── crypto_internal │ │ │ ├── crypto_constants.h │ │ │ ├── crypto_structures.h │ │ │ ├── micro-ecc │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── asm_arm.inc │ │ │ │ ├── asm_arm_mult_square.inc │ │ │ │ ├── asm_arm_mult_square_umaal.inc │ │ │ │ ├── asm_avr.inc │ │ │ │ ├── asm_avr_mult_square.inc │ │ │ │ ├── curve-specific.inc │ │ │ │ ├── emk_project.py │ │ │ │ ├── emk_rules.py │ │ │ │ ├── examples │ │ │ │ │ └── ecc_test │ │ │ │ │ │ └── ecc_test.ino │ │ │ │ ├── library.properties │ │ │ │ ├── micro-ecc.mk │ │ │ │ ├── platform-specific.inc │ │ │ │ ├── scripts │ │ │ │ │ ├── mult_arm.py │ │ │ │ │ ├── mult_avr.py │ │ │ │ │ ├── mult_avr_extra.py │ │ │ │ │ ├── square_arm.py │ │ │ │ │ └── square_avr.py │ │ │ │ ├── test │ │ │ │ │ ├── emk_rules.py │ │ │ │ │ ├── test_compress.c │ │ │ │ │ ├── test_compute.c │ │ │ │ │ ├── test_ecdh.c │ │ │ │ │ ├── test_ecdsa.c │ │ │ │ │ └── test_ecdsa_deterministic.c.example │ │ │ │ ├── types.h │ │ │ │ ├── uECC.c │ │ │ │ ├── uECC.h │ │ │ │ └── uECC_vli.h │ │ │ └── wiced_security_internal.h │ │ ├── host │ │ │ └── WICED │ │ │ │ ├── besl_host.c │ │ │ │ ├── besl_host.h │ │ │ │ ├── besl_host_rtos_structures.h │ │ │ │ ├── cipher_suites.c │ │ │ │ ├── cipher_suites.h │ │ │ │ ├── dtls_cipher_suites.c │ │ │ │ ├── dtls_cipher_suites.h │ │ │ │ ├── dtls_types.h │ │ │ │ ├── p2p_internal.c │ │ │ │ ├── tls_cipher_suites.c │ │ │ │ ├── tls_cipher_suites.h │ │ │ │ ├── tls_types.h │ │ │ │ ├── wiced_dtls.c │ │ │ │ ├── wiced_p2p.c │ │ │ │ ├── wiced_p2p.h │ │ │ │ ├── wiced_supplicant.c │ │ │ │ ├── wiced_supplicant.h │ │ │ │ ├── wiced_tcpip_tls_api.h │ │ │ │ ├── wiced_tls.c │ │ │ │ ├── wiced_udpip_dtls_api.h │ │ │ │ ├── wiced_wps.c │ │ │ │ ├── wiced_wps.h │ │ │ │ └── wps_host.h │ │ ├── include │ │ │ ├── besl_constants.h │ │ │ ├── besl_host_interface.h │ │ │ ├── besl_structures.h │ │ │ ├── p2p_host_interface.h │ │ │ ├── scan_host_interface.h │ │ │ ├── wps_host_interface.h │ │ │ └── wps_p2p_interface.h │ │ ├── mbedtls_open │ │ │ ├── include │ │ │ │ ├── .gitignore │ │ │ │ └── mbedtls │ │ │ │ │ ├── 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 │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── compat-1.3.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── des_alt.h │ │ │ │ │ ├── dhm.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ ├── ecp.h │ │ │ │ │ ├── ecp_alt.h │ │ │ │ │ ├── ecp_internal.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── entropy_poll.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── gcm.h │ │ │ │ │ ├── havege.h │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ ├── md.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── md5_alt.h │ │ │ │ │ ├── md_internal.h │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── net_sockets.h │ │ │ │ │ ├── oid.h │ │ │ │ │ ├── padlock.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pk.h │ │ │ │ │ ├── pk_internal.h │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform_time.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 │ │ │ │ │ └── xtea.h │ │ │ ├── library │ │ │ │ ├── .gitignore │ │ │ │ ├── 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 │ │ │ │ ├── cmac.c │ │ │ │ ├── ctr_drbg.c │ │ │ │ ├── debug.c │ │ │ │ ├── des.c │ │ │ │ ├── des_alt.c │ │ │ │ ├── dhm.c │ │ │ │ ├── ecdh.c │ │ │ │ ├── ecdsa.c │ │ │ │ ├── ecjpake.c │ │ │ │ ├── ecp.c │ │ │ │ ├── ecp_alt.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_sockets.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 │ │ │ │ └── xtea.c │ │ │ └── mbedtls_open.mk │ │ └── supplicant │ │ │ ├── supplicant_constants.h │ │ │ └── supplicant_structures.h │ │ └── PostgreSQL │ │ ├── Makefile │ │ ├── PostgreSQL.mk │ │ ├── PostgreSQL_src.mk │ │ ├── fortuna.c │ │ └── include │ │ └── fortuna.h ├── WiFiSecurityExploits.txt ├── apps │ ├── README.txt │ ├── demo │ │ ├── README.txt │ │ ├── aliyun_mns │ │ │ ├── aliyun_common.h │ │ │ ├── aliyun_mns.c │ │ │ ├── aliyun_mns.mk │ │ │ ├── aliyun_protocol.c │ │ │ ├── aliyun_protocol.h │ │ │ ├── wifi_config_dct.h │ │ │ ├── xml.c │ │ │ └── xml.h │ │ ├── apollo │ │ │ ├── OTA2_README.txt │ │ │ ├── apollo.c │ │ │ ├── apollo.mk │ │ │ ├── apollo_config.c │ │ │ ├── apollo_config.h │ │ │ ├── apollo_console.c │ │ │ ├── apollo_context.h │ │ │ ├── apollo_dct.c │ │ │ ├── apollo_dct.h │ │ │ ├── apollo_debug.c │ │ │ ├── apollo_debug.h │ │ │ ├── apollo_keypad.c │ │ │ ├── apollo_keypad.h │ │ │ ├── apollo_ota2_context.h │ │ │ ├── apollo_ota2_support.c │ │ │ ├── apollo_ota2_support.h │ │ │ ├── apollo_tracex.c │ │ │ ├── apollo_tracex.h │ │ │ ├── apollo_upnpavrender.c │ │ │ ├── apollo_upnpavrender.h │ │ │ ├── bt_config_dct.h │ │ │ ├── peerapps │ │ │ │ └── iOS │ │ │ │ │ └── apollo_config │ │ │ │ │ ├── apollo_config.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── apollo_config │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Icon-40@3x.png │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── audioImage.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── iconImage-1.png │ │ │ │ │ │ │ ├── iconImage-2.png │ │ │ │ │ │ │ └── iconImage.png │ │ │ │ │ │ ├── menu.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── menu.png │ │ │ │ │ │ │ ├── menu@2x.png │ │ │ │ │ │ │ └── menu@3x.png │ │ │ │ │ │ ├── menu.png │ │ │ │ │ │ ├── menu@2x.png │ │ │ │ │ │ └── menu@3x.png │ │ │ │ │ ├── AudioConfigTableViewCell.swift │ │ │ │ │ ├── AudioConfigTableViewSectionCell.swift │ │ │ │ │ ├── CentralManager.swift │ │ │ │ │ ├── DataManager.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ ├── Logger.swift │ │ │ │ │ ├── Main.storyboard │ │ │ │ │ ├── MyPlayground.playground │ │ │ │ │ │ ├── Contents.swift │ │ │ │ │ │ ├── contents.xcplayground │ │ │ │ │ │ ├── playground.xcworkspace │ │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ │ │ └── raviraj.xcuserdatad │ │ │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ │ │ └── timeline.xctimeline │ │ │ │ │ ├── Peripheral.swift │ │ │ │ │ ├── STCollapseTableView.h │ │ │ │ │ ├── STCollapseTableView.m │ │ │ │ │ ├── SimpleViewController.swift │ │ │ │ │ ├── Utils.swift │ │ │ │ │ ├── ViewController.swift │ │ │ │ │ └── apollo_config-Bridging-Header.h │ │ │ │ │ ├── apollo_configTests │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── apollo_configTests.swift │ │ │ │ │ └── apollo_configUITests │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── apollo_configUITests.swift │ │ │ └── wifi_config_dct.h │ │ ├── appliance │ │ │ ├── appliance.c │ │ │ └── appliance.mk │ │ ├── audio_loopback │ │ │ ├── audio_loopback.c │ │ │ ├── audio_loopback.mk │ │ │ └── wifi_config_dct.h │ │ ├── audio_player │ │ │ ├── audio_player.c │ │ │ ├── audio_player.mk │ │ │ ├── audio_player_config.c │ │ │ ├── audio_player_config.h │ │ │ ├── audio_player_dct.c │ │ │ ├── audio_player_dct.h │ │ │ ├── audio_player_tracex.c │ │ │ ├── audio_player_tracex.h │ │ │ └── wifi_config_dct.h │ │ ├── aws │ │ │ ├── greengrass │ │ │ │ ├── publisher │ │ │ │ │ ├── publisher.c │ │ │ │ │ ├── publisher.mk │ │ │ │ │ └── wifi_config_dct.h │ │ │ │ └── subscriber │ │ │ │ │ ├── subscriber.c │ │ │ │ │ ├── subscriber.mk │ │ │ │ │ └── wifi_config_dct.h │ │ │ └── iot │ │ │ │ ├── pub_sub │ │ │ │ ├── publisher │ │ │ │ │ ├── publisher.c │ │ │ │ │ ├── publisher.mk │ │ │ │ │ └── wifi_config_dct.h │ │ │ │ └── subscriber │ │ │ │ │ ├── subscriber.c │ │ │ │ │ ├── subscriber.mk │ │ │ │ │ └── wifi_config_dct.h │ │ │ │ └── shadow │ │ │ │ ├── smart_device │ │ │ │ ├── device.c │ │ │ │ ├── smart_device.mk │ │ │ │ └── wifi_config_dct.h │ │ │ │ ├── temperature_remote_sensor │ │ │ │ ├── remote_sensor.c │ │ │ │ ├── temperature_remote_sensor.mk │ │ │ │ └── wifi_config_dct.h │ │ │ │ └── thing_shadow │ │ │ │ ├── device_config.c │ │ │ │ ├── device_config.h │ │ │ │ ├── device_dct_config.c │ │ │ │ ├── shadow.c │ │ │ │ ├── thing_shadow.mk │ │ │ │ └── wifi_config_dct.h │ │ ├── azure_iot_hub │ │ │ ├── azure_iot_hub.c │ │ │ └── azure_iot_hub.mk │ │ ├── ble_wifi_introducer │ │ │ ├── ble_wifi_introducer.c │ │ │ ├── ble_wifi_introducer.h │ │ │ ├── ble_wifi_introducer.mk │ │ │ ├── bt_config_dct.h │ │ │ ├── peerapps │ │ │ │ └── iOS │ │ │ │ │ └── WicedWiFiIntroducer │ │ │ │ │ ├── Storyboard.storyboard │ │ │ │ │ ├── WicedWiFiIntroducer.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── WicedWiFiIntroducer │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ │ │ └── Icon-Small@3x.png │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-Setup_Fail.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Icon-Setup_Fail.png │ │ │ │ │ │ ├── Icon-Setup_Success.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Icon-Setup_Success.png │ │ │ │ │ │ ├── Scan_Device_Circles_Illo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Scan_Device_Circles_Illo.png │ │ │ │ │ │ ├── Scan_Device_Illo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Scan_Device_Illo.png │ │ │ │ │ │ ├── Splash-WirelessIntroText.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Splash-WirelessIntroText.png │ │ │ │ │ │ ├── SplashLogo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── SplashLogo.png │ │ │ │ │ │ ├── SplashLogo_text.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── SplashLogo_text.png │ │ │ │ │ │ ├── UISwitch-Off.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── UISwitch-Off.png │ │ │ │ │ │ ├── Untitled.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Untitled-3.png │ │ │ │ │ │ ├── caLPgXe.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── caLPgXe.jpg │ │ │ │ │ │ ├── icon-bluetooth.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── icon-bluetooth.png │ │ │ │ │ │ ├── wifi.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── wifi.png │ │ │ │ │ │ └── wifi1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── wifi1.png │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── CentralManager.swift │ │ │ │ │ ├── DataManager.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Logger.swift │ │ │ │ │ ├── Peripheral.swift │ │ │ │ │ ├── SSIDNetwork.h │ │ │ │ │ ├── SSIDNetwork.m │ │ │ │ │ ├── ScanningConfigureViewController.swift │ │ │ │ │ ├── SetUpFailure.swift │ │ │ │ │ ├── SetUpFailureViewController.swift │ │ │ │ │ ├── SetUpSuccessViewController.swift │ │ │ │ │ ├── ViewController.swift │ │ │ │ │ ├── ViewController1.swift │ │ │ │ │ ├── WicedWiFiIntroducer-Bridging-Header.h │ │ │ │ │ ├── WifiIntoducer.xcdatamodeld │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── WifiIntoducer.xcdatamodel │ │ │ │ │ │ │ └── contents │ │ │ │ │ └── WirelessSetupViewController.swift │ │ │ │ │ ├── WicedWiFiIntroducerTests │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── WicedWiFiIntroducerTests.swift │ │ │ │ │ ├── WicedWiFiIntroducerUITests │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── WicedWiFiIntroducerUITests.swift │ │ │ │ │ ├── caLPgXe.jpg │ │ │ │ │ ├── icon_bluetooth.png │ │ │ │ │ ├── wifi.png │ │ │ │ │ └── wifi1.png │ │ │ ├── wiced_bt_cfg.c │ │ │ └── wifi_config_dct.h │ │ ├── bt_internet_gateway │ │ │ ├── bt_http_proxy_service │ │ │ │ ├── hps_client_keypad │ │ │ │ │ ├── hps_client_keypad.c │ │ │ │ │ ├── hps_client_keypad.h │ │ │ │ │ ├── hps_client_keypad.mk │ │ │ │ │ ├── hps_client_keypad_dct.c │ │ │ │ │ ├── hps_client_keypad_dct.h │ │ │ │ │ └── wiced_bt_config.c │ │ │ │ └── hps_server │ │ │ │ │ ├── hps_server.c │ │ │ │ │ ├── hps_server.mk │ │ │ │ │ ├── wiced_bt_config.c │ │ │ │ │ └── wifi_config_dct.h │ │ │ ├── mesh_network │ │ │ │ ├── cloud_config.h │ │ │ │ ├── mesh.h │ │ │ │ ├── mesh_dct.c │ │ │ │ ├── mesh_dct.h │ │ │ │ ├── mesh_mqtt.c │ │ │ │ ├── mesh_network.c │ │ │ │ ├── mesh_network.mk │ │ │ │ ├── mesh_uri.c │ │ │ │ ├── mesh_uri.h │ │ │ │ ├── peerapps │ │ │ │ │ └── Android │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── wiced_bt_cfg.c │ │ │ │ └── wifi_config_dct.h │ │ │ └── restful_smart_server │ │ │ │ ├── restful_smart_server.mk │ │ │ │ ├── restful_smart_server_app.c │ │ │ │ ├── wiced_bt_cfg.c │ │ │ │ └── wifi_config_dct.h │ │ ├── capsense │ │ │ ├── capsense.c │ │ │ └── capsense.mk │ │ ├── coap_exosite │ │ │ ├── coap_exosite.c │ │ │ ├── coap_exosite.mk │ │ │ └── wifi_config_dct.h │ │ ├── dual_hf_a2dp │ │ │ ├── app_button_interface.h │ │ │ ├── app_dct.c │ │ │ ├── app_dct.h │ │ │ ├── app_keypad.c │ │ │ ├── bluetooth_a2dp.c │ │ │ ├── bluetooth_a2dp.h │ │ │ ├── bluetooth_audio.c │ │ │ ├── bluetooth_audio.h │ │ │ ├── bluetooth_audio_common.c │ │ │ ├── bluetooth_audio_common_wiced_hci.c │ │ │ ├── bluetooth_audio_decoder.c │ │ │ ├── bluetooth_audio_player.c │ │ │ ├── bluetooth_audio_recorder.c │ │ │ ├── bluetooth_dm.c │ │ │ ├── bluetooth_dm.h │ │ │ ├── bluetooth_hfp.c │ │ │ ├── bluetooth_hfp.h │ │ │ ├── bluetooth_nv.c │ │ │ ├── bluetooth_nv.h │ │ │ ├── bt_config_dct.h │ │ │ ├── dual_a2dp_hfp_audio.c │ │ │ ├── dual_a2dp_hfp_audio.h │ │ │ ├── dual_hf_a2dp.mk │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ └── mem_pool │ │ │ │ ├── mem_pool.c │ │ │ │ └── mem_pool.h │ │ ├── headset │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── headset.c │ │ │ ├── headset.h │ │ │ ├── headset.mk │ │ │ ├── headset_button.c │ │ │ ├── headset_button.h │ │ │ ├── headset_config.c │ │ │ ├── headset_config.h │ │ │ ├── headset_dct.c │ │ │ ├── headset_dct.h │ │ │ ├── headset_upnpavrender.c │ │ │ ├── headset_upnpavrender.h │ │ │ ├── headset_wlan.c │ │ │ ├── headset_wlan.h │ │ │ └── wifi_config_dct.h │ │ ├── iot_gateway │ │ │ ├── cloudconfig.h │ │ │ ├── gateway.c │ │ │ ├── gateway.h │ │ │ ├── gateway_coap.c │ │ │ ├── gateway_dct.c │ │ │ ├── gateway_http.c │ │ │ ├── httpproxy.h │ │ │ ├── iot_gateway.mk │ │ │ ├── peerapps │ │ │ │ └── Android │ │ │ │ │ └── APK │ │ │ │ │ └── IotCompanion.apk │ │ │ └── wiced_bt_cfg.c │ │ ├── quicksilver │ │ │ ├── factory_reset_dct.c │ │ │ ├── mfg │ │ │ │ ├── 0001.txt │ │ │ │ ├── 0002.txt │ │ │ │ └── README.txt │ │ │ ├── quicksilver.c │ │ │ ├── quicksilver.h │ │ │ ├── quicksilver.mk │ │ │ ├── quicksilver_dct.c │ │ │ ├── quicksilver_dct.h │ │ │ └── wifi_config_dct.h │ │ ├── temp_control │ │ │ ├── factory_reset_dct.c │ │ │ ├── mfg │ │ │ │ ├── 0001.txt │ │ │ │ ├── 0002.txt │ │ │ │ └── README.txt │ │ │ ├── temp_control.c │ │ │ ├── temp_control.h │ │ │ ├── temp_control.mk │ │ │ ├── temp_control_dct.c │ │ │ ├── temp_control_dct.h │ │ │ └── wifi_config_dct.h │ │ └── wifi_onboarding │ │ │ ├── peerapps │ │ │ └── iOS │ │ │ │ └── WicedWiFiOnboarding │ │ │ │ ├── .DS_Store │ │ │ │ ├── Podfile │ │ │ │ ├── Podfile.lock │ │ │ │ ├── Pods │ │ │ │ ├── Alamofire │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── Source │ │ │ │ │ │ ├── AFError.swift │ │ │ │ │ │ ├── Alamofire.swift │ │ │ │ │ │ ├── DispatchQueue+Alamofire.swift │ │ │ │ │ │ ├── MultipartFormData.swift │ │ │ │ │ │ ├── NetworkReachabilityManager.swift │ │ │ │ │ │ ├── Notifications.swift │ │ │ │ │ │ ├── ParameterEncoding.swift │ │ │ │ │ │ ├── Request.swift │ │ │ │ │ │ ├── Response.swift │ │ │ │ │ │ ├── ResponseSerialization.swift │ │ │ │ │ │ ├── Result.swift │ │ │ │ │ │ ├── ServerTrustPolicy.swift │ │ │ │ │ │ ├── SessionDelegate.swift │ │ │ │ │ │ ├── SessionManager.swift │ │ │ │ │ │ ├── TaskDelegate.swift │ │ │ │ │ │ ├── Timeline.swift │ │ │ │ │ │ └── Validation.swift │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Pods.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── pradeepg.xcuserdatad │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Alamofire.xcscheme │ │ │ │ │ │ ├── Pods-WicedWiFiOnboarding.xcscheme │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── Target Support Files │ │ │ │ │ ├── Alamofire │ │ │ │ │ ├── Alamofire-dummy.m │ │ │ │ │ ├── Alamofire-prefix.pch │ │ │ │ │ ├── Alamofire-umbrella.h │ │ │ │ │ ├── Alamofire.modulemap │ │ │ │ │ ├── Alamofire.xcconfig │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Pods-WicedWiFiOnboarding │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Pods-WicedWiFiOnboarding-acknowledgements.markdown │ │ │ │ │ ├── Pods-WicedWiFiOnboarding-acknowledgements.plist │ │ │ │ │ ├── Pods-WicedWiFiOnboarding-dummy.m │ │ │ │ │ ├── Pods-WicedWiFiOnboarding-frameworks.sh │ │ │ │ │ ├── Pods-WicedWiFiOnboarding-resources.sh │ │ │ │ │ ├── Pods-WicedWiFiOnboarding-umbrella.h │ │ │ │ │ ├── Pods-WicedWiFiOnboarding.debug.xcconfig │ │ │ │ │ ├── Pods-WicedWiFiOnboarding.modulemap │ │ │ │ │ └── Pods-WicedWiFiOnboarding.release.xcconfig │ │ │ │ ├── WicedWiFiOnboarding.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── pradeepg.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ └── pradeepg.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── WicedWiFiOnboarding.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ ├── WicedWiFiOnboarding.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── pradeepg.xcuserdatad │ │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ │ └── xcdebugger │ │ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ │ ├── WicedWiFiOnboarding │ │ │ │ ├── .DS_Store │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── AppIcon24x24@2x-1.png │ │ │ │ │ │ ├── AppIcon24x24@2x.png │ │ │ │ │ │ ├── AppIcon27.5x27.5@2x.png │ │ │ │ │ │ ├── AppIcon40x40@2x-1.png │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ │ │ ├── WICED_Full_Color@2x-2.png │ │ │ │ │ │ ├── WICED_Full_Color@3x-2.png │ │ │ │ │ │ └── WICED_Full_Color@3x-3.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-Setup_Fail.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Icon-Setup_Fail.png │ │ │ │ │ ├── Icon-Setup_Success.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Icon-Setup_Success.png │ │ │ │ │ ├── Scan_Device_Circles_Illo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Scan_Device_Circles_Illo.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ └── cross-512.png │ │ │ │ │ ├── Scan_Device_Illo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Scan_Device_Illo.png │ │ │ │ │ ├── Splash-WirelessIntroText.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Splash-WirelessIntroText.png │ │ │ │ │ ├── SplashLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── WICED_White.png │ │ │ │ │ │ ├── WICED_White@2x.png │ │ │ │ │ │ └── WICED_White@3x.png │ │ │ │ │ ├── SplashLogo_text.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── SplashLogo_text.png │ │ │ │ │ │ ├── SplashLogo_text@2x.png │ │ │ │ │ │ └── SplashLogo_text@3x.png │ │ │ │ │ ├── UISwitch-Off.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── UISwitch-Off.png │ │ │ │ │ ├── Untitled.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Untitled-3.png │ │ │ │ │ ├── check.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── check.png │ │ │ │ │ ├── cross-512.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cross-512.png │ │ │ │ │ ├── wifi1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── wi-fi-png-8.png │ │ │ │ │ ├── wifi_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── a18264bcc6cf96d750f732ba2362712f.png │ │ │ │ │ └── wlan-icon-27676.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── a26c4636dc3fc783b8592276c3ac3c4a.png │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── CentralManager.swift │ │ │ │ ├── DataManager.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Logger.swift │ │ │ │ ├── NetworkConnection.swift │ │ │ │ ├── Peripheral.swift │ │ │ │ ├── RestHandler.swift │ │ │ │ ├── SSIDNetwork.h │ │ │ │ ├── SSIDNetwork.m │ │ │ │ ├── ScanningConfigureViewController.swift │ │ │ │ ├── SetDeviceViewController.swift │ │ │ │ ├── SetUpFailure.swift │ │ │ │ ├── SetUpFailureViewController.swift │ │ │ │ ├── SetUpSuccessViewController.swift │ │ │ │ ├── ViewController.swift │ │ │ │ ├── ViewController1.swift │ │ │ │ ├── WicedWiFiIntroducer-Bridging-Header.h │ │ │ │ └── WirelessSetupViewController.swift │ │ │ │ ├── WicedWiFiOnboardingTests │ │ │ │ ├── Info.plist │ │ │ │ └── WicedWiFiOnboardingTests.swift │ │ │ │ ├── WicedWiFiOnboardingUITests │ │ │ │ ├── Info.plist │ │ │ │ └── WicedWiFiOnboardingUITests.swift │ │ │ │ ├── WicedWifiOnboarding.h │ │ │ │ └── certificate.der │ │ │ ├── wifi_onboarding.c │ │ │ └── wifi_onboarding.mk │ ├── snip │ │ ├── README.txt │ │ ├── amqp │ │ │ ├── amqpsv0_9 │ │ │ │ ├── amqpsv0_9.c │ │ │ │ └── amqpsv0_9.mk │ │ │ ├── amqpv0_9 │ │ │ │ ├── amqpv0_9.c │ │ │ │ └── amqpv0_9.mk │ │ │ └── amqpv1_0 │ │ │ │ ├── amqpv1_0.c │ │ │ │ └── amqpv1_0.mk │ │ ├── ap_clients_rssi │ │ │ ├── ap_clients_rssi.c │ │ │ └── ap_clients_rssi.mk │ │ ├── apsta │ │ │ ├── apsta.c │ │ │ ├── apsta.mk │ │ │ └── wifi_config_dct.h │ │ ├── avs_authorization │ │ │ ├── avs_authorization.c │ │ │ ├── avs_authorization.mk │ │ │ └── wifi_config_dct.h │ │ ├── bluetooth │ │ │ ├── ble_hello_sensor │ │ │ │ ├── ble_hello_sensor.c │ │ │ │ ├── ble_hello_sensor.h │ │ │ │ ├── ble_hello_sensor.mk │ │ │ │ └── wiced_bt_cfg.c │ │ │ ├── ble_proximity_reporter │ │ │ │ ├── ble_proximity_reporter.c │ │ │ │ ├── ble_proximity_reporter.h │ │ │ │ ├── ble_proximity_reporter.mk │ │ │ │ ├── wiced_bt_cfg.c │ │ │ │ ├── wiced_bt_gatt_db.c │ │ │ │ └── wiced_bt_gatt_db.h │ │ │ ├── bt_dualmode_server │ │ │ │ ├── ble_proximity_reporter.c │ │ │ │ ├── bt_config_dct.h │ │ │ │ ├── bt_dualmode_server.c │ │ │ │ ├── bt_dualmode_server.mk │ │ │ │ ├── bt_rfcomm_server.c │ │ │ │ ├── bt_rfcomm_server.h │ │ │ │ ├── wiced_bt_cfg_dual_mode.c │ │ │ │ ├── wiced_bt_gatt_db.c │ │ │ │ ├── wiced_bt_gatt_db.h │ │ │ │ └── wiced_bt_sdp_db.c │ │ │ ├── gatt_db │ │ │ │ ├── ble_gatt_db.c │ │ │ │ ├── gatt_db.mk │ │ │ │ └── wiced_bt_cfg.c │ │ │ ├── ibeacon │ │ │ │ ├── ibeacon.c │ │ │ │ ├── ibeacon.h │ │ │ │ ├── ibeacon.mk │ │ │ │ └── wiced_bt_cfg.c │ │ │ └── serial_gatt_service │ │ │ │ ├── serial_gatt_service.c │ │ │ │ ├── serial_gatt_service.mk │ │ │ │ ├── wiced_bt_cfg.c │ │ │ │ ├── wiced_bt_gatt_db.c │ │ │ │ └── wiced_bt_gatt_db.h │ │ ├── bluetooth_audio │ │ │ ├── bluetooth_audio.c │ │ │ ├── bluetooth_audio.h │ │ │ ├── bluetooth_audio.mk │ │ │ ├── bluetooth_audio_common_wiced_hci.c │ │ │ ├── bluetooth_audio_decoder.c │ │ │ ├── bluetooth_audio_nv.c │ │ │ ├── bluetooth_audio_nv.h │ │ │ ├── bluetooth_audio_player.c │ │ │ ├── bluetooth_audio_pll_tuning.c │ │ │ ├── bluetooth_audio_pll_tuning.h │ │ │ ├── bt_config_dct.h │ │ │ └── mem_pool │ │ │ │ ├── mem_pool.c │ │ │ │ └── mem_pool.h │ │ ├── coap_app │ │ │ ├── coap_app.c │ │ │ ├── coap_app.h │ │ │ ├── coap_app.mk │ │ │ └── wifi_config_dct.h │ │ ├── config_mode │ │ │ ├── config_mode.c │ │ │ ├── config_mode.mk │ │ │ ├── config_mode_dct.c │ │ │ └── config_mode_dct.h │ │ ├── crypto │ │ │ ├── crypto.c │ │ │ └── crypto.mk │ │ ├── custom_ie │ │ │ ├── custom_ie.c │ │ │ ├── custom_ie.mk │ │ │ └── wifi_config_dct.h │ │ ├── dct_read_write │ │ │ ├── dct_read_write.c │ │ │ ├── dct_read_write.mk │ │ │ ├── dct_read_write_dct.c │ │ │ └── dct_read_write_dct.h │ │ ├── email │ │ │ ├── email.c │ │ │ └── email.mk │ │ ├── flac │ │ │ ├── flac.mk │ │ │ ├── flac_app_dct.c │ │ │ ├── flac_app_dct.h │ │ │ ├── flac_config.c │ │ │ ├── flac_config.h │ │ │ ├── flac_test.c │ │ │ ├── flac_test.h │ │ │ ├── wiced_flac_interface.c │ │ │ ├── wiced_flac_interface.h │ │ │ ├── wiced_flac_internal.h │ │ │ └── wifi_config_dct.h │ │ ├── gpio │ │ │ ├── gpio.c │ │ │ └── gpio.mk │ │ ├── graphics │ │ │ ├── audio_display │ │ │ │ ├── audio_display.mk │ │ │ │ └── display_application.c │ │ │ ├── graphicstest │ │ │ │ ├── graphicstest.c │ │ │ │ └── graphicstest.mk │ │ │ ├── hello │ │ │ │ ├── hello.c │ │ │ │ └── hello.mk │ │ │ ├── uguitest │ │ │ │ ├── README_1ST.txt │ │ │ │ ├── display_cfg_digole.h │ │ │ │ ├── img_mono.h │ │ │ │ ├── img_rgb332.h │ │ │ │ ├── img_rgb332_cover.h │ │ │ │ ├── img_rgb565.h │ │ │ │ ├── img_rgb888.h │ │ │ │ ├── resources │ │ │ │ │ ├── convert_img.pl │ │ │ │ │ ├── demo_cover.png │ │ │ │ │ ├── demo_cover2.png │ │ │ │ │ └── readme.txt │ │ │ │ ├── trig.c │ │ │ │ ├── trig.h │ │ │ │ ├── u8g_font_bar_5x20.h │ │ │ │ ├── u8g_font_unifont_76.h │ │ │ │ ├── u8g_font_walkman.h │ │ │ │ ├── uguitest.c │ │ │ │ └── uguitest.mk │ │ │ └── uguitest2 │ │ │ │ ├── README_1ST.txt │ │ │ │ ├── display_cfg_ssd1306.h │ │ │ │ ├── uguitest2.c │ │ │ │ └── uguitest2.mk │ │ ├── gspi_slave │ │ │ ├── gspi_slave.mk │ │ │ └── gspi_slave_app.c │ │ ├── http_server_sent_events │ │ │ ├── http_server_sent_events.c │ │ │ ├── http_server_sent_events.mk │ │ │ └── wifi_config_dct.h │ │ ├── httpbin_org │ │ │ ├── httpbin_org.c │ │ │ └── httpbin_org.mk │ │ ├── https_server │ │ │ ├── https_server.c │ │ │ ├── https_server.h │ │ │ └── https_server.mk │ │ ├── keep_alive │ │ │ ├── keep_alive.c │ │ │ └── keep_alive.mk │ │ ├── led_example │ │ │ ├── led_example.c │ │ │ └── led_example.mk │ │ ├── link_status │ │ │ ├── link_status.c │ │ │ └── link_status.mk │ │ ├── multi_image_0 │ │ │ ├── README.txt │ │ │ ├── app_0.c │ │ │ ├── app_0.h │ │ │ ├── app_0_dct.h │ │ │ ├── common_dct.c │ │ │ ├── common_dct.h │ │ │ ├── common_info.h │ │ │ ├── multi_image_0.mk │ │ │ └── wifi_config_dct.h │ │ ├── multi_image_1 │ │ │ ├── app_1.c │ │ │ ├── app_1.h │ │ │ ├── app_1_dct.h │ │ │ └── multi_image_1.mk │ │ ├── ota2_btmcu_example │ │ │ ├── ota2_btmcu_example.mk │ │ │ ├── ota2_test.c │ │ │ ├── ota2_test.h │ │ │ ├── ota2_test_dct.c │ │ │ ├── ota2_test_dct.h │ │ │ └── wifi_config_dct.h │ │ ├── ota2_example │ │ │ ├── ota2_example.mk │ │ │ ├── ota2_test.c │ │ │ ├── ota2_test.h │ │ │ ├── ota2_test_config.c │ │ │ ├── ota2_test_config.h │ │ │ ├── ota2_test_dct.c │ │ │ ├── ota2_test_dct.h │ │ │ └── wifi_config_dct.h │ │ ├── ota2_extract │ │ │ ├── ota2_extract.c │ │ │ └── ota2_extract.mk │ │ ├── ota_fr │ │ │ ├── ota_fr.c │ │ │ └── ota_fr.mk │ │ ├── ota_fr_no_buttons │ │ │ ├── ota_fr_no_buttons.c │ │ │ └── ota_fr_no_buttons.mk │ │ ├── packet_filter │ │ │ ├── packet_filter.c │ │ │ └── packet_filter.mk │ │ ├── ping_deepsleep │ │ │ ├── ping_deepsleep.c │ │ │ └── ping_deepsleep.mk │ │ ├── ping_ethernet │ │ │ ├── ping_ethernet.c │ │ │ ├── ping_ethernet.h │ │ │ └── ping_ethernet.mk │ │ ├── ping_powersave │ │ │ ├── ping_powersave.c │ │ │ └── ping_powersave.mk │ │ ├── ping_webserver │ │ │ ├── ping_webserver.c │ │ │ ├── ping_webserver.h │ │ │ ├── ping_webserver.mk │ │ │ ├── ping_webserver_dct.c │ │ │ └── ping_webserver_dct.h │ │ ├── pno │ │ │ ├── pno.c │ │ │ ├── pno.mk │ │ │ └── wifi_config_dct.h │ │ ├── power_management │ │ │ ├── power_management.c │ │ │ └── power_management.mk │ │ ├── powercycle │ │ │ ├── powercycle.c │ │ │ └── powercycle.mk │ │ ├── resource_read │ │ │ ├── resource_read.c │ │ │ └── resource_read.mk │ │ ├── rfmon │ │ │ ├── bin │ │ │ │ ├── README_plotting.txt │ │ │ │ ├── create_metadata.sh │ │ │ │ ├── create_plot.sh │ │ │ │ └── renumber.sh │ │ │ ├── rfmon.c │ │ │ ├── rfmon.mk │ │ │ └── wifi_config_dct.h │ │ ├── rsa_pkcs1 │ │ │ ├── key.txt │ │ │ ├── key_private.h │ │ │ ├── key_public.h │ │ │ ├── message.h │ │ │ ├── readme.txt │ │ │ ├── rsa_pkcs1.c │ │ │ └── rsa_pkcs1.mk │ │ ├── scan │ │ │ ├── scan.c │ │ │ └── scan.mk │ │ ├── sd_filesystem │ │ │ ├── sd_filesystem.c │ │ │ └── sd_filesystem.mk │ │ ├── secure_mqtt │ │ │ ├── secure_mqtt.c │ │ │ └── secure_mqtt.mk │ │ ├── security_types │ │ │ ├── security_types.c │ │ │ └── security_types.mk │ │ ├── service_discovery │ │ │ ├── service_discovery.c │ │ │ ├── service_discovery.mk │ │ │ └── wifi_config_dct.h │ │ ├── sntp_get_time │ │ │ ├── sntp_get_time.c │ │ │ └── sntp_get_time.mk │ │ ├── ssdp │ │ │ ├── ssdp.mk │ │ │ ├── ssdp_app.c │ │ │ ├── ssdp_app.h │ │ │ ├── ssdp_app_config.c │ │ │ ├── ssdp_app_config.h │ │ │ ├── ssdp_app_dct.c │ │ │ ├── ssdp_app_dct.h │ │ │ └── wifi_config_dct.h │ │ ├── stack_overflow │ │ │ ├── stack_overflow.c │ │ │ └── stack_overflow.mk │ │ ├── stdio │ │ │ ├── stdio.c │ │ │ └── stdio.mk │ │ ├── tcp_client │ │ │ ├── tcp_client.c │ │ │ ├── tcp_client.mk │ │ │ └── tcp_echo_server.py │ │ ├── tcp_client_powersave │ │ │ ├── tcp_client_powersave.c │ │ │ ├── tcp_client_powersave.mk │ │ │ └── tcp_echo_server.py │ │ ├── tcp_server │ │ │ ├── tcp_client.py │ │ │ ├── tcp_server.c │ │ │ └── tcp_server.mk │ │ ├── tcp_server_async │ │ │ ├── tcp_client.py │ │ │ ├── tcp_server_async.c │ │ │ ├── tcp_server_async.mk │ │ │ └── wifi_config_dct.h │ │ ├── tftp │ │ │ ├── tftp.c │ │ │ ├── tftp.mk │ │ │ └── wifi_config_dct.h │ │ ├── thread_monitor │ │ │ ├── thread_monitor.c │ │ │ └── thread_monitor.mk │ │ ├── uart │ │ │ ├── uart.c │ │ │ └── uart.mk │ │ ├── udp_receive │ │ │ ├── udp_receive.c │ │ │ ├── udp_receive.mk │ │ │ ├── udp_transmit.py │ │ │ └── wifi_config_dct.h │ │ ├── udp_transmit │ │ │ ├── udp_echo_server.py │ │ │ ├── udp_transmit.c │ │ │ ├── udp_transmit.mk │ │ │ └── wifi_config_dct.h │ │ ├── usbx_usb_device │ │ │ ├── README.txt │ │ │ ├── usb_device_cdc_acm_read_write │ │ │ │ ├── usb_device_cdc_acm_read_write.c │ │ │ │ ├── usb_device_cdc_acm_read_write.h │ │ │ │ └── usb_device_cdc_acm_read_write.mk │ │ │ └── usb_device_hid_keyboard │ │ │ │ ├── usb_device_hid_keyboard.c │ │ │ │ ├── usb_device_hid_keyboard.h │ │ │ │ └── usb_device_hid_keyboard.mk │ │ ├── usbx_usb_host │ │ │ ├── README.txt │ │ │ ├── usb_host_cdc_acm_read_write │ │ │ │ ├── usb_host_cdc_acm_read_write.c │ │ │ │ ├── usb_host_cdc_acm_read_write.h │ │ │ │ └── usb_host_cdc_acm_read_write.mk │ │ │ ├── usb_host_hid_keyboard │ │ │ │ ├── usb_host_hid_keyboard.c │ │ │ │ ├── usb_host_hid_keyboard.h │ │ │ │ └── usb_host_hid_keyboard.mk │ │ │ ├── usb_host_hid_mouse │ │ │ │ ├── usb_host_hid_mouse.c │ │ │ │ ├── usb_host_hid_mouse.h │ │ │ │ └── usb_host_hid_mouse.mk │ │ │ ├── usb_host_pl2303_read_write │ │ │ │ ├── usb_host_pl2303_read_write.c │ │ │ │ ├── usb_host_pl2303_read_write.h │ │ │ │ └── usb_host_pl2303_read_write.mk │ │ │ └── usb_host_storage_read_write │ │ │ │ ├── usb_host_storage_read_write.c │ │ │ │ ├── usb_host_storage_read_write.h │ │ │ │ └── usb_host_storage_read_write.mk │ │ ├── websocket_client │ │ │ ├── websocket_client.c │ │ │ └── websocket_client.mk │ │ ├── websocket_server │ │ │ ├── websocket_server.c │ │ │ └── websocket_server.mk │ │ ├── wifi_connection_manager │ │ │ ├── app_button_interface.c │ │ │ ├── app_button_interface.h │ │ │ ├── wifi_connection_manager.c │ │ │ └── wifi_connection_manager.mk │ │ ├── wifi_mesh │ │ │ ├── README_Mesh.txt │ │ │ ├── wifi_config_dct.h │ │ │ ├── wifi_mesh.c │ │ │ ├── wifi_mesh.mk │ │ │ ├── wifi_mesh_config.c │ │ │ ├── wifi_mesh_config.h │ │ │ ├── wifi_mesh_dct.c │ │ │ └── wifi_mesh_dct.h │ │ ├── wps_enrollee │ │ │ ├── wps_enrollee.c │ │ │ └── wps_enrollee.mk │ │ └── wps_registrar │ │ │ ├── wifi_config_dct.h │ │ │ ├── wps_registrar.c │ │ │ └── wps_registrar.mk │ ├── test │ │ ├── README.txt │ │ ├── apps_sleep │ │ │ ├── apps_sleep.c │ │ │ └── apps_sleep.mk │ │ ├── bt_mfg_test │ │ │ ├── bt_mfg_test.c │ │ │ └── bt_mfg_test.mk │ │ ├── console │ │ │ ├── README-Iperf.pdf │ │ │ ├── console.mk │ │ │ └── wiced_init.c │ │ ├── duktape │ │ │ ├── duktape.c │ │ │ ├── duktape.mk │ │ │ └── wifi_config_dct.h │ │ ├── entropy │ │ │ ├── chisq.c │ │ │ ├── entropy.c │ │ │ ├── entropy.mk │ │ │ ├── iso8859.c │ │ │ ├── iso8859.h │ │ │ ├── randtest.c │ │ │ └── randtest.h │ │ ├── http2 │ │ │ ├── http2.mk │ │ │ ├── http2_test.c │ │ │ └── wifi_config_dct.h │ │ ├── iperf_app │ │ │ ├── README-Iperf.pdf │ │ │ ├── iperf.c │ │ │ ├── iperf_app.mk │ │ │ └── wifi_config_dct.h │ │ ├── mfg_test │ │ │ ├── README.txt │ │ │ ├── mfg_test.h │ │ │ ├── mfg_test.mk │ │ │ └── mfg_test_init.c │ │ ├── nsh │ │ │ ├── README.txt │ │ │ ├── app_readline.h │ │ │ ├── apps │ │ │ │ ├── builtin.h │ │ │ │ ├── cle.h │ │ │ │ ├── netutils │ │ │ │ │ ├── dhcpc.h │ │ │ │ │ ├── dnsclient.h │ │ │ │ │ ├── netlib.h │ │ │ │ │ ├── telnetd.h │ │ │ │ │ ├── tftp.h │ │ │ │ │ └── webclient.h │ │ │ │ └── nsh.h │ │ │ ├── builtin.c │ │ │ ├── builtin_list.c │ │ │ ├── builtin_list.h │ │ │ ├── builtin_proto.h │ │ │ ├── cle.c │ │ │ ├── dns_gethostip.c │ │ │ ├── dns_resolver.c │ │ │ ├── dns_socket.c │ │ │ ├── exec_builtin.c │ │ │ ├── flash_eraseall │ │ │ │ └── flash_eraseall.c │ │ │ ├── i2c_bus.c │ │ │ ├── i2c_common.c │ │ │ ├── i2c_dev.c │ │ │ ├── i2c_get.c │ │ │ ├── i2c_main.c │ │ │ ├── i2c_set.c │ │ │ ├── i2c_verf.c │ │ │ ├── i2ctool.h │ │ │ ├── nsh.h │ │ │ ├── nsh.mk │ │ │ ├── nsh_builtin.c │ │ │ ├── nsh_command.c │ │ │ ├── nsh_console.c │ │ │ ├── nsh_console.h │ │ │ ├── nsh_consolemain.c │ │ │ ├── nsh_dbgcmds.c │ │ │ ├── nsh_ddcmd.c │ │ │ ├── nsh_dhcpd.c │ │ │ ├── nsh_envcmds.c │ │ │ ├── nsh_fscmds.c │ │ │ ├── nsh_init.c │ │ │ ├── nsh_main.c │ │ │ ├── nsh_mmcmds.c │ │ │ ├── nsh_mntcmds.c │ │ │ ├── nsh_netcmds.c │ │ │ ├── nsh_netinit.c │ │ │ ├── nsh_parse.c │ │ │ ├── nsh_proccmds.c │ │ │ ├── nsh_routecmds.c │ │ │ ├── nsh_script.c │ │ │ ├── nsh_session.c │ │ │ ├── nsh_smartfs_init.c │ │ │ ├── nsh_telnetd.c │ │ │ ├── nsh_test.c │ │ │ ├── nxplayer.h │ │ │ ├── nxplayer │ │ │ │ ├── README.txt │ │ │ │ ├── nxplayer.c │ │ │ │ └── nxplayer_main.c │ │ │ ├── ostest │ │ │ │ ├── aio.c │ │ │ │ ├── barrier.c │ │ │ │ ├── cancel.c │ │ │ │ ├── cond.c │ │ │ │ ├── dev_null.c │ │ │ │ ├── fpu.c │ │ │ │ ├── mqueue.c │ │ │ │ ├── mutex.c │ │ │ │ ├── nsem.c │ │ │ │ ├── ostest.h │ │ │ │ ├── ostest_main.c │ │ │ │ ├── posixtimer.c │ │ │ │ ├── prioinherit.c │ │ │ │ ├── restart.c │ │ │ │ ├── rmutex.c │ │ │ │ ├── roundrobin.c │ │ │ │ ├── sem.c │ │ │ │ ├── semtimed.c │ │ │ │ ├── sighand.c │ │ │ │ ├── timedmqueue.c │ │ │ │ ├── timedwait.c │ │ │ │ ├── vfork.c │ │ │ │ └── waitpid.c │ │ │ ├── readline.c │ │ │ ├── readline.h │ │ │ ├── readline_common.c │ │ │ ├── std_readline.c │ │ │ ├── telnetd.h │ │ │ ├── telnetd_daemon.c │ │ │ ├── telnetd_driver.c │ │ │ └── usb_host_main.c │ │ ├── powersave │ │ │ ├── powersave.c │ │ │ └── powersave.mk │ │ └── sigma_dut │ │ │ ├── dut_ca_scripts │ │ │ ├── dut_ca.py │ │ │ └── init_dut_ca.sh │ │ │ ├── sigma_dut.mk │ │ │ ├── sigma_dut_readme.pdf │ │ │ ├── wiced_init.c │ │ │ ├── wifi │ │ │ ├── wifi.c │ │ │ └── wifi.h │ │ │ └── wifi_cert │ │ │ ├── FreeRTOS_wifi_cert_ping.c │ │ │ ├── ThreadX_wifi_cert_ping.c │ │ │ ├── compat.h │ │ │ ├── wifi_cert_commands.c │ │ │ ├── wifi_cert_commands.h │ │ │ ├── wifi_cert_ping.h │ │ │ ├── wifi_cert_thread.c │ │ │ ├── wifi_cert_traffic_stream.c │ │ │ └── wifi_cert_traffic_stream.h │ ├── waf │ │ ├── README.txt │ │ ├── bootloader │ │ │ ├── bootloader.c │ │ │ └── bootloader.mk │ │ ├── ota2_bootloader │ │ │ ├── ota2_bootloader.c │ │ │ └── ota2_bootloader.mk │ │ ├── ota2_bt_service_app │ │ │ ├── ota2_bt_service_app.mk │ │ │ ├── ota_firmware_upgrade.c │ │ │ └── wiced_bt_cfg.c │ │ ├── ota2_btmcu_bootloader │ │ │ ├── ota2_btmcu_bootloader.c │ │ │ └── ota2_btmcu_bootloader.mk │ │ ├── ota2_failsafe │ │ │ ├── ota2_failsafe.c │ │ │ └── ota2_failsafe.mk │ │ ├── sflash_write │ │ │ ├── sflash_write.c │ │ │ ├── sflash_write.mk │ │ │ └── sflash_write.tcl │ │ └── tiny_bootloader │ │ │ ├── tiny_bootloader.c │ │ │ └── tiny_bootloader.mk │ └── wwd │ │ ├── README.txt │ │ ├── appliance │ │ ├── AP_content.c │ │ ├── FreeRTOS_LwIP_appliance.c │ │ ├── FreeRTOS_LwIP_dhcp_server.c │ │ ├── FreeRTOS_LwIP_dns_server.c │ │ ├── FreeRTOS_LwIP_web_server.c │ │ ├── STA_content.c │ │ ├── appliance.h │ │ ├── appliance.mk │ │ ├── appliance_wps.c │ │ ├── brcmlogos.c │ │ ├── brcmlogos.h │ │ ├── icons.c │ │ ├── icons.h │ │ ├── server │ │ │ ├── favicon.ico │ │ │ ├── report_server.py │ │ │ └── webserver.py │ │ ├── web_server.h │ │ └── web_server_common.c │ │ ├── canned_send │ │ ├── NoOS_canned_send.c │ │ ├── NoOS_canned_send.h │ │ └── canned_send.mk │ │ ├── ping │ │ ├── EMBOS_LwIP_Ping.c │ │ ├── FreeRTOS_LwIP_Ping.c │ │ ├── ThreadX_NetX_Duo_Ping.c │ │ ├── ThreadX_NetX_Ping.c │ │ └── ping.mk │ │ └── scan │ │ ├── FreeRTOS_LwIP_Scan.c │ │ ├── ThreadX_NetX_Duo_Scan.c │ │ ├── ThreadX_NetX_Scan.c │ │ └── scan.mk ├── generated_mac_address.txt ├── include │ ├── default_bt_config_dct.h │ ├── default_network_config_dct.h │ ├── default_p2p_config_dct.h │ ├── default_wifi_config_dct.h │ ├── wiced.h │ ├── wiced_audio.h │ ├── wiced_bluetooth_result.h │ ├── wiced_codec_if.h │ ├── wiced_constants.h │ ├── wiced_crypto.h │ ├── wiced_deep_sleep.h │ ├── wiced_defaults.h │ ├── wiced_dtls.h │ ├── wiced_easy_setup.h │ ├── wiced_filesystem.h │ ├── wiced_framework.h │ ├── wiced_low_power.h │ ├── wiced_management.h │ ├── wiced_platform.h │ ├── wiced_power_logger.h │ ├── wiced_resource.h │ ├── wiced_result.h │ ├── wiced_rtos.h │ ├── wiced_tcpip.h │ ├── wiced_time.h │ ├── wiced_tls.h │ ├── wiced_usb.h │ ├── wiced_utilities.h │ ├── wiced_wifi.h │ ├── wiced_wifi_deep_sleep.h │ └── wiced_xip.h ├── libraries │ ├── audio │ │ ├── apollo │ │ │ ├── 802_dot_1as_avb │ │ │ │ ├── 802_dot_1as_avb.mk │ │ │ │ ├── 802_dot_1as_avb_api.h │ │ │ │ └── command_console_dot1as_avb.h │ │ │ ├── apollo_bt_service │ │ │ │ ├── apollo_bt_a2dp_decoder.c │ │ │ │ ├── apollo_bt_a2dp_sink.c │ │ │ │ ├── apollo_bt_a2dp_sink_private.h │ │ │ │ ├── apollo_bt_a2dp_sink_profiling.c │ │ │ │ ├── apollo_bt_a2dp_sink_profiling.h │ │ │ │ ├── apollo_bt_main_service.c │ │ │ │ ├── apollo_bt_main_service_private.h │ │ │ │ ├── apollo_bt_nv.c │ │ │ │ ├── apollo_bt_nv.h │ │ │ │ ├── apollo_bt_remote_control.c │ │ │ │ ├── apollo_bt_remote_control_private.h │ │ │ │ ├── apollo_bt_service.h │ │ │ │ ├── apollo_bt_service.mk │ │ │ │ ├── apollo_bt_service_stub.c │ │ │ │ ├── apollo_config_gatt_server.c │ │ │ │ ├── apollo_config_gatt_server.h │ │ │ │ ├── apollo_config_gatt_server_private.h │ │ │ │ ├── bluetooth_cfg_dual_mode.c │ │ │ │ ├── bluetooth_sdp_db.c │ │ │ │ ├── mem_pool.c │ │ │ │ └── mem_pool.h │ │ │ ├── apollo_player │ │ │ │ ├── apollo_player.h │ │ │ │ └── apollo_player.mk │ │ │ ├── apollo_streamer │ │ │ │ ├── apollo_streamer.h │ │ │ │ └── apollo_streamer.mk │ │ │ ├── apollocore │ │ │ │ ├── apollo_cmd.h │ │ │ │ ├── apollo_cmd_common.h │ │ │ │ ├── apollo_cmd_sender.h │ │ │ │ ├── apollo_report.h │ │ │ │ ├── apollo_rtp_params.h │ │ │ │ ├── apollo_utils.h │ │ │ │ ├── apollo_wl_utils.h │ │ │ │ ├── apollocore.h │ │ │ │ └── apollocore.mk │ │ │ ├── audio_pll_tuner │ │ │ │ ├── audio_pll_tuner.h │ │ │ │ └── audio_pll_tuner.mk │ │ │ ├── audiopcm2 │ │ │ │ ├── audiopcm2.mk │ │ │ │ ├── audiopcm2_src.mk │ │ │ │ ├── audiopcm_api.h │ │ │ │ ├── audiopcm_tables.h │ │ │ │ ├── audiopcm_types.h │ │ │ │ ├── events.h │ │ │ │ └── globals.h │ │ │ └── audioplc2 │ │ │ │ ├── audioplc2.mk │ │ │ │ ├── audioplc2_src.mk │ │ │ │ └── src │ │ │ │ ├── AudioStreamingConcealment.h │ │ │ │ ├── AudioStreamingConcealmentDefs.h │ │ │ │ ├── audioPLCerrs.h │ │ │ │ ├── lcplc │ │ │ │ └── lcplc.h │ │ │ │ ├── music │ │ │ │ └── audioPLC.h │ │ │ │ ├── samplePLC │ │ │ │ ├── samplePLC.h │ │ │ │ ├── samplePLCdefs.h │ │ │ │ └── samplePLCtables.h │ │ │ │ ├── splib │ │ │ │ └── Bopslib.h │ │ │ │ └── typedef.h │ │ ├── audio_client │ │ │ ├── audio_client.c │ │ │ ├── audio_client.h │ │ │ ├── audio_client.mk │ │ │ ├── audio_client_aac.c │ │ │ ├── audio_client_aac.h │ │ │ ├── audio_client_aac_adts.c │ │ │ ├── audio_client_aac_m4a.c │ │ │ ├── audio_client_aac_private.h │ │ │ ├── audio_client_flac.c │ │ │ ├── audio_client_flac.h │ │ │ ├── audio_client_hls.c │ │ │ ├── audio_client_hls.h │ │ │ ├── audio_client_hls_types.h │ │ │ ├── audio_client_http.c │ │ │ ├── audio_client_mp3.c │ │ │ ├── audio_client_mp3.h │ │ │ ├── audio_client_private.h │ │ │ ├── audio_client_ts.c │ │ │ ├── audio_client_ts.h │ │ │ ├── audio_client_utils.c │ │ │ ├── audio_client_utils.h │ │ │ ├── audio_client_wav.c │ │ │ └── audio_client_wav.h │ │ ├── audio_render │ │ │ ├── audio_render.c │ │ │ ├── audio_render.h │ │ │ └── audio_render.mk │ │ ├── codec │ │ │ ├── FLAC │ │ │ │ ├── FLAC.mk │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ │ │ ├── ogg_helper.h │ │ │ │ │ │ ├── ogg_mapping.h │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ ├── protected │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ └── share │ │ │ │ │ │ ├── alloc.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── endswap.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── private.h │ │ │ │ │ │ └── safe_str.h │ │ │ │ └── libFLAC │ │ │ │ │ ├── bitmath.c │ │ │ │ │ ├── bitreader.c │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── crc.c │ │ │ │ │ ├── fixed.c │ │ │ │ │ ├── fixed_intrin_sse2.c │ │ │ │ │ ├── fixed_intrin_ssse3.c │ │ │ │ │ ├── float.c │ │ │ │ │ ├── format.c │ │ │ │ │ ├── lpc.c │ │ │ │ │ ├── lpc_intrin_avx2.c │ │ │ │ │ ├── lpc_intrin_sse.c │ │ │ │ │ ├── lpc_intrin_sse2.c │ │ │ │ │ ├── lpc_intrin_sse41.c │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── metadata_iterators.c │ │ │ │ │ ├── metadata_object.c │ │ │ │ │ ├── ogg_decoder_aspect.c │ │ │ │ │ ├── ogg_helper.c │ │ │ │ │ ├── ogg_mapping.c │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ │ ├── stream_encoder_intrin_avx2.c │ │ │ │ │ ├── stream_encoder_intrin_sse2.c │ │ │ │ │ ├── stream_encoder_intrin_ssse3.c │ │ │ │ │ └── window.c │ │ │ ├── aac_dec │ │ │ │ ├── Makefile │ │ │ │ ├── aac_dec.mk │ │ │ │ ├── aac_dec_src.mk │ │ │ │ ├── aacdec.c │ │ │ │ ├── aacdec.h │ │ │ │ ├── aacdec_core.h │ │ │ │ ├── aacdec_types.h │ │ │ │ ├── adtsparse.c │ │ │ │ ├── adtsparse.h │ │ │ │ ├── adtsparse_core.h │ │ │ │ ├── adtsparse_types.h │ │ │ │ ├── globals.h │ │ │ │ ├── logger.h │ │ │ │ ├── mp4parse.c │ │ │ │ ├── mp4parse.h │ │ │ │ ├── mp4parse_core.h │ │ │ │ ├── mp4parse_types.h │ │ │ │ ├── readme.txt │ │ │ │ ├── sysclk.h │ │ │ │ ├── sysclk_wiced.h │ │ │ │ ├── tpm.h │ │ │ │ ├── tpm_wiced.h │ │ │ │ ├── tsp.h │ │ │ │ └── tsp_wiced.h │ │ │ ├── brcm_mp3_dec │ │ │ │ ├── brcm_mp3_dec.mk │ │ │ │ └── src │ │ │ │ │ └── mpeg_api.h │ │ │ ├── codec_framework │ │ │ │ ├── codec_framework.mk │ │ │ │ ├── include │ │ │ │ │ └── wiced_codec_sbc_params.h │ │ │ │ └── wiced_codec_interface.c │ │ │ ├── fdk_aac_dec │ │ │ │ ├── Makefile │ │ │ │ ├── NOTICE │ │ │ │ ├── fdk_aac_dec.mk │ │ │ │ ├── fdk_aac_dec_src.mk │ │ │ │ ├── fdk_version_note.txt │ │ │ │ ├── libAACdec │ │ │ │ │ ├── include │ │ │ │ │ │ └── aacdecoder_lib.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── aac_ram.cpp │ │ │ │ │ │ ├── aac_ram.h │ │ │ │ │ │ ├── aac_rom.cpp │ │ │ │ │ │ ├── aac_rom.h │ │ │ │ │ │ ├── aacdec_drc.cpp │ │ │ │ │ │ ├── aacdec_drc.h │ │ │ │ │ │ ├── aacdec_drc_types.h │ │ │ │ │ │ ├── aacdec_hcr.cpp │ │ │ │ │ │ ├── aacdec_hcr.h │ │ │ │ │ │ ├── aacdec_hcr_bit.cpp │ │ │ │ │ │ ├── aacdec_hcr_bit.h │ │ │ │ │ │ ├── aacdec_hcr_types.h │ │ │ │ │ │ ├── aacdec_hcrs.cpp │ │ │ │ │ │ ├── aacdec_hcrs.h │ │ │ │ │ │ ├── aacdec_pns.cpp │ │ │ │ │ │ ├── aacdec_pns.h │ │ │ │ │ │ ├── aacdec_tns.cpp │ │ │ │ │ │ ├── aacdec_tns.h │ │ │ │ │ │ ├── aacdecoder.cpp │ │ │ │ │ │ ├── aacdecoder.h │ │ │ │ │ │ ├── aacdecoder_lib.cpp │ │ │ │ │ │ ├── arm │ │ │ │ │ │ └── block_arm.cpp │ │ │ │ │ │ ├── block.cpp │ │ │ │ │ │ ├── block.h │ │ │ │ │ │ ├── channel.cpp │ │ │ │ │ │ ├── channel.h │ │ │ │ │ │ ├── channelinfo.cpp │ │ │ │ │ │ ├── channelinfo.h │ │ │ │ │ │ ├── conceal.cpp │ │ │ │ │ │ ├── conceal.h │ │ │ │ │ │ ├── conceal_types.h │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── ldfiltbank.cpp │ │ │ │ │ │ ├── ldfiltbank.h │ │ │ │ │ │ ├── overlapadd.h │ │ │ │ │ │ ├── pulsedata.cpp │ │ │ │ │ │ ├── pulsedata.h │ │ │ │ │ │ ├── rvlc.cpp │ │ │ │ │ │ ├── rvlc.h │ │ │ │ │ │ ├── rvlc_info.h │ │ │ │ │ │ ├── rvlcbit.cpp │ │ │ │ │ │ ├── rvlcbit.h │ │ │ │ │ │ ├── rvlcconceal.cpp │ │ │ │ │ │ ├── rvlcconceal.h │ │ │ │ │ │ ├── stereo.cpp │ │ │ │ │ │ └── stereo.h │ │ │ │ ├── libFDK │ │ │ │ │ ├── include │ │ │ │ │ │ ├── FDK_archdef.h │ │ │ │ │ │ ├── FDK_bitbuffer.h │ │ │ │ │ │ ├── FDK_bitstream.h │ │ │ │ │ │ ├── FDK_core.h │ │ │ │ │ │ ├── FDK_crc.h │ │ │ │ │ │ ├── FDK_hybrid.h │ │ │ │ │ │ ├── FDK_tools_rom.h │ │ │ │ │ │ ├── FDK_trigFcts.h │ │ │ │ │ │ ├── abs.h │ │ │ │ │ │ ├── arm │ │ │ │ │ │ │ ├── clz_arm.h │ │ │ │ │ │ │ ├── cplx_mul.h │ │ │ │ │ │ │ ├── fixmadd_arm.h │ │ │ │ │ │ │ ├── fixmul_arm.h │ │ │ │ │ │ │ ├── scale.h │ │ │ │ │ │ │ └── scramble.h │ │ │ │ │ │ ├── autocorr2nd.h │ │ │ │ │ │ ├── clz.h │ │ │ │ │ │ ├── common_fix.h │ │ │ │ │ │ ├── cplx_mul.h │ │ │ │ │ │ ├── dct.h │ │ │ │ │ │ ├── fft.h │ │ │ │ │ │ ├── fft_rad2.h │ │ │ │ │ │ ├── fixmadd.h │ │ │ │ │ │ ├── fixminmax.h │ │ │ │ │ │ ├── fixmul.h │ │ │ │ │ │ ├── fixpoint_math.h │ │ │ │ │ │ ├── mdct.h │ │ │ │ │ │ ├── mips │ │ │ │ │ │ │ ├── abs_mips.h │ │ │ │ │ │ │ ├── clz_mips.h │ │ │ │ │ │ │ ├── cplx_mul.h │ │ │ │ │ │ │ ├── fixmadd_mips.h │ │ │ │ │ │ │ ├── fixmul_mips.h │ │ │ │ │ │ │ ├── scale.h │ │ │ │ │ │ │ └── scramble.h │ │ │ │ │ │ ├── ppc │ │ │ │ │ │ │ ├── clz_ppc.h │ │ │ │ │ │ │ └── fixmul_ppc.h │ │ │ │ │ │ ├── qmf.h │ │ │ │ │ │ ├── scale.h │ │ │ │ │ │ ├── scramble.h │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ ├── abs_x86.h │ │ │ │ │ │ │ ├── clz_x86.h │ │ │ │ │ │ │ └── fixmul_x86.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── FDK_bitbuffer.cpp │ │ │ │ │ │ ├── FDK_core.cpp │ │ │ │ │ │ ├── FDK_crc.cpp │ │ │ │ │ │ ├── FDK_hybrid.cpp │ │ │ │ │ │ ├── FDK_tools_rom.cpp │ │ │ │ │ │ ├── FDK_trigFcts.cpp │ │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── autocorr2nd.cpp │ │ │ │ │ │ ├── dct_arm.cpp │ │ │ │ │ │ ├── fft_rad2_arm.cpp │ │ │ │ │ │ ├── qmf_arm.cpp │ │ │ │ │ │ └── scale_arm.cpp │ │ │ │ │ │ ├── autocorr2nd.cpp │ │ │ │ │ │ ├── dct.cpp │ │ │ │ │ │ ├── fft.cpp │ │ │ │ │ │ ├── fft_rad2.cpp │ │ │ │ │ │ ├── fixpoint_math.cpp │ │ │ │ │ │ ├── mdct.cpp │ │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── fft_rad2_mips.cpp │ │ │ │ │ │ ├── mips_fft_twiddles.cpp │ │ │ │ │ │ └── scale.cpp │ │ │ │ │ │ ├── qmf.cpp │ │ │ │ │ │ └── scale.cpp │ │ │ │ ├── libMpegTPDec │ │ │ │ │ ├── include │ │ │ │ │ │ ├── mpegFileRead.h │ │ │ │ │ │ ├── tp_data.h │ │ │ │ │ │ └── tpdec_lib.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── mpegFileFormat.h │ │ │ │ │ │ ├── tpdec_adif.cpp │ │ │ │ │ │ ├── tpdec_adif.h │ │ │ │ │ │ ├── tpdec_adts.cpp │ │ │ │ │ │ ├── tpdec_adts.h │ │ │ │ │ │ ├── tpdec_asc.cpp │ │ │ │ │ │ ├── tpdec_drm.cpp │ │ │ │ │ │ ├── tpdec_drm.h │ │ │ │ │ │ ├── tpdec_latm.cpp │ │ │ │ │ │ ├── tpdec_latm.h │ │ │ │ │ │ ├── tpdec_lib.cpp │ │ │ │ │ │ └── version │ │ │ │ ├── libPCMutils │ │ │ │ │ ├── include │ │ │ │ │ │ ├── limiter.h │ │ │ │ │ │ └── pcmutils_lib.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── limiter.cpp │ │ │ │ │ │ └── pcmutils_lib.cpp │ │ │ │ ├── libSBRdec │ │ │ │ │ ├── include │ │ │ │ │ │ └── sbrdecoder.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── env_calc_arm.cpp │ │ │ │ │ │ └── lpp_tran_arm.cpp │ │ │ │ │ │ ├── env_calc.cpp │ │ │ │ │ │ ├── env_calc.h │ │ │ │ │ │ ├── env_dec.cpp │ │ │ │ │ │ ├── env_dec.h │ │ │ │ │ │ ├── env_extr.cpp │ │ │ │ │ │ ├── env_extr.h │ │ │ │ │ │ ├── huff_dec.cpp │ │ │ │ │ │ ├── huff_dec.h │ │ │ │ │ │ ├── lpp_tran.cpp │ │ │ │ │ │ ├── lpp_tran.h │ │ │ │ │ │ ├── psbitdec.cpp │ │ │ │ │ │ ├── psbitdec.h │ │ │ │ │ │ ├── psdec.cpp │ │ │ │ │ │ ├── psdec.h │ │ │ │ │ │ ├── psdec_hybrid.cpp │ │ │ │ │ │ ├── psdec_hybrid.h │ │ │ │ │ │ ├── sbr_crc.cpp │ │ │ │ │ │ ├── sbr_crc.h │ │ │ │ │ │ ├── sbr_deb.cpp │ │ │ │ │ │ ├── sbr_deb.h │ │ │ │ │ │ ├── sbr_dec.cpp │ │ │ │ │ │ ├── sbr_dec.h │ │ │ │ │ │ ├── sbr_ram.cpp │ │ │ │ │ │ ├── sbr_ram.h │ │ │ │ │ │ ├── sbr_rom.cpp │ │ │ │ │ │ ├── sbr_rom.h │ │ │ │ │ │ ├── sbr_scale.h │ │ │ │ │ │ ├── sbrdec_drc.cpp │ │ │ │ │ │ ├── sbrdec_drc.h │ │ │ │ │ │ ├── sbrdec_freq_sca.cpp │ │ │ │ │ │ ├── sbrdec_freq_sca.h │ │ │ │ │ │ ├── sbrdecoder.cpp │ │ │ │ │ │ └── transcendent.h │ │ │ │ └── libSYS │ │ │ │ │ ├── include │ │ │ │ │ ├── FDK_audio.h │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── cmdl_parser.h │ │ │ │ │ ├── conv_string.h │ │ │ │ │ ├── cy_defs.h │ │ │ │ │ ├── genericStds.h │ │ │ │ │ ├── machine_type.h │ │ │ │ │ └── wav_file.h │ │ │ │ │ └── src │ │ │ │ │ ├── cmdl_parser.cpp │ │ │ │ │ ├── conv_string.cpp │ │ │ │ │ ├── genericStds.cpp │ │ │ │ │ ├── linux │ │ │ │ │ ├── FDK_stackload_linux.cpp │ │ │ │ │ ├── audio_linux.cpp │ │ │ │ │ ├── coresup_linux.cpp │ │ │ │ │ ├── genericStds_linux.cpp │ │ │ │ │ └── uart_linux.cpp │ │ │ │ │ └── wav_file.cpp │ │ │ ├── sbc_if │ │ │ │ ├── sbc_if.c │ │ │ │ └── sbc_if.mk │ │ │ └── wavpack │ │ │ │ ├── README.txt │ │ │ │ ├── full │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README-1ST.txt │ │ │ │ ├── full.mk │ │ │ │ ├── include │ │ │ │ │ └── wavpack.h │ │ │ │ ├── license.txt │ │ │ │ ├── src │ │ │ │ │ ├── common_utils.c │ │ │ │ │ ├── decorr_tables.h │ │ │ │ │ ├── decorr_utils.c │ │ │ │ │ ├── entropy_utils.c │ │ │ │ │ ├── extra1.c │ │ │ │ │ ├── extra2.c │ │ │ │ │ ├── open_filename.c │ │ │ │ │ ├── open_legacy.c │ │ │ │ │ ├── open_raw.c │ │ │ │ │ ├── open_utils.c │ │ │ │ │ ├── pack.c │ │ │ │ │ ├── pack_dns.c │ │ │ │ │ ├── pack_dsd.c │ │ │ │ │ ├── pack_floats.c │ │ │ │ │ ├── pack_utils.c │ │ │ │ │ ├── pack_x64.S │ │ │ │ │ ├── pack_x64.asm │ │ │ │ │ ├── pack_x86.S │ │ │ │ │ ├── pack_x86.asm │ │ │ │ │ ├── read_words.c │ │ │ │ │ ├── tag_utils.c │ │ │ │ │ ├── tags.c │ │ │ │ │ ├── unpack.c │ │ │ │ │ ├── unpack3.c │ │ │ │ │ ├── unpack3.h │ │ │ │ │ ├── unpack3_open.c │ │ │ │ │ ├── unpack3_seek.c │ │ │ │ │ ├── unpack_armv7.S │ │ │ │ │ ├── unpack_dsd.c │ │ │ │ │ ├── unpack_floats.c │ │ │ │ │ ├── unpack_seek.c │ │ │ │ │ ├── unpack_utils.c │ │ │ │ │ ├── unpack_x64.S │ │ │ │ │ ├── unpack_x64.asm │ │ │ │ │ ├── unpack_x86.S │ │ │ │ │ ├── unpack_x86.asm │ │ │ │ │ ├── wavpack_local.h │ │ │ │ │ ├── wavpack_version.h │ │ │ │ │ └── write_words.c │ │ │ │ └── wavpack_codec_src.mk │ │ │ │ ├── shortblocks │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── README-1ST.txt │ │ │ │ ├── include │ │ │ │ │ └── wavpack.h │ │ │ │ ├── license.txt │ │ │ │ ├── shortblocks.mk │ │ │ │ ├── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── common_utils.c │ │ │ │ │ ├── decorr_tables.c │ │ │ │ │ ├── decorr_utils.c │ │ │ │ │ ├── entropy_utils.c │ │ │ │ │ ├── extra1.c │ │ │ │ │ ├── extra2.c │ │ │ │ │ ├── open_filename.c │ │ │ │ │ ├── open_legacy.c │ │ │ │ │ ├── open_raw.c │ │ │ │ │ ├── open_utils.c │ │ │ │ │ ├── pack.c │ │ │ │ │ ├── pack_dns.c │ │ │ │ │ ├── pack_dsd.c │ │ │ │ │ ├── pack_floats.c │ │ │ │ │ ├── pack_utils.c │ │ │ │ │ ├── pack_x64.S │ │ │ │ │ ├── pack_x64.asm │ │ │ │ │ ├── pack_x86.S │ │ │ │ │ ├── pack_x86.asm │ │ │ │ │ ├── read_words.c │ │ │ │ │ ├── unpack.c │ │ │ │ │ ├── unpack_armv7.S │ │ │ │ │ ├── unpack_dsd.c │ │ │ │ │ ├── unpack_floats.c │ │ │ │ │ ├── unpack_seek.c │ │ │ │ │ ├── unpack_utils.c │ │ │ │ │ ├── unpack_x64.S │ │ │ │ │ ├── unpack_x64.asm │ │ │ │ │ ├── unpack_x86.S │ │ │ │ │ ├── unpack_x86.asm │ │ │ │ │ ├── wavpack_local.h │ │ │ │ │ ├── wavpack_version.h │ │ │ │ │ └── write_words.c │ │ │ │ └── wavpack_codec_src.mk │ │ │ │ └── tiny │ │ │ │ ├── dec │ │ │ │ ├── Makefile │ │ │ │ ├── arm.S │ │ │ │ ├── arml.S │ │ │ │ ├── bits.c │ │ │ │ ├── buildme.bat │ │ │ │ ├── coldfire.S │ │ │ │ ├── dec.mk │ │ │ │ ├── float.c │ │ │ │ ├── license.txt │ │ │ │ ├── metadata.c │ │ │ │ ├── readme.txt │ │ │ │ ├── unpack.c │ │ │ │ ├── wavpack_dec.h │ │ │ │ ├── wavpack_tiny_dec_src.mk │ │ │ │ ├── words.c │ │ │ │ ├── wputils.c │ │ │ │ └── wvfilter.c │ │ │ │ └── enc │ │ │ │ ├── Makefile │ │ │ │ ├── bits.c │ │ │ │ ├── buildme.bat │ │ │ │ ├── enc.mk │ │ │ │ ├── license.txt │ │ │ │ ├── pack.c │ │ │ │ ├── readme.txt │ │ │ │ ├── tinypack.c │ │ │ │ ├── wavpack_enc.h │ │ │ │ ├── wavpack_tiny_enc_src.mk │ │ │ │ ├── words.c │ │ │ │ ├── wplocal.h │ │ │ │ └── wputils.c │ │ ├── display │ │ │ ├── audio_display.c │ │ │ ├── audio_display.h │ │ │ └── display.mk │ │ ├── tone_player │ │ │ ├── tone_player.mk │ │ │ ├── wiced_tone.c │ │ │ └── wiced_tone.h │ │ ├── tsfilter │ │ │ ├── tsfilter.h │ │ │ └── tsfilter.mk │ │ ├── upnp_av_render │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL.md │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── src │ │ │ │ ├── logging.c │ │ │ │ ├── logging.h │ │ │ │ ├── main.c │ │ │ │ ├── output.c │ │ │ │ ├── output.h │ │ │ │ ├── output_gstreamer.c │ │ │ │ ├── output_gstreamer.h │ │ │ │ ├── output_module.h │ │ │ │ ├── output_wiced_audio.c │ │ │ │ ├── output_wiced_audio.h │ │ │ │ ├── song-meta-data.c │ │ │ │ ├── song-meta-data.h │ │ │ │ ├── upnp.c │ │ │ │ ├── upnp.h │ │ │ │ ├── upnp_connmgr.c │ │ │ │ ├── upnp_connmgr.h │ │ │ │ ├── upnp_control.c │ │ │ │ ├── upnp_control.h │ │ │ │ ├── upnp_device.c │ │ │ │ ├── upnp_device.h │ │ │ │ ├── upnp_renderer.c │ │ │ │ ├── upnp_renderer.h │ │ │ │ ├── upnp_transport.c │ │ │ │ ├── upnp_transport.h │ │ │ │ ├── variable-container.c │ │ │ │ ├── variable-container.h │ │ │ │ ├── webserver.c │ │ │ │ ├── webserver.h │ │ │ │ ├── xmldoc.c │ │ │ │ ├── xmldoc.h │ │ │ │ ├── xmlescape.c │ │ │ │ └── xmlescape.h │ │ │ ├── upnp_av_render.h │ │ │ └── upnp_av_render.mk │ │ └── upnp_av_render_template │ │ │ ├── upnp_av_render.h │ │ │ ├── upnp_av_render_stub.c │ │ │ └── upnp_av_render_template.mk │ ├── daemons │ │ ├── DHCP_server │ │ │ ├── DHCP_server.mk │ │ │ ├── dhcp_server.c │ │ │ ├── dhcp_server.h │ │ │ └── unit │ │ │ │ ├── dhcp_server_test_content.c │ │ │ │ ├── dhcp_server_unit.cpp │ │ │ │ ├── dhcp_server_unit.h │ │ │ │ └── rfc2131.txt │ │ ├── DNS_redirect │ │ │ ├── DNS_redirect.mk │ │ │ ├── dns_redirect.c │ │ │ └── dns_redirect.h │ │ ├── Gedday │ │ │ ├── Gedday.mk │ │ │ ├── README.txt │ │ │ └── gedday.h │ │ ├── HTTP_server │ │ │ ├── HTTP_server.mk │ │ │ ├── http_server.c │ │ │ └── http_server.h │ │ ├── SSDP │ │ │ ├── SSDP.mk │ │ │ ├── wiced_ssdp.c │ │ │ ├── wiced_ssdp.h │ │ │ ├── wiced_ssdp_internal.h │ │ │ └── wiced_ssdp_multicast.c │ │ ├── bt_internet_gateway │ │ │ ├── bt_http_proxy_server │ │ │ │ ├── bt_http_proxy_server.c │ │ │ │ ├── bt_http_proxy_server.h │ │ │ │ └── bt_http_proxy_server.mk │ │ │ ├── bt_internet_gateway.h │ │ │ ├── bt_internet_gateway.mk │ │ │ ├── internal │ │ │ │ ├── big_http_server.c │ │ │ │ ├── big_http_server.h │ │ │ │ ├── big_stack_interface.c │ │ │ │ ├── big_stack_interface.h │ │ │ │ └── bt_internet_gateway.c │ │ │ └── restful_smart_server │ │ │ │ ├── restful_smart_ble.c │ │ │ │ ├── restful_smart_ble.h │ │ │ │ ├── restful_smart_constants.c │ │ │ │ ├── restful_smart_constants.h │ │ │ │ ├── restful_smart_response.c │ │ │ │ ├── restful_smart_response.h │ │ │ │ ├── restful_smart_server.h │ │ │ │ ├── restful_smart_server.mk │ │ │ │ ├── restful_smart_uri.c │ │ │ │ └── restful_smart_uri.h │ │ ├── device_configuration │ │ │ ├── device_configuration.c │ │ │ ├── device_configuration.mk │ │ │ └── device_configuration_http_content.c │ │ ├── device_onboarding │ │ │ ├── device_onboarding.c │ │ │ ├── device_onboarding.h │ │ │ └── device_onboarding.mk │ │ ├── led_service │ │ │ ├── led_service.c │ │ │ ├── led_service.h │ │ │ └── led_service.mk │ │ ├── ota2_server │ │ │ ├── ota2_server.c │ │ │ ├── ota2_server.h │ │ │ ├── ota2_server.mk │ │ │ ├── ota2_server_web_page.c │ │ │ ├── ota2_server_web_page.h │ │ │ ├── wiced_ota2_server.c │ │ │ └── wiced_ota2_server.h │ │ ├── ota2_service │ │ │ ├── ota2_service.mk │ │ │ ├── wiced_ota2_network.c │ │ │ ├── wiced_ota2_network.h │ │ │ ├── wiced_ota2_service.c │ │ │ └── wiced_ota2_service.h │ │ ├── ota_server │ │ │ ├── ota_server.c │ │ │ ├── ota_server.h │ │ │ ├── ota_server.mk │ │ │ ├── ota_server_web_page.c │ │ │ ├── ota_server_web_page.h │ │ │ ├── wiced_ota_server.c │ │ │ └── wiced_ota_server.h │ │ ├── simple_HTTP_server │ │ │ ├── simple_HTTP_server.mk │ │ │ ├── simple_http_server.c │ │ │ └── simple_http_server.h │ │ └── tftp │ │ │ ├── tftp.c │ │ │ ├── tftp.h │ │ │ └── tftp.mk │ ├── drivers │ │ ├── USB │ │ │ └── USBX │ │ │ │ ├── USBX.mk │ │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── wiced_usb.c │ │ │ │ └── wiced_usb_usbx.h │ │ │ │ └── ver5.8 │ │ │ │ ├── filex_stub.h │ │ │ │ ├── usbx_device_classes │ │ │ │ ├── ux_device_class_cdc_acm.h │ │ │ │ ├── ux_device_class_cdc_ecm.h │ │ │ │ ├── ux_device_class_dfu.h │ │ │ │ ├── ux_device_class_hid.h │ │ │ │ ├── ux_device_class_pima.h │ │ │ │ ├── ux_device_class_rndis.h │ │ │ │ └── ux_device_class_storage.h │ │ │ │ ├── usbx_device_controllers │ │ │ │ └── bcm4390x │ │ │ │ │ ├── CDC_ACM_bcm4390x_Win7_64bit.inf │ │ │ │ │ └── ux_dcd_bcm4390x.h │ │ │ │ ├── usbx_host_classes │ │ │ │ ├── ux_host_class_asix.h │ │ │ │ ├── ux_host_class_audio.h │ │ │ │ ├── ux_host_class_cdc_acm.h │ │ │ │ ├── ux_host_class_cdc_ecm.h │ │ │ │ ├── ux_host_class_gser.h │ │ │ │ ├── ux_host_class_hid.h │ │ │ │ ├── ux_host_class_hid_keyboard.h │ │ │ │ ├── ux_host_class_hid_mouse.h │ │ │ │ ├── ux_host_class_hid_remote_control.h │ │ │ │ ├── ux_host_class_hub.h │ │ │ │ ├── ux_host_class_pima.h │ │ │ │ ├── ux_host_class_printer.h │ │ │ │ ├── ux_host_class_prolific.h │ │ │ │ ├── ux_host_class_storage.h │ │ │ │ └── ux_host_class_swar.h │ │ │ │ ├── usbx_host_controllers │ │ │ │ ├── ux_hcd_ehci.h │ │ │ │ └── ux_hcd_ohci.h │ │ │ │ ├── ux_api.h │ │ │ │ ├── ux_dcd_sim_slave.h │ │ │ │ ├── ux_device_class_dpump.h │ │ │ │ ├── ux_device_stack.h │ │ │ │ ├── ux_hcd_sim_host.h │ │ │ │ ├── ux_host_class_dpump.h │ │ │ │ ├── ux_host_stack.h │ │ │ │ ├── ux_port.h │ │ │ │ ├── ux_system.h │ │ │ │ ├── ux_user.h │ │ │ │ ├── ux_utility.h │ │ │ │ └── ux_utility_wiced_all.c │ │ ├── adc │ │ │ └── MAX11615 │ │ │ │ ├── MAX11615.c │ │ │ │ ├── MAX11615.h │ │ │ │ └── MAX11615.mk │ │ ├── audio │ │ │ ├── AK4954 │ │ │ │ ├── AK4954.mk │ │ │ │ ├── ak4954.c │ │ │ │ ├── ak4954.h │ │ │ │ └── ak4954a_f00e.pdf │ │ │ ├── AK4961 │ │ │ │ ├── 557336-00_CODEC.pdf │ │ │ │ ├── AK4961.mk │ │ │ │ ├── ak4961.c │ │ │ │ ├── ak4961.h │ │ │ │ └── ak4961_i2c.c │ │ │ ├── CS47L24 │ │ │ │ ├── CS47L24.mk │ │ │ │ ├── CS47L24_v4.1.pdf │ │ │ │ ├── cs47l24.c │ │ │ │ ├── cs47l24.h │ │ │ │ ├── cs47l24_parse_wmfw_blob.c │ │ │ │ ├── cs47l24_private.h │ │ │ │ └── cs47l24_register_map.h │ │ │ ├── WM8533 │ │ │ │ ├── WM8533.mk │ │ │ │ ├── WM8533_v4.0.pdf │ │ │ │ ├── wm8533_dac.c │ │ │ │ └── wm8533_dac.h │ │ │ └── spdif │ │ │ │ ├── spdif.c │ │ │ │ ├── spdif.h │ │ │ │ └── spdif.mk │ │ ├── bluetooth │ │ │ ├── BTE │ │ │ │ ├── Components │ │ │ │ │ ├── gki │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── gki.h │ │ │ │ │ │ │ └── gki_common.h │ │ │ │ │ ├── stack │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── bt_types.h │ │ │ │ │ │ │ ├── dyn_mem.h │ │ │ │ │ │ │ ├── gattdefs.h │ │ │ │ │ │ │ ├── hcidefs.h │ │ │ │ │ │ │ ├── hcimsgs.h │ │ │ │ │ │ │ ├── hiddefs.h │ │ │ │ │ │ │ ├── l2cdefs.h │ │ │ │ │ │ │ └── sdpdefs.h │ │ │ │ │ └── udrv │ │ │ │ │ │ └── include │ │ │ │ │ │ └── userial.h │ │ │ │ ├── Projects │ │ │ │ │ └── bte │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── bt_target.h │ │ │ │ │ │ ├── bt_trace.h │ │ │ │ │ │ └── gki_target.h │ │ │ │ ├── WICED │ │ │ │ │ ├── data_types.h │ │ │ │ │ ├── wiced_bt_int.h │ │ │ │ │ └── wiced_bt_platform.h │ │ │ │ ├── bt_logmsg │ │ │ │ │ ├── wiced_bt_logmsg.c │ │ │ │ │ └── wiced_bt_logmsg.h │ │ │ │ └── proto_disp │ │ │ │ │ └── wiced_bt_protocol_print.c │ │ │ ├── dual_mode │ │ │ │ ├── buildcfg.h │ │ │ │ └── dual_mode.mk │ │ │ ├── firmware │ │ │ │ ├── 20702B0 │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ ├── 20706A1 │ │ │ │ │ ├── 40MHz │ │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ ├── 20706A2 │ │ │ │ │ ├── 20MHz │ │ │ │ │ │ ├── bt_firmware_embedded_hci_spp_le_app.c │ │ │ │ │ │ └── bt_firmware_embedded_headset.c │ │ │ │ │ └── 40MHz │ │ │ │ │ │ ├── bt_firmware_controller.c │ │ │ │ │ │ ├── bt_firmware_embedded_hci_spp_le_app.c │ │ │ │ │ │ ├── bt_firmware_embedded_headset.c │ │ │ │ │ │ ├── bt_firmware_embedded_mesh_gateway.c │ │ │ │ │ │ └── bt_firmware_embedded_mesh_gateway_proxy.c │ │ │ │ ├── 43340B0 │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ ├── 43341B0 │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ ├── 43438A1 │ │ │ │ │ ├── 26MHz │ │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ │ └── 37_4MHz │ │ │ │ │ │ └── bt_firmware_controller.c │ │ │ │ ├── firmware.mk │ │ │ │ └── tools │ │ │ │ │ ├── HEX2BIN.EXE │ │ │ │ │ ├── Hex2Prm.pl │ │ │ │ │ └── hcd2c.pl │ │ │ ├── include │ │ │ │ ├── wiced_bt_a2d.h │ │ │ │ ├── wiced_bt_a2d_m12.h │ │ │ │ ├── wiced_bt_a2d_m24.h │ │ │ │ ├── wiced_bt_a2d_sbc.h │ │ │ │ ├── wiced_bt_a2dp_sink.h │ │ │ │ ├── wiced_bt_avdt.h │ │ │ │ ├── wiced_bt_avrc.h │ │ │ │ ├── wiced_bt_avrc_defs.h │ │ │ │ ├── wiced_bt_ble.h │ │ │ │ ├── wiced_bt_cfg.h │ │ │ │ ├── wiced_bt_dev.h │ │ │ │ ├── wiced_bt_gatt.h │ │ │ │ ├── wiced_bt_hfp_hf.h │ │ │ │ ├── wiced_bt_hidd.h │ │ │ │ ├── wiced_bt_hidd_ble.h │ │ │ │ ├── wiced_bt_l2c.h │ │ │ │ ├── wiced_bt_nvram_access.h │ │ │ │ ├── wiced_bt_remote_control.h │ │ │ │ ├── wiced_bt_rfcomm.h │ │ │ │ ├── wiced_bt_sco.h │ │ │ │ ├── wiced_bt_sdp.h │ │ │ │ ├── wiced_bt_stack.h │ │ │ │ ├── wiced_bt_types.h │ │ │ │ ├── wiced_bt_uuid.h │ │ │ │ └── wiced_hci_bt_mesh.h │ │ │ ├── low_energy │ │ │ │ ├── buildcfg.h │ │ │ │ └── low_energy.mk │ │ │ ├── mfg_test │ │ │ │ ├── bt_mfg_test.c │ │ │ │ ├── bt_mfg_test.h │ │ │ │ ├── internal │ │ │ │ │ ├── bus │ │ │ │ │ │ ├── UART │ │ │ │ │ │ │ └── bt_bus.c │ │ │ │ │ │ └── bt_bus.h │ │ │ │ │ ├── firmware │ │ │ │ │ │ ├── bt_firmware.c │ │ │ │ │ │ └── bt_firmware.h │ │ │ │ │ ├── packet │ │ │ │ │ │ ├── bt_packet.c │ │ │ │ │ │ └── bt_packet_internal.h │ │ │ │ │ └── transport │ │ │ │ │ │ ├── HCI │ │ │ │ │ │ ├── bt_hci.c │ │ │ │ │ │ ├── bt_hci.h │ │ │ │ │ │ └── bt_hci_interface.h │ │ │ │ │ │ ├── driver │ │ │ │ │ │ ├── UART │ │ │ │ │ │ │ ├── bt_transport_driver.c │ │ │ │ │ │ │ └── bt_transport_driver_receive.c │ │ │ │ │ │ └── bt_transport_driver.h │ │ │ │ │ │ └── thread │ │ │ │ │ │ ├── bt_transport_thread.c │ │ │ │ │ │ └── bt_transport_thread.h │ │ │ │ └── mfg_test.mk │ │ │ ├── sbc │ │ │ │ ├── decoder │ │ │ │ │ └── include │ │ │ │ │ │ ├── sbc_basicop.h │ │ │ │ │ │ ├── sbc_dec_func_declare.h │ │ │ │ │ │ ├── sbc_decoder.h │ │ │ │ │ │ └── sbc_types.h │ │ │ │ └── sbc.mk │ │ │ ├── utility │ │ │ │ ├── utility.mk │ │ │ │ ├── wiced_bt_gatt_db_helper.c │ │ │ │ └── wiced_bt_gatt_db_helper.h │ │ │ └── wiced_hci_bt │ │ │ │ ├── internal │ │ │ │ └── wiced_hci_bt_internal_common.h │ │ │ │ ├── wiced_hci_bt.mk │ │ │ │ ├── wiced_hci_bt_a2dp.c │ │ │ │ ├── wiced_hci_bt_avrcp.c │ │ │ │ ├── wiced_hci_bt_ble.c │ │ │ │ ├── wiced_hci_bt_dm.c │ │ │ │ ├── wiced_hci_bt_gatt.c │ │ │ │ ├── wiced_hci_bt_hfp.c │ │ │ │ ├── wiced_hci_bt_mesh.c │ │ │ │ ├── wiced_hci_bt_rfcomm.c │ │ │ │ ├── wiced_hci_bt_sdp.c │ │ │ │ └── wiced_hci_bt_src.mk │ │ ├── gspi │ │ │ ├── 4390x_gspi_slave │ │ │ │ ├── 4390x_gspi_slave.c │ │ │ │ └── 4390x_gspi_slave.mk │ │ │ ├── gspi_basic.h │ │ │ ├── gspi_master │ │ │ │ ├── gspi_master.c │ │ │ │ ├── gspi_master.h │ │ │ │ └── gspi_master.mk │ │ │ ├── gspi_slave │ │ │ │ ├── gspi_slave.c │ │ │ │ ├── gspi_slave.h │ │ │ │ └── gspi_slave.mk │ │ │ └── gspi_sw_header.h │ │ ├── power_management │ │ │ ├── max17040 │ │ │ │ ├── max17040.c │ │ │ │ ├── max17040.h │ │ │ │ └── max17040.mk │ │ │ ├── max8971 │ │ │ │ ├── max8971.c │ │ │ │ ├── max8971.h │ │ │ │ └── max8971.mk │ │ │ ├── power_management.c │ │ │ ├── power_management.h │ │ │ └── power_management.mk │ │ ├── sensors │ │ │ └── NCP18XH103J03RB │ │ │ │ ├── NCP18XH103J03RB.mk │ │ │ │ ├── thermistor.c │ │ │ │ └── thermistor.h │ │ ├── spi_flash │ │ │ ├── spi_flash.c │ │ │ ├── spi_flash.h │ │ │ ├── spi_flash.mk │ │ │ ├── spi_flash_internal.h │ │ │ ├── spi_flash_platform_interface.h │ │ │ └── spi_flash_wiced.c │ │ ├── spi_slave │ │ │ ├── master │ │ │ │ ├── master.mk │ │ │ │ ├── spi_master.c │ │ │ │ └── spi_master.h │ │ │ ├── spi_slave.c │ │ │ ├── spi_slave.h │ │ │ └── spi_slave.mk │ │ └── stm32_hal_peripherals │ │ │ ├── README.txt │ │ │ ├── gpio │ │ │ ├── gpio.c │ │ │ └── gpio.mk │ │ │ ├── i2c │ │ │ ├── i2c.c │ │ │ └── i2c.mk │ │ │ ├── pwm │ │ │ ├── pwm.c │ │ │ └── pwm.mk │ │ │ ├── qspi │ │ │ ├── cypress_S25FL128SAGBHIA13_flash.h │ │ │ ├── qspi.c │ │ │ ├── qspi.mk │ │ │ └── spi_flash.h │ │ │ ├── rtc │ │ │ ├── rtc.c │ │ │ └── rtc.mk │ │ │ ├── uart │ │ │ ├── uart.c │ │ │ └── uart.mk │ │ │ └── watchdog │ │ │ ├── watchdog.c │ │ │ └── watchdog.mk │ ├── dsp │ │ └── kiss_fft │ │ │ ├── CHANGELOG │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── TIPS │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fft.mk │ │ │ ├── kissfft.hh │ │ │ ├── test │ │ │ ├── Makefile │ │ │ ├── benchfftw.c │ │ │ ├── benchkiss.c │ │ │ ├── compfft.py │ │ │ ├── doit.c │ │ │ ├── fastfir.py │ │ │ ├── fft.py │ │ │ ├── mk_test.py │ │ │ ├── pstats.c │ │ │ ├── pstats.h │ │ │ ├── tailscrap.m │ │ │ ├── test_real.c │ │ │ ├── test_vs_dft.c │ │ │ ├── testcpp.cc │ │ │ ├── testkiss.py │ │ │ └── twotonetest.c │ │ │ ├── tools │ │ │ ├── Makefile │ │ │ ├── fftutil.c │ │ │ ├── kfc.c │ │ │ ├── kfc.h │ │ │ ├── kiss_fastfir.c │ │ │ ├── kiss_fftnd.c │ │ │ ├── kiss_fftnd.h │ │ │ ├── kiss_fftndr.c │ │ │ ├── kiss_fftndr.h │ │ │ ├── kiss_fftr.c │ │ │ ├── kiss_fftr.h │ │ │ └── psdpng.c │ │ │ └── version.txt │ ├── filesystems │ │ ├── FATFS │ │ │ ├── FATFS.mk │ │ │ ├── fatfs_to_block_device_driver.c │ │ │ ├── fatfs_user_api_driver.c │ │ │ ├── ver0.11 │ │ │ │ ├── doc │ │ │ │ │ ├── css_e.css │ │ │ │ │ ├── css_j.css │ │ │ │ │ ├── css_p.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── app1.c │ │ │ │ │ │ ├── app2.c │ │ │ │ │ │ ├── app3.c │ │ │ │ │ │ ├── app4.c │ │ │ │ │ │ ├── f1.png │ │ │ │ │ │ ├── f2.png │ │ │ │ │ │ ├── f3.png │ │ │ │ │ │ ├── f4.png │ │ │ │ │ │ ├── f5.png │ │ │ │ │ │ ├── f6.png │ │ │ │ │ │ ├── f7.png │ │ │ │ │ │ ├── funcs.png │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── layers1.png │ │ │ │ │ │ ├── layers2.png │ │ │ │ │ │ ├── layers3.png │ │ │ │ │ │ ├── mkfatimg.zip │ │ │ │ │ │ ├── modules.png │ │ │ │ │ │ ├── rwtest.png │ │ │ │ │ │ ├── rwtest2.png │ │ │ │ │ │ └── rwtest3.png │ │ │ │ │ └── updates.txt │ │ │ │ └── src │ │ │ │ │ ├── 00readme.txt │ │ │ │ │ ├── diskio.c │ │ │ │ │ ├── diskio.h │ │ │ │ │ ├── ff.c │ │ │ │ │ ├── ff.h │ │ │ │ │ ├── ffconf.h │ │ │ │ │ ├── history.txt │ │ │ │ │ ├── integer.h │ │ │ │ │ └── option │ │ │ │ │ ├── cc932.c │ │ │ │ │ ├── cc936.c │ │ │ │ │ ├── cc949.c │ │ │ │ │ ├── cc950.c │ │ │ │ │ ├── ccsbcs.c │ │ │ │ │ ├── syscall.c │ │ │ │ │ └── unicode.c │ │ │ └── ver0.12b │ │ │ │ └── src │ │ │ │ ├── 00history.txt │ │ │ │ ├── 00readme.txt │ │ │ │ ├── diskio.c │ │ │ │ ├── diskio.h │ │ │ │ ├── ff.c │ │ │ │ ├── ff.h │ │ │ │ ├── ffconf.h │ │ │ │ ├── integer.h │ │ │ │ └── option │ │ │ │ ├── cc932.c │ │ │ │ ├── cc936.c │ │ │ │ ├── cc949.c │ │ │ │ ├── cc950.c │ │ │ │ ├── ccsbcs.c │ │ │ │ ├── syscall.c │ │ │ │ └── unicode.c │ │ ├── FileX │ │ │ ├── FileX.mk │ │ │ ├── WICED │ │ │ │ ├── WICED.mk │ │ │ │ ├── filex_to_block_device_driver.c │ │ │ │ ├── filex_usbx_user_api_driver.c │ │ │ │ ├── filex_user_api_driver.c │ │ │ │ └── wiced_filex.h │ │ │ └── ver5.5 │ │ │ │ ├── docs │ │ │ │ └── FileX_User_Guide.pdf │ │ │ │ ├── fx_api.h │ │ │ │ ├── fx_port.h │ │ │ │ └── fx_user.h │ │ ├── ota2 │ │ │ ├── image_builder │ │ │ │ ├── Makefile │ │ │ │ ├── mk_wiced_ota2_image.c │ │ │ │ ├── mk_wiced_ota2_image.txt │ │ │ │ ├── wiced_ota2_image_create.c │ │ │ │ └── wiced_ota2_image_create.h │ │ │ ├── ota2.mk │ │ │ ├── wiced_ota2_image.c │ │ │ └── wiced_ota2_image.h │ │ ├── tester │ │ │ ├── Makefile │ │ │ ├── filesystem_write.c │ │ │ ├── filex_compat.c │ │ │ ├── platform_assert.h │ │ │ ├── platform_toolchain.h │ │ │ ├── strlcpy.c │ │ │ ├── tester.c │ │ │ ├── tester.h │ │ │ ├── tester.txt │ │ │ ├── tester_block_device.c │ │ │ ├── tx_api.h │ │ │ ├── tx_thread.h │ │ │ ├── tx_trace.h │ │ │ └── wwd_rtos.h │ │ └── wicedfs │ │ │ ├── src │ │ │ ├── extract_wicedfs │ │ │ │ ├── Makefile │ │ │ │ ├── extract_wicedfs.c │ │ │ │ └── extract_wicedfs.txt │ │ │ ├── mk_wicedfs │ │ │ │ ├── Makefile │ │ │ │ ├── mk_wicedfs.c │ │ │ │ ├── mk_wicedfs.txt │ │ │ │ ├── wicedfs_create.c │ │ │ │ └── wicedfs_create.h │ │ │ ├── tester │ │ │ │ ├── Makefile │ │ │ │ ├── tester.c │ │ │ │ └── tester.txt │ │ │ ├── unit │ │ │ │ ├── old │ │ │ │ │ └── Makefile │ │ │ │ ├── unit.txt │ │ │ │ ├── wicedfs_unit.cpp │ │ │ │ ├── wicedfs_unit_images.c │ │ │ │ └── wicedfs_unit_images.h │ │ │ ├── wicedfs.c │ │ │ ├── wicedfs.h │ │ │ ├── wicedfs.txt │ │ │ └── wicedfs_internal.h │ │ │ ├── wicedfs.mk │ │ │ └── wicedfs_drivers.c │ ├── graphics │ │ ├── u8g │ │ │ ├── u8g.h │ │ │ ├── u8g.mk │ │ │ ├── u8g_arm.c │ │ │ ├── u8g_arm.h │ │ │ ├── u8g_bitmap.c │ │ │ ├── u8g_circle.c │ │ │ ├── u8g_clip.c │ │ │ ├── u8g_com_api.c │ │ │ ├── u8g_com_api_16gr.c │ │ │ ├── u8g_com_i2c.c │ │ │ ├── u8g_com_io.c │ │ │ ├── u8g_com_null.c │ │ │ ├── u8g_com_raspberrypi_hw_spi.c │ │ │ ├── u8g_com_raspberrypi_ssd_i2c.c │ │ │ ├── u8g_cursor.c │ │ │ ├── u8g_delay.c │ │ │ ├── u8g_dev_a2_micro_printer.c │ │ │ ├── u8g_dev_flipdisc_2x7.c │ │ │ ├── u8g_dev_gprof.c │ │ │ ├── u8g_dev_ht1632.c │ │ │ ├── u8g_dev_ili9325d_320x240.c │ │ │ ├── u8g_dev_ks0108_128x64.c │ │ │ ├── u8g_dev_lc7981_160x80.c │ │ │ ├── u8g_dev_lc7981_240x128.c │ │ │ ├── u8g_dev_lc7981_240x64.c │ │ │ ├── u8g_dev_lc7981_320x64.c │ │ │ ├── u8g_dev_ld7032_60x32.c │ │ │ ├── u8g_dev_null.c │ │ │ ├── u8g_dev_pcd8544_84x48.c │ │ │ ├── u8g_dev_pcf8812_96x65.c │ │ │ ├── u8g_dev_sbn1661_122x32.c │ │ │ ├── u8g_dev_ssd1306_128x32.c │ │ │ ├── u8g_dev_ssd1306_128x64.c │ │ │ ├── u8g_dev_ssd1309_128x64.c │ │ │ ├── u8g_dev_ssd1322_nhd31oled_bw.c │ │ │ ├── u8g_dev_ssd1322_nhd31oled_gr.c │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw.c │ │ │ ├── u8g_dev_ssd1325_nhd27oled_bw_new.c │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr.c │ │ │ ├── u8g_dev_ssd1325_nhd27oled_gr_new.c │ │ │ ├── u8g_dev_ssd1327_96x96_gr.c │ │ │ ├── u8g_dev_ssd1351_128x128.c │ │ │ ├── u8g_dev_st7565_64128n.c │ │ │ ├── u8g_dev_st7565_dogm128.c │ │ │ ├── u8g_dev_st7565_dogm132.c │ │ │ ├── u8g_dev_st7565_lm6059.c │ │ │ ├── u8g_dev_st7565_lm6063.c │ │ │ ├── u8g_dev_st7565_nhd_c12832.c │ │ │ ├── u8g_dev_st7565_nhd_c12864.c │ │ │ ├── u8g_dev_st7687_c144mvgd.c │ │ │ ├── u8g_dev_st7920_128x64.c │ │ │ ├── u8g_dev_st7920_192x32.c │ │ │ ├── u8g_dev_st7920_202x32.c │ │ │ ├── u8g_dev_t6963_128x128.c │ │ │ ├── u8g_dev_t6963_128x64.c │ │ │ ├── u8g_dev_t6963_240x128.c │ │ │ ├── u8g_dev_t6963_240x64.c │ │ │ ├── u8g_dev_tls8204_84x48.c │ │ │ ├── u8g_dev_uc1601_c128032.c │ │ │ ├── u8g_dev_uc1608_240x128.c │ │ │ ├── u8g_dev_uc1608_240x64.c │ │ │ ├── u8g_dev_uc1610_dogxl160.c │ │ │ ├── u8g_dev_uc1611_dogm240.c │ │ │ ├── u8g_dev_uc1611_dogxl240.c │ │ │ ├── u8g_dev_uc1701_dogs102.c │ │ │ ├── u8g_dev_uc1701_mini12864.c │ │ │ ├── u8g_ellipse.c │ │ │ ├── u8g_font.c │ │ │ ├── u8g_font_data.c │ │ │ ├── u8g_line.c │ │ │ ├── u8g_ll_api.c │ │ │ ├── u8g_page.c │ │ │ ├── u8g_pb.c │ │ │ ├── u8g_pb14v1.c │ │ │ ├── u8g_pb16h1.c │ │ │ ├── u8g_pb16h2.c │ │ │ ├── u8g_pb16v1.c │ │ │ ├── u8g_pb16v2.c │ │ │ ├── u8g_pb32h1.c │ │ │ ├── u8g_pb8h1.c │ │ │ ├── u8g_pb8h1f.c │ │ │ ├── u8g_pb8h2.c │ │ │ ├── u8g_pb8h8.c │ │ │ ├── u8g_pb8v1.c │ │ │ ├── u8g_pb8v2.c │ │ │ ├── u8g_pbxh16.c │ │ │ ├── u8g_pbxh24.c │ │ │ ├── u8g_polygon.c │ │ │ ├── u8g_rect.c │ │ │ ├── u8g_rot.c │ │ │ ├── u8g_scale.c │ │ │ ├── u8g_state.c │ │ │ ├── u8g_u16toa.c │ │ │ ├── u8g_u8toa.c │ │ │ └── u8g_virtual_screen.c │ │ └── ugui │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── README_1ST.txt │ │ │ ├── docs │ │ │ └── uGUI_ReferenceGuide.pdf │ │ │ ├── ugui.c │ │ │ ├── ugui.h │ │ │ ├── ugui.mk │ │ │ ├── ugui_bus.c │ │ │ ├── ugui_bus.h │ │ │ ├── ugui_bus_i2c.c │ │ │ ├── ugui_bus_private.h │ │ │ ├── ugui_bus_rs232.c │ │ │ ├── ugui_bus_spi.c │ │ │ ├── ugui_bus_virtual.c │ │ │ ├── ugui_config.h │ │ │ ├── ugui_driver.c │ │ │ ├── ugui_driver.h │ │ │ ├── ugui_driver_digole.c │ │ │ ├── ugui_driver_digole.h │ │ │ ├── ugui_driver_private.h │ │ │ ├── ugui_driver_ssd1306.c │ │ │ ├── ugui_driver_ssd1306.h │ │ │ ├── ugui_driver_virtual.c │ │ │ └── ugui_driver_virtual.h │ ├── inputs │ │ ├── button_manager │ │ │ ├── button_manager.c │ │ │ ├── button_manager.h │ │ │ └── button_manager.mk │ │ └── gpio_button │ │ │ ├── gpio_button.c │ │ │ ├── gpio_button.h │ │ │ └── gpio_button.mk │ ├── ota2_bt_service │ │ ├── fw_upgrade.c │ │ ├── ota2_bt_service.mk │ │ ├── ota_fw_upgrade.c │ │ ├── ota_fw_upgrade.h │ │ ├── wiced_bt_firmware_upgrade.h │ │ └── wiced_bt_fw_upgrade.h │ ├── protocols │ │ ├── AMQP │ │ │ ├── AMQPv0_9 │ │ │ │ ├── AMQPv0_9.mk │ │ │ │ ├── README │ │ │ │ ├── amqp.h │ │ │ │ ├── amqp_channel.c │ │ │ │ ├── amqp_connection.c │ │ │ │ ├── amqp_connection.h │ │ │ │ ├── amqp_frame.c │ │ │ │ ├── amqp_frame.h │ │ │ │ ├── amqp_manager.c │ │ │ │ ├── amqp_manager.h │ │ │ │ ├── amqp_network.c │ │ │ │ └── amqp_network.h │ │ │ └── AMQPv1_0 │ │ │ │ ├── AMQPv1_0.mk │ │ │ │ ├── amqp.h │ │ │ │ ├── amqp_connection.c │ │ │ │ ├── amqp_connection.h │ │ │ │ ├── amqp_flow.c │ │ │ │ ├── amqp_flow.h │ │ │ │ ├── amqp_frame.c │ │ │ │ ├── amqp_frame.h │ │ │ │ ├── amqp_internal.h │ │ │ │ ├── amqp_link.c │ │ │ │ ├── amqp_link.h │ │ │ │ ├── amqp_manager.c │ │ │ │ ├── amqp_manager.h │ │ │ │ ├── amqp_network.c │ │ │ │ ├── amqp_network.h │ │ │ │ ├── amqp_open.c │ │ │ │ ├── amqp_open.h │ │ │ │ ├── amqp_sasl.c │ │ │ │ ├── amqp_sasl.h │ │ │ │ ├── amqp_session.c │ │ │ │ ├── amqp_session.h │ │ │ │ ├── amqp_transfer.c │ │ │ │ └── amqp_transfer.h │ │ ├── AWS │ │ │ ├── AWS.mk │ │ │ ├── aws_common.h │ │ │ ├── aws_greengrass_discovery.c │ │ │ ├── aws_http_client.c │ │ │ ├── aws_internal.h │ │ │ ├── aws_mqtt.c │ │ │ ├── wiced_aws.c │ │ │ └── wiced_aws.h │ │ ├── COAP │ │ │ ├── COAP.mk │ │ │ ├── client │ │ │ │ ├── coap_client.c │ │ │ │ ├── coap_client.h │ │ │ │ ├── coap_client_common.h │ │ │ │ └── coap_client_internal.h │ │ │ ├── coap_common.h │ │ │ ├── parser │ │ │ │ ├── coap_parser.c │ │ │ │ └── coap_parser.h │ │ │ └── server │ │ │ │ ├── coap_server.c │ │ │ │ ├── coap_server.h │ │ │ │ ├── coap_server_common.h │ │ │ │ └── coap_server_internal.h │ │ ├── DNS │ │ │ ├── DNS.mk │ │ │ ├── dns.c │ │ │ ├── dns.h │ │ │ └── dns_internal.h │ │ ├── HTTP │ │ │ ├── HTTP.mk │ │ │ ├── http.c │ │ │ ├── http.h │ │ │ ├── http_stream.c │ │ │ └── http_stream.h │ │ ├── HTTP2 │ │ │ ├── HTTP2.mk │ │ │ ├── http2.c │ │ │ ├── http2.h │ │ │ ├── http2_frame.c │ │ │ ├── http2_hpack.c │ │ │ ├── http2_network.c │ │ │ └── http2_pvt.h │ │ ├── HTTP_client │ │ │ ├── HTTP_client.mk │ │ │ ├── http.c │ │ │ ├── http.h │ │ │ ├── http_client.c │ │ │ └── http_client.h │ │ ├── MQTT │ │ │ ├── MQTT.mk │ │ │ ├── README │ │ │ ├── linked_list.h │ │ │ ├── mqtt_api.c │ │ │ ├── mqtt_api.h │ │ │ ├── mqtt_common.h │ │ │ ├── mqtt_connection.c │ │ │ ├── mqtt_connection.h │ │ │ ├── mqtt_frame.c │ │ │ ├── mqtt_frame.h │ │ │ ├── mqtt_internal.h │ │ │ ├── mqtt_manager.c │ │ │ ├── mqtt_manager.h │ │ │ ├── mqtt_network.c │ │ │ ├── mqtt_network.h │ │ │ ├── mqtt_session.c │ │ │ └── mqtt_session.h │ │ ├── SMTP │ │ │ ├── SMTP.mk │ │ │ ├── smtp.c │ │ │ └── smtp.h │ │ ├── SNTP │ │ │ ├── SNTP.mk │ │ │ ├── sntp.c │ │ │ └── sntp.h │ │ ├── UPNP │ │ │ ├── ChangeLog │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── UPNP.mk │ │ │ ├── autoconfig.h │ │ │ ├── docs │ │ │ │ └── dist │ │ │ │ │ ├── IXML_Programming_Guide.pdf │ │ │ │ │ └── UPnP_Programming_Guide.pdf │ │ │ ├── ixml │ │ │ │ ├── inc │ │ │ │ │ ├── ixml.h │ │ │ │ │ └── ixmldebug.h │ │ │ │ └── src │ │ │ │ │ ├── attr.c │ │ │ │ │ ├── document.c │ │ │ │ │ ├── element.c │ │ │ │ │ ├── inc │ │ │ │ │ ├── ixmlmembuf.h │ │ │ │ │ └── ixmlparser.h │ │ │ │ │ ├── ixml.c │ │ │ │ │ ├── ixmldebug.c │ │ │ │ │ ├── ixmlmembuf.c │ │ │ │ │ ├── ixmlparser.c │ │ │ │ │ ├── namedNodeMap.c │ │ │ │ │ ├── node.c │ │ │ │ │ └── nodeList.c │ │ │ ├── threadutil │ │ │ │ ├── inc │ │ │ │ │ ├── FreeList.h │ │ │ │ │ ├── LinkedList.h │ │ │ │ │ ├── ThreadPool.h │ │ │ │ │ ├── TimerThread.h │ │ │ │ │ └── ithread.h │ │ │ │ └── src │ │ │ │ │ ├── FreeList.c │ │ │ │ │ ├── LinkedList.c │ │ │ │ │ ├── ThreadPool.c │ │ │ │ │ └── TimerThread.c │ │ │ └── upnp │ │ │ │ ├── LICENSE │ │ │ │ ├── inc │ │ │ │ ├── UpnpGlobal.h │ │ │ │ ├── UpnpInet.h │ │ │ │ ├── UpnpIntTypes.h │ │ │ │ ├── UpnpStdInt.h │ │ │ │ ├── UpnpString.h │ │ │ │ ├── UpnpUniStd.h │ │ │ │ ├── upnp.h │ │ │ │ ├── upnpconfig.h │ │ │ │ ├── upnpconfig.h.in │ │ │ │ ├── upnpdebug.h │ │ │ │ └── upnptools.h │ │ │ │ └── src │ │ │ │ ├── api │ │ │ │ ├── UpnpString.c │ │ │ │ ├── upnpapi.c │ │ │ │ ├── upnpdebug.c │ │ │ │ └── upnptools.c │ │ │ │ ├── gena │ │ │ │ ├── gena_callback2.c │ │ │ │ ├── gena_ctrlpt.c │ │ │ │ └── gena_device.c │ │ │ │ ├── genlib │ │ │ │ ├── client_table │ │ │ │ │ └── client_table.c │ │ │ │ ├── miniserver │ │ │ │ │ ├── miniserver.c │ │ │ │ │ └── wiced_miniserver.c │ │ │ │ ├── net │ │ │ │ │ ├── http │ │ │ │ │ │ ├── httpparser.c │ │ │ │ │ │ ├── httpreadwrite.c │ │ │ │ │ │ ├── parsetools.c │ │ │ │ │ │ ├── statcodes.c │ │ │ │ │ │ └── webserver.c │ │ │ │ │ ├── sock.c │ │ │ │ │ └── uri │ │ │ │ │ │ └── uri.c │ │ │ │ ├── service_table │ │ │ │ │ └── service_table.c │ │ │ │ └── util │ │ │ │ │ ├── membuffer.c │ │ │ │ │ ├── strintmap.c │ │ │ │ │ ├── upnp_timeout.c │ │ │ │ │ └── util.c │ │ │ │ ├── inc │ │ │ │ ├── VirtualDir.h │ │ │ │ ├── client_table.h │ │ │ │ ├── config.h │ │ │ │ ├── gena.h │ │ │ │ ├── gena_ctrlpt.h │ │ │ │ ├── gena_device.h │ │ │ │ ├── global.h │ │ │ │ ├── gmtdate.h │ │ │ │ ├── httpparser.h │ │ │ │ ├── httpreadwrite.h │ │ │ │ ├── inet_pton.h │ │ │ │ ├── md5.h │ │ │ │ ├── membuffer.h │ │ │ │ ├── miniserver.h │ │ │ │ ├── netall.h │ │ │ │ ├── parsetools.h │ │ │ │ ├── server.h │ │ │ │ ├── service_table.h │ │ │ │ ├── soaplib.h │ │ │ │ ├── sock.h │ │ │ │ ├── ssdplib.h │ │ │ │ ├── statcodes.h │ │ │ │ ├── statuscodes.h │ │ │ │ ├── strintmap.h │ │ │ │ ├── sysdep.h │ │ │ │ ├── unixutil.h │ │ │ │ ├── upnp_timeout.h │ │ │ │ ├── upnpapi.h │ │ │ │ ├── upnputil.h │ │ │ │ ├── uri.h │ │ │ │ ├── urlconfig.h │ │ │ │ ├── uuid.h │ │ │ │ └── webserver.h │ │ │ │ ├── inet_pton.c │ │ │ │ ├── soap │ │ │ │ ├── soap_common.c │ │ │ │ ├── soap_ctrlpt.c │ │ │ │ └── soap_device.c │ │ │ │ ├── ssdp │ │ │ │ ├── ssdp_ResultData.h │ │ │ │ ├── ssdp_ctrlpt.c │ │ │ │ ├── ssdp_device.c │ │ │ │ └── ssdp_server.c │ │ │ │ ├── urlconfig │ │ │ │ └── urlconfig.c │ │ │ │ └── uuid │ │ │ │ ├── md5.c │ │ │ │ ├── sysdep.c │ │ │ │ └── uuid.c │ │ ├── Xively │ │ │ ├── Xively.mk │ │ │ ├── global_sign.cer │ │ │ ├── xively.c │ │ │ └── xively.h │ │ ├── websocket │ │ │ ├── websocket.c │ │ │ ├── websocket.h │ │ │ ├── websocket.mk │ │ │ ├── websocket_handshake.c │ │ │ ├── websocket_handshake.h │ │ │ ├── websocket_internal.h │ │ │ └── websocket_server.c │ │ └── wiced_hci │ │ │ ├── bt_firmware.c │ │ │ ├── bt_firmware.h │ │ │ ├── bt_hci_interface.h │ │ │ ├── wiced_hci.c │ │ │ ├── wiced_hci.h │ │ │ ├── wiced_hci.mk │ │ │ ├── wiced_uart.c │ │ │ └── wiced_uart.h │ ├── scripting │ │ └── javascript │ │ │ └── duktape │ │ │ ├── README.rst │ │ │ ├── dukluv │ │ │ ├── refs.c │ │ │ ├── refs.h │ │ │ ├── schema.c │ │ │ ├── schema.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ │ ├── duktape.mk │ │ │ ├── modules │ │ │ ├── audio.c │ │ │ ├── audio.h │ │ │ ├── callback_loop.c │ │ │ ├── callback_loop.h │ │ │ ├── dpm.c │ │ │ ├── dpm.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── wiced_duktape_module_time.c │ │ │ ├── wiced_duktape_module_wifi.c │ │ │ ├── wiced_websocket.c │ │ │ ├── wiced_websocket.h │ │ │ ├── wss.c │ │ │ ├── wss.h │ │ │ ├── xhr.c │ │ │ └── xhr.h │ │ │ ├── objects │ │ │ ├── wiced_duktape_object_audio.c │ │ │ ├── wiced_duktape_object_time.c │ │ │ └── wiced_duktape_object_xmlhttprequest.c │ │ │ ├── src │ │ │ ├── ver2.0.0 │ │ │ │ ├── AUTHORS.rst │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile.cmdline │ │ │ │ ├── Makefile.codepage │ │ │ │ ├── Makefile.coffee │ │ │ │ ├── Makefile.dukdebug │ │ │ │ ├── Makefile.eval │ │ │ │ ├── Makefile.eventloop │ │ │ │ ├── Makefile.hello │ │ │ │ ├── Makefile.jxpretty │ │ │ │ ├── Makefile.sandbox │ │ │ │ ├── Makefile.sharedlibrary │ │ │ │ ├── README.rst │ │ │ │ ├── config │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── architectures.yaml │ │ │ │ │ ├── architectures │ │ │ │ │ │ ├── architecture_arm32.h.in │ │ │ │ │ │ ├── architecture_arm64.h.in │ │ │ │ │ │ ├── architecture_emscripten.h.in │ │ │ │ │ │ ├── architecture_generic.h.in │ │ │ │ │ │ ├── architecture_m68k.h.in │ │ │ │ │ │ ├── architecture_mips32.h.in │ │ │ │ │ │ ├── architecture_mips64.h.in │ │ │ │ │ │ ├── architecture_powerpc32.h.in │ │ │ │ │ │ ├── architecture_powerpc64.h.in │ │ │ │ │ │ ├── architecture_sparc32.h.in │ │ │ │ │ │ ├── architecture_sparc64.h.in │ │ │ │ │ │ ├── architecture_superh.h.in │ │ │ │ │ │ ├── architecture_x32.h.in │ │ │ │ │ │ ├── architecture_x64.h.in │ │ │ │ │ │ └── architecture_x86.h.in │ │ │ │ │ ├── compilers.yaml │ │ │ │ │ ├── compilers │ │ │ │ │ │ ├── compiler_bcc.h.in │ │ │ │ │ │ ├── compiler_clang.h.in │ │ │ │ │ │ ├── compiler_emscripten.h.in │ │ │ │ │ │ ├── compiler_gcc.h.in │ │ │ │ │ │ ├── compiler_generic.h.in │ │ │ │ │ │ ├── compiler_msvc.h.in │ │ │ │ │ │ ├── compiler_tinyc.h.in │ │ │ │ │ │ └── compiler_vbcc.h.in │ │ │ │ │ ├── config-options │ │ │ │ │ │ ├── DUK_USE_32BIT_PTRS.yaml │ │ │ │ │ │ ├── DUK_USE_64BIT_OPS.yaml │ │ │ │ │ │ ├── DUK_USE_ALIGN_4.yaml │ │ │ │ │ │ ├── DUK_USE_ALIGN_8.yaml │ │ │ │ │ │ ├── DUK_USE_ALIGN_BY.yaml │ │ │ │ │ │ ├── DUK_USE_ARCH_STRING.yaml │ │ │ │ │ │ ├── DUK_USE_ARRAY_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_ARRAY_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_ARRAY_PROP_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_ASSERTIONS.yaml │ │ │ │ │ │ ├── DUK_USE_ATAN2_WORKAROUNDS.yaml │ │ │ │ │ │ ├── DUK_USE_AUGMENT_ERROR_CREATE.yaml │ │ │ │ │ │ ├── DUK_USE_AUGMENT_ERROR_THROW.yaml │ │ │ │ │ │ ├── DUK_USE_AVOID_PLATFORM_FUNCPTRS.yaml │ │ │ │ │ │ ├── DUK_USE_BASE64_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_BOOLEAN_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_BRANCH_HINTS.yaml │ │ │ │ │ │ ├── DUK_USE_BROWSER_LIKE.yaml │ │ │ │ │ │ ├── DUK_USE_BUFFEROBJECT_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_BUFLEN16.yaml │ │ │ │ │ │ ├── DUK_USE_BUILTIN_INITJS.yaml │ │ │ │ │ │ ├── DUK_USE_BYTECODE_DUMP_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_BYTEORDER.yaml │ │ │ │ │ │ ├── DUK_USE_BYTEORDER_FORCED.yaml │ │ │ │ │ │ ├── DUK_USE_COMMONJS_MODULES.yaml │ │ │ │ │ │ ├── DUK_USE_COMPILER_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_COMPILER_STRING.yaml │ │ │ │ │ │ ├── DUK_USE_COMPUTED_INFINITY.yaml │ │ │ │ │ │ ├── DUK_USE_COMPUTED_NAN.yaml │ │ │ │ │ │ ├── DUK_USE_COROUTINE_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_CPP_EXCEPTIONS.yaml │ │ │ │ │ │ ├── DUK_USE_DATAPTR16.yaml │ │ │ │ │ │ ├── DUK_USE_DATAPTR_DEC16.yaml │ │ │ │ │ │ ├── DUK_USE_DATAPTR_ENC16.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_FMT_STRFTIME.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_FORMAT_STRING.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_GET_LOCAL_TZOFFSET.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_GET_NOW.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_NOW_GETTIMEOFDAY.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_NOW_TIME.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_NOW_WINDOWS.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_PARSE_STRING.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_PRS_GETDATE.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_PRS_STRPTIME.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_TZO_GMTIME.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_TZO_GMTIME_R.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_TZO_GMTIME_S.yaml │ │ │ │ │ │ ├── DUK_USE_DATE_TZO_WINDOWS.yaml │ │ │ │ │ │ ├── DUK_USE_DDDPRINT.yaml │ │ │ │ │ │ ├── DUK_USE_DDPRINT.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUG.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_DUMPHEAP.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_FWD_LOGGING.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_FWD_PRINTALERT.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_INSPECT.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_PAUSE_UNCAUGHT.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_THROW_NOTIFY.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUGGER_TRANSPORT_TORTURE.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUG_BUFSIZE.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUG_LEVEL.yaml │ │ │ │ │ │ ├── DUK_USE_DEBUG_WRITE.yaml │ │ │ │ │ │ ├── DUK_USE_DEEP_C_STACK.yaml │ │ │ │ │ │ ├── DUK_USE_DOUBLE_BE.yaml │ │ │ │ │ │ ├── DUK_USE_DOUBLE_LE.yaml │ │ │ │ │ │ ├── DUK_USE_DOUBLE_LINKED_HEAP.yaml │ │ │ │ │ │ ├── DUK_USE_DOUBLE_ME.yaml │ │ │ │ │ │ ├── DUK_USE_DPRINT.yaml │ │ │ │ │ │ ├── DUK_USE_DPRINT_COLORS.yaml │ │ │ │ │ │ ├── DUK_USE_DPRINT_RDTSC.yaml │ │ │ │ │ │ ├── DUK_USE_DUKTAPE_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_ENCODING_BUILTINS.yaml │ │ │ │ │ │ ├── DUK_USE_ERRCREATE.yaml │ │ │ │ │ │ ├── DUK_USE_ERRTHROW.yaml │ │ │ │ │ │ ├── DUK_USE_ES6.yaml │ │ │ │ │ │ ├── DUK_USE_ES6_OBJECT_PROTO_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_USE_ES6_OBJECT_SETPROTOTYPEOF.yaml │ │ │ │ │ │ ├── DUK_USE_ES6_PROXY.yaml │ │ │ │ │ │ ├── DUK_USE_ES6_REGEXP_BRACES.yaml │ │ │ │ │ │ ├── DUK_USE_ES6_REGEXP_SYNTAX.yaml │ │ │ │ │ │ ├── DUK_USE_ES6_UNICODE_ESCAPE.yaml │ │ │ │ │ │ ├── DUK_USE_ES7_EXP_OPERATOR.yaml │ │ │ │ │ │ ├── DUK_USE_ESBC_LIMITS.yaml │ │ │ │ │ │ ├── DUK_USE_ESBC_MAX_BYTES.yaml │ │ │ │ │ │ ├── DUK_USE_ESBC_MAX_LINENUMBER.yaml │ │ │ │ │ │ ├── DUK_USE_EXAMPLE.yaml │ │ │ │ │ │ ├── DUK_USE_EXEC_FUN_LOCAL.yaml │ │ │ │ │ │ ├── DUK_USE_EXEC_INDIRECT_BOUND_CHECK.yaml │ │ │ │ │ │ ├── DUK_USE_EXEC_PREFER_SIZE.yaml │ │ │ │ │ │ ├── DUK_USE_EXEC_REGCONST_OPTIMIZE.yaml │ │ │ │ │ │ ├── DUK_USE_EXEC_TIMEOUT_CHECK.yaml │ │ │ │ │ │ ├── DUK_USE_EXPLICIT_NULL_INIT.yaml │ │ │ │ │ │ ├── DUK_USE_EXTSTR_FREE.yaml │ │ │ │ │ │ ├── DUK_USE_EXTSTR_INTERN_CHECK.yaml │ │ │ │ │ │ ├── DUK_USE_FASTINT.yaml │ │ │ │ │ │ ├── DUK_USE_FAST_REFCOUNT_DEFAULT.yaml │ │ │ │ │ │ ├── DUK_USE_FATAL_HANDLER.yaml │ │ │ │ │ │ ├── DUK_USE_FILE_IO.yaml │ │ │ │ │ │ ├── DUK_USE_FINALIZER_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_FLEX_C99.yaml │ │ │ │ │ │ ├── DUK_USE_FLEX_ONESIZE.yaml │ │ │ │ │ │ ├── DUK_USE_FLEX_ZEROSIZE.yaml │ │ │ │ │ │ ├── DUK_USE_FULL_TVAL.yaml │ │ │ │ │ │ ├── DUK_USE_FUNCPTR16.yaml │ │ │ │ │ │ ├── DUK_USE_FUNCPTR_DEC16.yaml │ │ │ │ │ │ ├── DUK_USE_FUNCPTR_ENC16.yaml │ │ │ │ │ │ ├── DUK_USE_FUNCTION_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_FUNC_FILENAME_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_USE_FUNC_NAME_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_USE_GCC_PRAGMAS.yaml │ │ │ │ │ │ ├── DUK_USE_GC_TORTURE.yaml │ │ │ │ │ │ ├── DUK_USE_GET_RANDOM_DOUBLE.yaml │ │ │ │ │ │ ├── DUK_USE_GLOBAL_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_HASHBYTES_UNALIGNED_U32_ACCESS.yaml │ │ │ │ │ │ ├── DUK_USE_HEAPPTR16.yaml │ │ │ │ │ │ ├── DUK_USE_HEAPPTR_DEC16.yaml │ │ │ │ │ │ ├── DUK_USE_HEAPPTR_ENC16.yaml │ │ │ │ │ │ ├── DUK_USE_HEX_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_HOBJECT_HASH_PART.yaml │ │ │ │ │ │ ├── DUK_USE_HOBJECT_LAYOUT_1.yaml │ │ │ │ │ │ ├── DUK_USE_HOBJECT_LAYOUT_2.yaml │ │ │ │ │ │ ├── DUK_USE_HOBJECT_LAYOUT_3.yaml │ │ │ │ │ │ ├── DUK_USE_HSTRING_ARRIDX.yaml │ │ │ │ │ │ ├── DUK_USE_HSTRING_CLEN.yaml │ │ │ │ │ │ ├── DUK_USE_HSTRING_EXTDATA.yaml │ │ │ │ │ │ ├── DUK_USE_IDCHAR_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_INTEGER_BE.yaml │ │ │ │ │ │ ├── DUK_USE_INTEGER_LE.yaml │ │ │ │ │ │ ├── DUK_USE_INTEGER_ME.yaml │ │ │ │ │ │ ├── DUK_USE_INTERRUPT_COUNTER.yaml │ │ │ │ │ │ ├── DUK_USE_INTERRUPT_DEBUG_FIXUP.yaml │ │ │ │ │ │ ├── DUK_USE_JC.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_DECNUMBER_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_DECSTRING_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_DEC_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_EATWHITE_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_ENC_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_QUOTESTRING_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_STRINGIFY_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_USE_JSON_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_JX.yaml │ │ │ │ │ │ ├── DUK_USE_LEXER_SLIDING_WINDOW.yaml │ │ │ │ │ │ ├── DUK_USE_LIGHTFUNC_BUILTINS.yaml │ │ │ │ │ │ ├── DUK_USE_MARKANDSWEEP_FINALIZER_TORTURE.yaml │ │ │ │ │ │ ├── DUK_USE_MARK_AND_SWEEP.yaml │ │ │ │ │ │ ├── DUK_USE_MARK_AND_SWEEP_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_MATH_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_MATH_FMAX.yaml │ │ │ │ │ │ ├── DUK_USE_MATH_FMIN.yaml │ │ │ │ │ │ ├── DUK_USE_MATH_ROUND.yaml │ │ │ │ │ │ ├── DUK_USE_MS_STRINGTABLE_RESIZE.yaml │ │ │ │ │ │ ├── DUK_USE_NATIVE_CALL_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_ARRAY_CONCAT_TRAILER.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_ARRAY_MAP_TRAILER.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_ARRAY_SPLICE_DELCOUNT.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_FUNC_CALLER_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_FUNC_SOURCE_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_FUNC_STMT.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_GETTER_KEY_ARGUMENT.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_JSON_ESC_U2028_U2029.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_REGEXP_DOLLAR_ESCAPE.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_SETTER_KEY_ARGUMENT.yaml │ │ │ │ │ │ ├── DUK_USE_NONSTD_STRING_FROMCHARCODE_32BIT.yaml │ │ │ │ │ │ ├── DUK_USE_NO_DOUBLE_ALIASING_SELFTEST.yaml │ │ │ │ │ │ ├── DUK_USE_NUMBER_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_OBJECT_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_OBJSIZES16.yaml │ │ │ │ │ │ ├── DUK_USE_OCTAL_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_OS_STRING.yaml │ │ │ │ │ │ ├── DUK_USE_PACKED_TVAL.yaml │ │ │ │ │ │ ├── DUK_USE_PACKED_TVAL_POSSIBLE.yaml │ │ │ │ │ │ ├── DUK_USE_PACK_CLANG_ATTR.yaml │ │ │ │ │ │ ├── DUK_USE_PACK_DUMMY_MEMBER.yaml │ │ │ │ │ │ ├── DUK_USE_PACK_GCC_ATTR.yaml │ │ │ │ │ │ ├── DUK_USE_PACK_MSVC_PRAGMA.yaml │ │ │ │ │ │ ├── DUK_USE_PANIC_ABORT.yaml │ │ │ │ │ │ ├── DUK_USE_PANIC_EXIT.yaml │ │ │ │ │ │ ├── DUK_USE_PANIC_HANDLER.yaml │ │ │ │ │ │ ├── DUK_USE_PANIC_SEGFAULT.yaml │ │ │ │ │ │ ├── DUK_USE_PARANOID_DATE_COMPUTATION.yaml │ │ │ │ │ │ ├── DUK_USE_PARANOID_ERRORS.yaml │ │ │ │ │ │ ├── DUK_USE_PARANOID_MATH.yaml │ │ │ │ │ │ ├── DUK_USE_PC2LINE.yaml │ │ │ │ │ │ ├── DUK_USE_POW_NETBSD_WORKAROUND.yaml │ │ │ │ │ │ ├── DUK_USE_POW_WORKAROUNDS.yaml │ │ │ │ │ │ ├── DUK_USE_PREFER_SIZE.yaml │ │ │ │ │ │ ├── DUK_USE_PROVIDE_DEFAULT_ALLOC_FUNCTIONS.yaml │ │ │ │ │ │ ├── DUK_USE_RDTSC.yaml │ │ │ │ │ │ ├── DUK_USE_REFCOUNT16.yaml │ │ │ │ │ │ ├── DUK_USE_REFERENCE_COUNTING.yaml │ │ │ │ │ │ ├── DUK_USE_REFLECT_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_REFZERO_FINALIZER_TORTURE.yaml │ │ │ │ │ │ ├── DUK_USE_REGEXP_CANON_WORKAROUND.yaml │ │ │ │ │ │ ├── DUK_USE_REGEXP_COMPILER_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_REGEXP_EXECUTOR_RECLIMIT.yaml │ │ │ │ │ │ ├── DUK_USE_REGEXP_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_USE_REPL_FPCLASSIFY.yaml │ │ │ │ │ │ ├── DUK_USE_REPL_ISFINITE.yaml │ │ │ │ │ │ ├── DUK_USE_REPL_ISINF.yaml │ │ │ │ │ │ ├── DUK_USE_REPL_ISNAN.yaml │ │ │ │ │ │ ├── DUK_USE_REPL_SIGNBIT.yaml │ │ │ │ │ │ ├── DUK_USE_ROM_GLOBAL_CLONE.yaml │ │ │ │ │ │ ├── DUK_USE_ROM_GLOBAL_INHERIT.yaml │ │ │ │ │ │ ├── DUK_USE_ROM_OBJECTS.yaml │ │ │ │ │ │ ├── DUK_USE_ROM_PTRCOMP_FIRST.yaml │ │ │ │ │ │ ├── DUK_USE_ROM_STRINGS.yaml │ │ │ │ │ │ ├── DUK_USE_SECTION_B.yaml │ │ │ │ │ │ ├── DUK_USE_SELF_TESTS.yaml │ │ │ │ │ │ ├── DUK_USE_SETJMP.yaml │ │ │ │ │ │ ├── DUK_USE_SHUFFLE_TORTURE.yaml │ │ │ │ │ │ ├── DUK_USE_SIGSETJMP.yaml │ │ │ │ │ │ ├── DUK_USE_SOURCE_NONBMP.yaml │ │ │ │ │ │ ├── DUK_USE_STRHASH16.yaml │ │ │ │ │ │ ├── DUK_USE_STRHASH_DENSE.yaml │ │ │ │ │ │ ├── DUK_USE_STRHASH_SKIP_SHIFT.yaml │ │ │ │ │ │ ├── DUK_USE_STRICT_DECL.yaml │ │ │ │ │ │ ├── DUK_USE_STRICT_UTF8_SOURCE.yaml │ │ │ │ │ │ ├── DUK_USE_STRING_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_STRLEN16.yaml │ │ │ │ │ │ ├── DUK_USE_STRTAB_CHAIN.yaml │ │ │ │ │ │ ├── DUK_USE_STRTAB_CHAIN_SIZE.yaml │ │ │ │ │ │ ├── DUK_USE_STRTAB_PROBE.yaml │ │ │ │ │ │ ├── DUK_USE_SYMBOL_BUILTIN.yaml │ │ │ │ │ │ ├── DUK_USE_TAILCALL.yaml │ │ │ │ │ │ ├── DUK_USE_TARGET_INFO.yaml │ │ │ │ │ │ ├── DUK_USE_TRACEBACKS.yaml │ │ │ │ │ │ ├── DUK_USE_TRACEBACK_DEPTH.yaml │ │ │ │ │ │ ├── DUK_USE_UNALIGNED_ACCESSES_POSSIBLE.yaml │ │ │ │ │ │ ├── DUK_USE_UNDERSCORE_SETJMP.yaml │ │ │ │ │ │ ├── DUK_USE_UNION_INITIALIZERS.yaml │ │ │ │ │ │ ├── DUK_USE_USER_DECLARE.yaml │ │ │ │ │ │ ├── DUK_USE_USER_INITJS.yaml │ │ │ │ │ │ ├── DUK_USE_VALSTACK_UNSAFE.yaml │ │ │ │ │ │ ├── DUK_USE_VARIADIC_MACROS.yaml │ │ │ │ │ │ ├── DUK_USE_VERBOSE_ERRORS.yaml │ │ │ │ │ │ ├── DUK_USE_VERBOSE_EXECUTOR_ERRORS.yaml │ │ │ │ │ │ ├── DUK_USE_VOLUNTARY_GC.yaml │ │ │ │ │ │ └── DUK_USE_ZERO_BUFFER_DATA.yaml │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── compliance.yaml │ │ │ │ │ │ ├── debugger_support.yaml │ │ │ │ │ │ ├── disable_bufferobjects.yaml │ │ │ │ │ │ ├── disable_es6.yaml │ │ │ │ │ │ ├── enable_debug_print0.yaml │ │ │ │ │ │ ├── enable_debug_print1.yaml │ │ │ │ │ │ ├── enable_debug_print2.yaml │ │ │ │ │ │ ├── enable_fastint.yaml │ │ │ │ │ │ ├── low_memory.yaml │ │ │ │ │ │ ├── low_memory_strip.yaml │ │ │ │ │ │ ├── performance_sensitive.yaml │ │ │ │ │ │ ├── rom_builtins.yaml │ │ │ │ │ │ ├── security_sensitive.yaml │ │ │ │ │ │ ├── shallow_c_stack.yaml │ │ │ │ │ │ └── timing_sensitive.yaml │ │ │ │ │ ├── feature-options │ │ │ │ │ │ ├── DUK_OPT_ASSERTIONS.yaml │ │ │ │ │ │ ├── DUK_OPT_BUFFEROBJECT_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_OPT_BUFLEN16.yaml │ │ │ │ │ │ ├── DUK_OPT_DATAPTR16.yaml │ │ │ │ │ │ ├── DUK_OPT_DATAPTR_DEC16.yaml │ │ │ │ │ │ ├── DUK_OPT_DATAPTR_ENC16.yaml │ │ │ │ │ │ ├── DUK_OPT_DDDPRINT.yaml │ │ │ │ │ │ ├── DUK_OPT_DDPRINT.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUG.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUGGER_DUMPHEAP.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUGGER_FWD_LOGGING.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUGGER_FWD_PRINTALERT.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUGGER_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUGGER_TRANSPORT_TORTURE.yaml │ │ │ │ │ │ ├── DUK_OPT_DEBUG_BUFSIZE.yaml │ │ │ │ │ │ ├── DUK_OPT_DECLARE.yaml │ │ │ │ │ │ ├── DUK_OPT_DEEP_C_STACK.yaml │ │ │ │ │ │ ├── DUK_OPT_DLL_BUILD.yaml │ │ │ │ │ │ ├── DUK_OPT_DPRINT.yaml │ │ │ │ │ │ ├── DUK_OPT_DPRINT_COLORS.yaml │ │ │ │ │ │ ├── DUK_OPT_DPRINT_RDTSC.yaml │ │ │ │ │ │ ├── DUK_OPT_EXAMPLE.yaml │ │ │ │ │ │ ├── DUK_OPT_EXEC_TIMEOUT_CHECK.yaml │ │ │ │ │ │ ├── DUK_OPT_EXTERNAL_STRINGS.yaml │ │ │ │ │ │ ├── DUK_OPT_EXTSTR_FREE.yaml │ │ │ │ │ │ ├── DUK_OPT_EXTSTR_INTERN_CHECK.yaml │ │ │ │ │ │ ├── DUK_OPT_FASTINT.yaml │ │ │ │ │ │ ├── DUK_OPT_FORCE_ALIGN.yaml │ │ │ │ │ │ ├── DUK_OPT_FORCE_BYTEORDER.yaml │ │ │ │ │ │ ├── DUK_OPT_FUNCPTR16.yaml │ │ │ │ │ │ ├── DUK_OPT_FUNCPTR_DEC16.yaml │ │ │ │ │ │ ├── DUK_OPT_FUNCPTR_ENC16.yaml │ │ │ │ │ │ ├── DUK_OPT_FUNC_NONSTD_CALLER_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_OPT_FUNC_NONSTD_SOURCE_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_OPT_GC_TORTURE.yaml │ │ │ │ │ │ ├── DUK_OPT_HAVE_CUSTOM_H.yaml │ │ │ │ │ │ ├── DUK_OPT_HEAPPTR16.yaml │ │ │ │ │ │ ├── DUK_OPT_HEAPPTR_DEC16.yaml │ │ │ │ │ │ ├── DUK_OPT_HEAPPTR_ENC16.yaml │ │ │ │ │ │ ├── DUK_OPT_INTERRUPT_COUNTER.yaml │ │ │ │ │ │ ├── DUK_OPT_JSON_STRINGIFY_FASTPATH.yaml │ │ │ │ │ │ ├── DUK_OPT_LIGHTFUNC_BUILTINS.yaml │ │ │ │ │ │ ├── DUK_OPT_NONSTD_FUNC_CALLER_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_OPT_NONSTD_FUNC_SOURCE_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_ARRAY_SPLICE_NONSTD_DELCOUNT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_AUGMENT_ERRORS.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_BROWSER_LIKE.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_BUFFEROBJECT_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_BYTECODE_DUMP_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_COMMONJS_MODULES.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_ES6_OBJECT_PROTO_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_ES6_OBJECT_SETPROTOTYPEOF.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_ES6_PROXY.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_FILE_IO.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_FUNC_STMT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_JC.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_JSONC.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_JSONX.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_JX.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_MARK_AND_SWEEP.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_MS_STRINGTABLE_RESIZE.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_ACCESSOR_KEY_ARGUMENT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_ARRAY_CONCAT_TRAILER.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_ARRAY_MAP_TRAILER.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_ARRAY_SPLICE_DELCOUNT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_FUNC_STMT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_JSON_ESC_U2028_U2029.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_NONSTD_STRING_FROMCHARCODE_32BIT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_OBJECT_ES6_PROTO_PROPERTY.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_OBJECT_ES6_SETPROTOTYPEOF.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_OCTAL_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_PACKED_TVAL.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_PC2LINE.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_REFERENCE_COUNTING.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_REGEXP_SUPPORT.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_SECTION_B.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_SOURCE_NONBMP.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_STRICT_DECL.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_TRACEBACKS.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_VERBOSE_ERRORS.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_VOLUNTARY_GC.yaml │ │ │ │ │ │ ├── DUK_OPT_NO_ZERO_BUFFER_DATA.yaml │ │ │ │ │ │ ├── DUK_OPT_OBJSIZES16.yaml │ │ │ │ │ │ ├── DUK_OPT_PANIC_HANDLER.yaml │ │ │ │ │ │ ├── DUK_OPT_REFCOUNT16.yaml │ │ │ │ │ │ ├── DUK_OPT_SEGFAULT_ON_PANIC.yaml │ │ │ │ │ │ ├── DUK_OPT_SELF_TESTS.yaml │ │ │ │ │ │ ├── DUK_OPT_SETJMP.yaml │ │ │ │ │ │ ├── DUK_OPT_SHUFFLE_TORTURE.yaml │ │ │ │ │ │ ├── DUK_OPT_SIGSETJMP.yaml │ │ │ │ │ │ ├── DUK_OPT_STRHASH16.yaml │ │ │ │ │ │ ├── DUK_OPT_STRICT_UTF8_SOURCE.yaml │ │ │ │ │ │ ├── DUK_OPT_STRLEN16.yaml │ │ │ │ │ │ ├── DUK_OPT_STRTAB_CHAIN.yaml │ │ │ │ │ │ ├── DUK_OPT_STRTAB_CHAIN_SIZE.yaml │ │ │ │ │ │ ├── DUK_OPT_TARGET_INFO.yaml │ │ │ │ │ │ ├── DUK_OPT_TRACEBACK_DEPTH.yaml │ │ │ │ │ │ ├── DUK_OPT_UNDERSCORE_SETJMP.yaml │ │ │ │ │ │ └── DUK_OPT_USER_INITJS.yaml │ │ │ │ │ ├── header-snippets │ │ │ │ │ │ ├── 64bitops.h.in │ │ │ │ │ │ ├── alignment_fillin.h.in │ │ │ │ │ │ ├── architecture_fillins.h.in │ │ │ │ │ │ ├── byteorder_derived.h.in │ │ │ │ │ │ ├── byteorder_fillin.h.in │ │ │ │ │ │ ├── compiler_fillins.h.in │ │ │ │ │ │ ├── cpp_exception_sanity.h.in │ │ │ │ │ │ ├── date_provider.h.in │ │ │ │ │ │ ├── gcc_clang_visibility.h.in │ │ │ │ │ │ ├── inline_workaround.h.in │ │ │ │ │ │ ├── msvc_visibility.h.in │ │ │ │ │ │ ├── object_layout.h.in │ │ │ │ │ │ ├── packed_tval_fillin.h.in │ │ │ │ │ │ ├── platform_cppextras.h.in │ │ │ │ │ │ ├── platform_fillins.h.in │ │ │ │ │ │ ├── platform_sharedincludes.h.in │ │ │ │ │ │ ├── reject_fast_math.h.in │ │ │ │ │ │ ├── types.h.in │ │ │ │ │ │ ├── types1.h.in │ │ │ │ │ │ ├── types2.h.in │ │ │ │ │ │ ├── types_c99.h.in │ │ │ │ │ │ └── types_legacy.h.in │ │ │ │ │ ├── helper-snippets │ │ │ │ │ │ ├── DUK_F_AMIGAOS.h.in │ │ │ │ │ │ ├── DUK_F_APPLE.h.in │ │ │ │ │ │ ├── DUK_F_ARM.h.in │ │ │ │ │ │ ├── DUK_F_BCC.h.in │ │ │ │ │ │ ├── DUK_F_BSD.h.in │ │ │ │ │ │ ├── DUK_F_C99.h.in │ │ │ │ │ │ ├── DUK_F_CLANG.h.in │ │ │ │ │ │ ├── DUK_F_CPP.h.in │ │ │ │ │ │ ├── DUK_F_CPP11.h.in │ │ │ │ │ │ ├── DUK_F_CYGWIN.h.in │ │ │ │ │ │ ├── DUK_F_EMSCRIPTEN.h.in │ │ │ │ │ │ ├── DUK_F_FLASHPLAYER.h.in │ │ │ │ │ │ ├── DUK_F_FREEBSD.h.in │ │ │ │ │ │ ├── DUK_F_GCC.h.in │ │ │ │ │ │ ├── DUK_F_LINUX.h.in │ │ │ │ │ │ ├── DUK_F_M68K.h.in │ │ │ │ │ │ ├── DUK_F_MINGW.h.in │ │ │ │ │ │ ├── DUK_F_MINT.h.in │ │ │ │ │ │ ├── DUK_F_MIPS.h.in │ │ │ │ │ │ ├── DUK_F_MSVC.h.in │ │ │ │ │ │ ├── DUK_F_NETBSD.h.in │ │ │ │ │ │ ├── DUK_F_NO_STDINT_H.h.in │ │ │ │ │ │ ├── DUK_F_OPENBSD.h.in │ │ │ │ │ │ ├── DUK_F_ORBIS.h.in │ │ │ │ │ │ ├── DUK_F_POSIX.h.in │ │ │ │ │ │ ├── DUK_F_PPC.h.in │ │ │ │ │ │ ├── DUK_F_QNX.h.in │ │ │ │ │ │ ├── DUK_F_SPARC.h.in │ │ │ │ │ │ ├── DUK_F_SUN.h.in │ │ │ │ │ │ ├── DUK_F_SUPERH.h.in │ │ │ │ │ │ ├── DUK_F_TINSPIRE.h.in │ │ │ │ │ │ ├── DUK_F_TINYC.h.in │ │ │ │ │ │ ├── DUK_F_TOS.h.in │ │ │ │ │ │ ├── DUK_F_UCLIBC.h.in │ │ │ │ │ │ ├── DUK_F_ULL_CONSTS.h.in │ │ │ │ │ │ ├── DUK_F_UNIX.h.in │ │ │ │ │ │ ├── DUK_F_VBCC.h.in │ │ │ │ │ │ ├── DUK_F_WINDOWS.h.in │ │ │ │ │ │ └── DUK_F_X86.h.in │ │ │ │ │ ├── other-defines │ │ │ │ │ │ ├── c_types.yaml │ │ │ │ │ │ ├── other_defines.yaml │ │ │ │ │ │ └── platform_functions.yaml │ │ │ │ │ ├── platforms.yaml │ │ │ │ │ ├── platforms │ │ │ │ │ │ ├── platform_amigaos.h.in │ │ │ │ │ │ ├── platform_apple.h.in │ │ │ │ │ │ ├── platform_cygwin.h.in │ │ │ │ │ │ ├── platform_emscripten.h.in │ │ │ │ │ │ ├── platform_flashplayer.h.in │ │ │ │ │ │ ├── platform_generic.h.in │ │ │ │ │ │ ├── platform_genericbsd.h.in │ │ │ │ │ │ ├── platform_genericunix.h.in │ │ │ │ │ │ ├── platform_linux.h.in │ │ │ │ │ │ ├── platform_openbsd.h.in │ │ │ │ │ │ ├── platform_orbis.h.in │ │ │ │ │ │ ├── platform_posix.h.in │ │ │ │ │ │ ├── platform_qnx.h.in │ │ │ │ │ │ ├── platform_solaris.h.in │ │ │ │ │ │ ├── platform_tinspire.h.in │ │ │ │ │ │ ├── platform_tos.h.in │ │ │ │ │ │ └── platform_windows.h.in │ │ │ │ │ └── tags.yaml │ │ │ │ ├── debugger │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── duk_classnames.yaml │ │ │ │ │ ├── duk_debug.js │ │ │ │ │ ├── duk_debug_meta.json │ │ │ │ │ ├── duk_debug_proxy.js │ │ │ │ │ ├── duk_debugcommands.yaml │ │ │ │ │ ├── duk_debugerrors.yaml │ │ │ │ │ ├── duk_opcodes.yaml │ │ │ │ │ ├── package.json │ │ │ │ │ └── static │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── webui.js │ │ │ │ ├── duk_dist_meta.json │ │ │ │ ├── examples │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── alloc-hybrid │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_alloc_hybrid.c │ │ │ │ │ │ └── duk_alloc_hybrid.h │ │ │ │ │ ├── alloc-logging │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_alloc_logging.c │ │ │ │ │ │ ├── duk_alloc_logging.h │ │ │ │ │ │ └── log2gnuplot.py │ │ │ │ │ ├── alloc-torture │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_alloc_torture.c │ │ │ │ │ │ └── duk_alloc_torture.h │ │ │ │ │ ├── cmdline │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_cmdline.c │ │ │ │ │ │ └── duk_cmdline_ajduk.c │ │ │ │ │ ├── codepage-conv │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_codepage_conv.c │ │ │ │ │ │ ├── duk_codepage_conv.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── coffee │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── globals.coffee │ │ │ │ │ │ ├── hello.coffee │ │ │ │ │ │ └── mandel.coffee │ │ │ │ │ ├── cpp-exceptions │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ └── cpp_exceptions.cpp │ │ │ │ │ ├── debug-trans-dvalue │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_trans_dvalue.c │ │ │ │ │ │ ├── duk_trans_dvalue.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── debug-trans-socket │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_trans_socket.h │ │ │ │ │ │ ├── duk_trans_socket_unix.c │ │ │ │ │ │ └── duk_trans_socket_windows.c │ │ │ │ │ ├── dummy-date-provider │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ └── dummy_date_provider.c │ │ │ │ │ ├── eval │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ └── eval.c │ │ │ │ │ ├── eventloop │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── basic-test.js │ │ │ │ │ │ ├── c_eventloop.c │ │ │ │ │ │ ├── c_eventloop.js │ │ │ │ │ │ ├── client-socket-test.js │ │ │ │ │ │ ├── curses-timers.js │ │ │ │ │ │ ├── ecma_eventloop.js │ │ │ │ │ │ ├── fileio.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── ncurses.c │ │ │ │ │ │ ├── poll.c │ │ │ │ │ │ ├── server-socket-test.js │ │ │ │ │ │ └── socket.c │ │ │ │ │ ├── guide │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── fib.js │ │ │ │ │ │ ├── prime.js │ │ │ │ │ │ ├── primecheck.c │ │ │ │ │ │ ├── process.js │ │ │ │ │ │ ├── processlines.c │ │ │ │ │ │ └── uppercase.c │ │ │ │ │ ├── hello │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ └── hello.c │ │ │ │ │ ├── jxpretty │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ └── jxpretty.c │ │ │ │ │ └── sandbox │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ └── sandbox.c │ │ │ │ ├── extras │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── alloc-pool │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_alloc_pool.c │ │ │ │ │ │ ├── duk_alloc_pool.h │ │ │ │ │ │ ├── ptrcomp.yaml │ │ │ │ │ │ ├── ptrcomp_fixup.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── console │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_console.c │ │ │ │ │ │ ├── duk_console.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── duk-v1-compat │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_v1_compat.c │ │ │ │ │ │ ├── duk_v1_compat.h │ │ │ │ │ │ ├── test.c │ │ │ │ │ │ ├── test_compile1.js │ │ │ │ │ │ ├── test_compile2.js │ │ │ │ │ │ ├── test_eval1.js │ │ │ │ │ │ └── test_eval2.js │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_logging.c │ │ │ │ │ │ ├── duk_logging.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── minimal-printf │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_minimal_printf.c │ │ │ │ │ │ ├── duk_minimal_printf.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── module-duktape │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_module_duktape.c │ │ │ │ │ │ ├── duk_module_duktape.h │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── module-node │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_module_node.c │ │ │ │ │ │ ├── duk_module_node.h │ │ │ │ │ │ └── test.c │ │ │ │ │ └── print-alert │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── duk_print_alert.c │ │ │ │ │ │ ├── duk_print_alert.h │ │ │ │ │ │ └── test.c │ │ │ │ ├── license.spdx │ │ │ │ ├── licenses │ │ │ │ │ ├── commonjs.txt │ │ │ │ │ ├── lua.txt │ │ │ │ │ ├── murmurhash2.txt │ │ │ │ │ ├── splitmix64.txt │ │ │ │ │ └── xoroshiro128plus.txt │ │ │ │ ├── mandel.js │ │ │ │ ├── polyfills │ │ │ │ │ ├── console-minimal.js │ │ │ │ │ ├── duktape-buffer.js │ │ │ │ │ ├── duktape-error-setter-nonwritable.js │ │ │ │ │ ├── duktape-error-setter-writable.js │ │ │ │ │ ├── duktape-isfastint.js │ │ │ │ │ ├── object-assign.js │ │ │ │ │ ├── object-prototype-definegetter.js │ │ │ │ │ ├── object-prototype-definesetter.js │ │ │ │ │ └── performance-now.js │ │ │ │ ├── src-WICED-low-memory │ │ │ │ │ ├── duk_config.h │ │ │ │ │ ├── duk_source_meta.json │ │ │ │ │ ├── duktape.c │ │ │ │ │ └── duktape.h │ │ │ │ ├── src-WICED │ │ │ │ │ ├── duk_config.h │ │ │ │ │ ├── duk_source_meta.json │ │ │ │ │ ├── duktape.c │ │ │ │ │ └── duktape.h │ │ │ │ ├── src-input │ │ │ │ │ ├── SpecialCasing-8bit.txt │ │ │ │ │ ├── SpecialCasing.txt │ │ │ │ │ ├── UnicodeData-8bit.txt │ │ │ │ │ ├── UnicodeData.txt │ │ │ │ │ ├── builtins.yaml │ │ │ │ │ ├── duk_alloc_default.c │ │ │ │ │ ├── duk_api_buffer.c │ │ │ │ │ ├── duk_api_bytecode.c │ │ │ │ │ ├── duk_api_call.c │ │ │ │ │ ├── duk_api_codec.c │ │ │ │ │ ├── duk_api_compile.c │ │ │ │ │ ├── duk_api_debug.c │ │ │ │ │ ├── duk_api_heap.c │ │ │ │ │ ├── duk_api_inspect.c │ │ │ │ │ ├── duk_api_internal.h │ │ │ │ │ ├── duk_api_memory.c │ │ │ │ │ ├── duk_api_object.c │ │ │ │ │ ├── duk_api_public.h.in │ │ │ │ │ ├── duk_api_stack.c │ │ │ │ │ ├── duk_api_string.c │ │ │ │ │ ├── duk_api_time.c │ │ │ │ │ ├── duk_bi_array.c │ │ │ │ │ ├── duk_bi_boolean.c │ │ │ │ │ ├── duk_bi_buffer.c │ │ │ │ │ ├── duk_bi_date.c │ │ │ │ │ ├── duk_bi_date_unix.c │ │ │ │ │ ├── duk_bi_date_windows.c │ │ │ │ │ ├── duk_bi_duktape.c │ │ │ │ │ ├── duk_bi_encoding.c │ │ │ │ │ ├── duk_bi_error.c │ │ │ │ │ ├── duk_bi_function.c │ │ │ │ │ ├── duk_bi_global.c │ │ │ │ │ ├── duk_bi_json.c │ │ │ │ │ ├── duk_bi_math.c │ │ │ │ │ ├── duk_bi_number.c │ │ │ │ │ ├── duk_bi_object.c │ │ │ │ │ ├── duk_bi_pointer.c │ │ │ │ │ ├── duk_bi_protos.h │ │ │ │ │ ├── duk_bi_proxy.c │ │ │ │ │ ├── duk_bi_reflect.c │ │ │ │ │ ├── duk_bi_regexp.c │ │ │ │ │ ├── duk_bi_string.c │ │ │ │ │ ├── duk_bi_symbol.c │ │ │ │ │ ├── duk_bi_thread.c │ │ │ │ │ ├── duk_bi_thrower.c │ │ │ │ │ ├── duk_dblunion.h.in │ │ │ │ │ ├── duk_debug.h │ │ │ │ │ ├── duk_debug_fixedbuffer.c │ │ │ │ │ ├── duk_debug_macros.c │ │ │ │ │ ├── duk_debug_vsnprintf.c │ │ │ │ │ ├── duk_debugger.c │ │ │ │ │ ├── duk_debugger.h │ │ │ │ │ ├── duk_error.h │ │ │ │ │ ├── duk_error_augment.c │ │ │ │ │ ├── duk_error_longjmp.c │ │ │ │ │ ├── duk_error_macros.c │ │ │ │ │ ├── duk_error_misc.c │ │ │ │ │ ├── duk_error_throw.c │ │ │ │ │ ├── duk_exception.h │ │ │ │ │ ├── duk_forwdecl.h │ │ │ │ │ ├── duk_harray.h │ │ │ │ │ ├── duk_hbuffer.h │ │ │ │ │ ├── duk_hbuffer_alloc.c │ │ │ │ │ ├── duk_hbuffer_ops.c │ │ │ │ │ ├── duk_hbufobj.h │ │ │ │ │ ├── duk_hbufobj_misc.c │ │ │ │ │ ├── duk_hcompfunc.h │ │ │ │ │ ├── duk_heap.h │ │ │ │ │ ├── duk_heap_alloc.c │ │ │ │ │ ├── duk_heap_hashstring.c │ │ │ │ │ ├── duk_heap_markandsweep.c │ │ │ │ │ ├── duk_heap_memory.c │ │ │ │ │ ├── duk_heap_misc.c │ │ │ │ │ ├── duk_heap_refcount.c │ │ │ │ │ ├── duk_heap_stringcache.c │ │ │ │ │ ├── duk_heap_stringtable.c │ │ │ │ │ ├── duk_heaphdr.h │ │ │ │ │ ├── duk_hnatfunc.h │ │ │ │ │ ├── duk_hobject.h │ │ │ │ │ ├── duk_hobject_alloc.c │ │ │ │ │ ├── duk_hobject_class.c │ │ │ │ │ ├── duk_hobject_enum.c │ │ │ │ │ ├── duk_hobject_finalizer.c │ │ │ │ │ ├── duk_hobject_misc.c │ │ │ │ │ ├── duk_hobject_pc2line.c │ │ │ │ │ ├── duk_hobject_props.c │ │ │ │ │ ├── duk_hstring.h │ │ │ │ │ ├── duk_hstring_misc.c │ │ │ │ │ ├── duk_hthread.h │ │ │ │ │ ├── duk_hthread_alloc.c │ │ │ │ │ ├── duk_hthread_builtins.c │ │ │ │ │ ├── duk_hthread_misc.c │ │ │ │ │ ├── duk_hthread_stacks.c │ │ │ │ │ ├── duk_internal.h │ │ │ │ │ ├── duk_jmpbuf.h │ │ │ │ │ ├── duk_js.h │ │ │ │ │ ├── duk_js_arith.c │ │ │ │ │ ├── duk_js_bytecode.h │ │ │ │ │ ├── duk_js_call.c │ │ │ │ │ ├── duk_js_compiler.c │ │ │ │ │ ├── duk_js_compiler.h │ │ │ │ │ ├── duk_js_executor.c │ │ │ │ │ ├── duk_js_ops.c │ │ │ │ │ ├── duk_js_var.c │ │ │ │ │ ├── duk_json.h │ │ │ │ │ ├── duk_lexer.c │ │ │ │ │ ├── duk_lexer.h │ │ │ │ │ ├── duk_numconv.c │ │ │ │ │ ├── duk_numconv.h │ │ │ │ │ ├── duk_regexp.h │ │ │ │ │ ├── duk_regexp_compiler.c │ │ │ │ │ ├── duk_regexp_executor.c │ │ │ │ │ ├── duk_replacements.c │ │ │ │ │ ├── duk_replacements.h │ │ │ │ │ ├── duk_selftest.c │ │ │ │ │ ├── duk_selftest.h │ │ │ │ │ ├── duk_strings.h │ │ │ │ │ ├── duk_tval.c │ │ │ │ │ ├── duk_tval.h │ │ │ │ │ ├── duk_unicode.h │ │ │ │ │ ├── duk_unicode_support.c │ │ │ │ │ ├── duk_unicode_tables.c │ │ │ │ │ ├── duk_util.h │ │ │ │ │ ├── duk_util_bitdecoder.c │ │ │ │ │ ├── duk_util_bitencoder.c │ │ │ │ │ ├── duk_util_bufwriter.c │ │ │ │ │ ├── duk_util_hashbytes.c │ │ │ │ │ ├── duk_util_hashprime.c │ │ │ │ │ ├── duk_util_misc.c │ │ │ │ │ ├── duk_util_tinyrandom.c │ │ │ │ │ ├── duktape.h.in │ │ │ │ │ └── strings.yaml │ │ │ │ ├── src-noline │ │ │ │ │ ├── duk_config.h │ │ │ │ │ ├── duk_source_meta.json │ │ │ │ │ ├── duktape.c │ │ │ │ │ └── duktape.h │ │ │ │ ├── src-separate │ │ │ │ │ ├── duk_alloc_default.c │ │ │ │ │ ├── duk_api_buffer.c │ │ │ │ │ ├── duk_api_bytecode.c │ │ │ │ │ ├── duk_api_call.c │ │ │ │ │ ├── duk_api_codec.c │ │ │ │ │ ├── duk_api_compile.c │ │ │ │ │ ├── duk_api_debug.c │ │ │ │ │ ├── duk_api_heap.c │ │ │ │ │ ├── duk_api_inspect.c │ │ │ │ │ ├── duk_api_internal.h │ │ │ │ │ ├── duk_api_memory.c │ │ │ │ │ ├── duk_api_object.c │ │ │ │ │ ├── duk_api_stack.c │ │ │ │ │ ├── duk_api_string.c │ │ │ │ │ ├── duk_api_time.c │ │ │ │ │ ├── duk_bi_array.c │ │ │ │ │ ├── duk_bi_boolean.c │ │ │ │ │ ├── duk_bi_buffer.c │ │ │ │ │ ├── duk_bi_date.c │ │ │ │ │ ├── duk_bi_date_unix.c │ │ │ │ │ ├── duk_bi_date_windows.c │ │ │ │ │ ├── duk_bi_duktape.c │ │ │ │ │ ├── duk_bi_encoding.c │ │ │ │ │ ├── duk_bi_error.c │ │ │ │ │ ├── duk_bi_function.c │ │ │ │ │ ├── duk_bi_global.c │ │ │ │ │ ├── duk_bi_json.c │ │ │ │ │ ├── duk_bi_math.c │ │ │ │ │ ├── duk_bi_number.c │ │ │ │ │ ├── duk_bi_object.c │ │ │ │ │ ├── duk_bi_pointer.c │ │ │ │ │ ├── duk_bi_protos.h │ │ │ │ │ ├── duk_bi_proxy.c │ │ │ │ │ ├── duk_bi_reflect.c │ │ │ │ │ ├── duk_bi_regexp.c │ │ │ │ │ ├── duk_bi_string.c │ │ │ │ │ ├── duk_bi_symbol.c │ │ │ │ │ ├── duk_bi_thread.c │ │ │ │ │ ├── duk_bi_thrower.c │ │ │ │ │ ├── duk_builtins.c │ │ │ │ │ ├── duk_builtins.h │ │ │ │ │ ├── duk_config.h │ │ │ │ │ ├── duk_debug.h │ │ │ │ │ ├── duk_debug_fixedbuffer.c │ │ │ │ │ ├── duk_debug_macros.c │ │ │ │ │ ├── duk_debug_vsnprintf.c │ │ │ │ │ ├── duk_debugger.c │ │ │ │ │ ├── duk_debugger.h │ │ │ │ │ ├── duk_error.h │ │ │ │ │ ├── duk_error_augment.c │ │ │ │ │ ├── duk_error_longjmp.c │ │ │ │ │ ├── duk_error_macros.c │ │ │ │ │ ├── duk_error_misc.c │ │ │ │ │ ├── duk_error_throw.c │ │ │ │ │ ├── duk_exception.h │ │ │ │ │ ├── duk_forwdecl.h │ │ │ │ │ ├── duk_harray.h │ │ │ │ │ ├── duk_hbuffer.h │ │ │ │ │ ├── duk_hbuffer_alloc.c │ │ │ │ │ ├── duk_hbuffer_ops.c │ │ │ │ │ ├── duk_hbufobj.h │ │ │ │ │ ├── duk_hbufobj_misc.c │ │ │ │ │ ├── duk_hcompfunc.h │ │ │ │ │ ├── duk_heap.h │ │ │ │ │ ├── duk_heap_alloc.c │ │ │ │ │ ├── duk_heap_hashstring.c │ │ │ │ │ ├── duk_heap_markandsweep.c │ │ │ │ │ ├── duk_heap_memory.c │ │ │ │ │ ├── duk_heap_misc.c │ │ │ │ │ ├── duk_heap_refcount.c │ │ │ │ │ ├── duk_heap_stringcache.c │ │ │ │ │ ├── duk_heap_stringtable.c │ │ │ │ │ ├── duk_heaphdr.h │ │ │ │ │ ├── duk_hnatfunc.h │ │ │ │ │ ├── duk_hobject.h │ │ │ │ │ ├── duk_hobject_alloc.c │ │ │ │ │ ├── duk_hobject_class.c │ │ │ │ │ ├── duk_hobject_enum.c │ │ │ │ │ ├── duk_hobject_finalizer.c │ │ │ │ │ ├── duk_hobject_misc.c │ │ │ │ │ ├── duk_hobject_pc2line.c │ │ │ │ │ ├── duk_hobject_props.c │ │ │ │ │ ├── duk_hstring.h │ │ │ │ │ ├── duk_hstring_misc.c │ │ │ │ │ ├── duk_hthread.h │ │ │ │ │ ├── duk_hthread_alloc.c │ │ │ │ │ ├── duk_hthread_builtins.c │ │ │ │ │ ├── duk_hthread_misc.c │ │ │ │ │ ├── duk_hthread_stacks.c │ │ │ │ │ ├── duk_internal.h │ │ │ │ │ ├── duk_jmpbuf.h │ │ │ │ │ ├── duk_js.h │ │ │ │ │ ├── duk_js_arith.c │ │ │ │ │ ├── duk_js_bytecode.h │ │ │ │ │ ├── duk_js_call.c │ │ │ │ │ ├── duk_js_compiler.c │ │ │ │ │ ├── duk_js_compiler.h │ │ │ │ │ ├── duk_js_executor.c │ │ │ │ │ ├── duk_js_ops.c │ │ │ │ │ ├── duk_js_var.c │ │ │ │ │ ├── duk_json.h │ │ │ │ │ ├── duk_lexer.c │ │ │ │ │ ├── duk_lexer.h │ │ │ │ │ ├── duk_numconv.c │ │ │ │ │ ├── duk_numconv.h │ │ │ │ │ ├── duk_regexp.h │ │ │ │ │ ├── duk_regexp_compiler.c │ │ │ │ │ ├── duk_regexp_executor.c │ │ │ │ │ ├── duk_replacements.c │ │ │ │ │ ├── duk_replacements.h │ │ │ │ │ ├── duk_selftest.c │ │ │ │ │ ├── duk_selftest.h │ │ │ │ │ ├── duk_source_meta.json │ │ │ │ │ ├── duk_strings.h │ │ │ │ │ ├── duk_tval.c │ │ │ │ │ ├── duk_tval.h │ │ │ │ │ ├── duk_unicode.h │ │ │ │ │ ├── duk_unicode_support.c │ │ │ │ │ ├── duk_unicode_tables.c │ │ │ │ │ ├── duk_util.h │ │ │ │ │ ├── duk_util_bitdecoder.c │ │ │ │ │ ├── duk_util_bitencoder.c │ │ │ │ │ ├── duk_util_bufwriter.c │ │ │ │ │ ├── duk_util_hashbytes.c │ │ │ │ │ ├── duk_util_hashprime.c │ │ │ │ │ ├── duk_util_misc.c │ │ │ │ │ ├── duk_util_tinyrandom.c │ │ │ │ │ └── duktape.h │ │ │ │ ├── src │ │ │ │ │ ├── duk_config.h │ │ │ │ │ ├── duk_source_meta.json │ │ │ │ │ ├── duktape.c │ │ │ │ │ └── duktape.h │ │ │ │ ├── tests │ │ │ │ │ └── api │ │ │ │ │ │ ├── test-all-public-symbols.c.skipped │ │ │ │ │ │ ├── test-base64.c │ │ │ │ │ │ ├── test-buffer-to-string.c │ │ │ │ │ │ ├── test-buffer-zeroed.c │ │ │ │ │ │ ├── test-bufferobject-dynamic-safety.c │ │ │ │ │ │ ├── test-bufferobject-example-1.c │ │ │ │ │ │ ├── test-bufferobject-initial.c │ │ │ │ │ │ ├── test-bug-bufferobject-arraybuffer-offset-length.c │ │ │ │ │ │ ├── test-bug-is-fixed-dynamic-buffer-nullptr.c │ │ │ │ │ │ ├── test-bug-is-primitive-invalid-index-gh337.c │ │ │ │ │ │ ├── test-bug-multithread-valgrind.c │ │ │ │ │ │ ├── test-bug-object-binding-proxy.c │ │ │ │ │ │ ├── test-bug-peval-pcompile-nofile.c.skipped │ │ │ │ │ │ ├── test-bug-push-buffer-maxsize.c │ │ │ │ │ │ ├── test-bug-push-buffer-semicolon.c │ │ │ │ │ │ ├── test-bug-push-sprintf-va-copy.c │ │ │ │ │ │ ├── test-bug-push-string-maxsize.c │ │ │ │ │ │ ├── test-bug-refzero-rescue-queue.c │ │ │ │ │ │ ├── test-bug-set-cfunc-name.c │ │ │ │ │ │ ├── test-bug-set-top-wrap.c │ │ │ │ │ │ ├── test-bug-tailcall-preventyield-assert.c │ │ │ │ │ │ ├── test-c-constructor.c │ │ │ │ │ │ ├── test-call-method.c │ │ │ │ │ │ ├── test-call-prop.c │ │ │ │ │ │ ├── test-call.c │ │ │ │ │ │ ├── test-charcodeat.c │ │ │ │ │ │ ├── test-check-require-stack-top.c │ │ │ │ │ │ ├── test-check-require-stack.c │ │ │ │ │ │ ├── test-check-type-mask.c │ │ │ │ │ │ ├── test-check-type.c │ │ │ │ │ │ ├── test-compact.c │ │ │ │ │ │ ├── test-compile-file.c.skipped │ │ │ │ │ │ ├── test-compile-filename.c │ │ │ │ │ │ ├── test-compile-string.c │ │ │ │ │ │ ├── test-compile.c │ │ │ │ │ │ ├── test-concat.c │ │ │ │ │ │ ├── test-copy.c │ │ │ │ │ │ ├── test-debugger-notify.c │ │ │ │ │ │ ├── test-decode-string.c │ │ │ │ │ │ ├── test-def-prop-convenience.c │ │ │ │ │ │ ├── test-def-prop-virtual.c │ │ │ │ │ │ ├── test-def-prop.c.skipped │ │ │ │ │ │ ├── test-del-prop.c │ │ │ │ │ │ ├── test-dev-api-verbose-error-messages-gh441.c │ │ │ │ │ │ ├── test-dev-cfunc-name.c │ │ │ │ │ │ ├── test-dev-cmodule-guide.c.skipped │ │ │ │ │ │ ├── test-dev-error-fileline-blame-gh455.c.skipped │ │ │ │ │ │ ├── test-dev-finalizer-rerun.c │ │ │ │ │ │ ├── test-dev-finalizer-rescue-unwind.c │ │ │ │ │ │ ├── test-dev-func-bind-name-notstring.c │ │ │ │ │ │ ├── test-dev-func-tostring.c │ │ │ │ │ │ ├── test-dev-global-object-proxy.c │ │ │ │ │ │ ├── test-dev-internal-key-access.c │ │ │ │ │ │ ├── test-dev-internal-property-basics.c │ │ │ │ │ │ ├── test-dev-lightfunc-bound.c │ │ │ │ │ │ ├── test-dev-lightfunc-toobject-varargs.c │ │ │ │ │ │ ├── test-dev-lightfunc.c │ │ │ │ │ │ ├── test-dev-plain-buffer.c │ │ │ │ │ │ ├── test-dev-prototype-loop.c │ │ │ │ │ │ ├── test-dev-return-types.c │ │ │ │ │ │ ├── test-dev-rom-builtins-1.c.skipped │ │ │ │ │ │ ├── test-dev-string-intern-side-effect.c │ │ │ │ │ │ ├── test-dev-symbol-basic.c │ │ │ │ │ │ ├── test-dev-valstack-checked-size-call.c │ │ │ │ │ │ ├── test-dump-context.c │ │ │ │ │ │ ├── test-dump-load-basic.c.skipped │ │ │ │ │ │ ├── test-dump-load-fastint.c.skipped │ │ │ │ │ │ ├── test-dup.c │ │ │ │ │ │ ├── test-enum.c │ │ │ │ │ │ ├── test-equals-strict-equals.c │ │ │ │ │ │ ├── test-errhandler.c │ │ │ │ │ │ ├── test-error-convenience.c │ │ │ │ │ │ ├── test-error.c │ │ │ │ │ │ ├── test-eval-file.c.skipped │ │ │ │ │ │ ├── test-eval-filename.c │ │ │ │ │ │ ├── test-eval-strictness.c │ │ │ │ │ │ ├── test-eval-string.c │ │ │ │ │ │ ├── test-eval-this-binding.c │ │ │ │ │ │ ├── test-eval.c │ │ │ │ │ │ ├── test-external-buffer.c.skipped │ │ │ │ │ │ ├── test-fatal-return.c.skipped │ │ │ │ │ │ ├── test-fatal.c.skipped │ │ │ │ │ │ ├── test-frontpage.c │ │ │ │ │ │ ├── test-gc.c │ │ │ │ │ │ ├── test-get-boolean.c │ │ │ │ │ │ ├── test-get-buffer-data.c │ │ │ │ │ │ ├── test-get-buffer.c │ │ │ │ │ │ ├── test-get-c-function.c │ │ │ │ │ │ ├── test-get-context.c │ │ │ │ │ │ ├── test-get-error-code-is-error.c │ │ │ │ │ │ ├── test-get-global-string.c │ │ │ │ │ │ ├── test-get-int.c │ │ │ │ │ │ ├── test-get-length.c │ │ │ │ │ │ ├── test-get-memory-functions.c │ │ │ │ │ │ ├── test-get-now.c │ │ │ │ │ │ ├── test-get-number.c │ │ │ │ │ │ ├── test-get-pointer.c │ │ │ │ │ │ ├── test-get-prop-desc.c.skipped │ │ │ │ │ │ ├── test-get-prop.c │ │ │ │ │ │ ├── test-get-require-push-heapptr.c │ │ │ │ │ │ ├── test-get-require-top-index.c │ │ │ │ │ │ ├── test-get-set-finalizer.c │ │ │ │ │ │ ├── test-get-set-magic.c │ │ │ │ │ │ ├── test-get-set-prototype.c │ │ │ │ │ │ ├── test-get-set-top.c │ │ │ │ │ │ ├── test-get-string.c │ │ │ │ │ │ ├── test-global-stash.c │ │ │ │ │ │ ├── test-has-prop.c │ │ │ │ │ │ ├── test-heap-lifecycle-basic.c │ │ │ │ │ │ ├── test-heap-stash.c │ │ │ │ │ │ ├── test-hello-world.c │ │ │ │ │ │ ├── test-hex.c │ │ │ │ │ │ ├── test-indirect-eval.c │ │ │ │ │ │ ├── test-insert.c │ │ │ │ │ │ ├── test-inspect-callstack-entry.c │ │ │ │ │ │ ├── test-inspect-value.c.skipped │ │ │ │ │ │ ├── test-instanceof.c │ │ │ │ │ │ ├── test-is-buffer-data.c │ │ │ │ │ │ ├── test-is-calls.c │ │ │ │ │ │ ├── test-is-constructor-call.c │ │ │ │ │ │ ├── test-is-strict.c │ │ │ │ │ │ ├── test-is-symbol.c │ │ │ │ │ │ ├── test-join.c │ │ │ │ │ │ ├── test-json-fastpath.c │ │ │ │ │ │ ├── test-json.c │ │ │ │ │ │ ├── test-logging.c.skipped │ │ │ │ │ │ ├── test-magic-modify-during-call.c │ │ │ │ │ │ ├── test-map-string.c │ │ │ │ │ │ ├── test-memory-funcs.c │ │ │ │ │ │ ├── test-new.c │ │ │ │ │ │ ├── test-normalize-index.c │ │ │ │ │ │ ├── test-pcall-method.c │ │ │ │ │ │ ├── test-pcall-prop.c │ │ │ │ │ │ ├── test-pcall.c │ │ │ │ │ │ ├── test-poppers.c │ │ │ │ │ │ ├── test-print-replacement.c │ │ │ │ │ │ ├── test-proxy-basic.c │ │ │ │ │ │ ├── test-push-array.c │ │ │ │ │ │ ├── test-push-arraybuffer.c │ │ │ │ │ │ ├── test-push-bare-object.c │ │ │ │ │ │ ├── test-push-buffer-object-disabled.c.skipped │ │ │ │ │ │ ├── test-push-buffer-object.c.skipped │ │ │ │ │ │ ├── test-push-buffer.c │ │ │ │ │ │ ├── test-push-cfunc.c │ │ │ │ │ │ ├── test-push-current-function.c │ │ │ │ │ │ ├── test-push-current-thread.c │ │ │ │ │ │ ├── test-push-error-object.c │ │ │ │ │ │ ├── test-push-global.c │ │ │ │ │ │ ├── test-push-object.c │ │ │ │ │ │ ├── test-push-sprintf.c.skipped │ │ │ │ │ │ ├── test-push-this.c │ │ │ │ │ │ ├── test-push-thread.c │ │ │ │ │ │ ├── test-push-vsprintf.c.skipped │ │ │ │ │ │ ├── test-pushers.c │ │ │ │ │ │ ├── test-put-func-num-list.c │ │ │ │ │ │ ├── test-put-global-string.c │ │ │ │ │ │ ├── test-put-prop-primbase.c │ │ │ │ │ │ ├── test-put-prop-target-value-same.c │ │ │ │ │ │ ├── test-put-prop.c.skipped │ │ │ │ │ │ ├── test-remove.c │ │ │ │ │ │ ├── test-replace.c │ │ │ │ │ │ ├── test-require-boolean.c │ │ │ │ │ │ ├── test-require-buffer-data.c │ │ │ │ │ │ ├── test-require-buffer.c │ │ │ │ │ │ ├── test-require-c-function.c │ │ │ │ │ │ ├── test-require-context.c │ │ │ │ │ │ ├── test-require-int.c │ │ │ │ │ │ ├── test-require-lstring.c │ │ │ │ │ │ ├── test-require-null.c │ │ │ │ │ │ ├── test-require-number.c │ │ │ │ │ │ ├── test-require-pointer.c │ │ │ │ │ │ ├── test-require-string.c │ │ │ │ │ │ ├── test-require-undefined.c │ │ │ │ │ │ ├── test-resize-buffer.c │ │ │ │ │ │ ├── test-safe-call.c │ │ │ │ │ │ ├── test-safe-to-string.c │ │ │ │ │ │ ├── test-samevalue.c │ │ │ │ │ │ ├── test-set-global-object.c │ │ │ │ │ │ ├── test-set-length.c │ │ │ │ │ │ ├── test-steal-buffer.c │ │ │ │ │ │ ├── test-substring.c │ │ │ │ │ │ ├── test-suspend-resume-pthread.c.skipped │ │ │ │ │ │ ├── test-suspend-resume.c │ │ │ │ │ │ ├── test-swap.c │ │ │ │ │ │ ├── test-thread-stash.c │ │ │ │ │ │ ├── test-throw.c │ │ │ │ │ │ ├── test-time-components.c │ │ │ │ │ │ ├── test-to-boolean.c │ │ │ │ │ │ ├── test-to-buffer.c │ │ │ │ │ │ ├── test-to-fixed-dynamic-buffer.c │ │ │ │ │ │ ├── test-to-int-uint.c │ │ │ │ │ │ ├── test-to-int32-uint32-uint16.c │ │ │ │ │ │ ├── test-to-lstring.c │ │ │ │ │ │ ├── test-to-null.c │ │ │ │ │ │ ├── test-to-number.c │ │ │ │ │ │ ├── test-to-object.c │ │ │ │ │ │ ├── test-to-pointer.c │ │ │ │ │ │ ├── test-to-primitive.c │ │ │ │ │ │ ├── test-to-string.c │ │ │ │ │ │ ├── test-to-undefined.c │ │ │ │ │ │ ├── test-trim.c │ │ │ │ │ │ ├── test-typedarray-set-overlap.c │ │ │ │ │ │ ├── test-types.c │ │ │ │ │ │ ├── test-validate-index.c │ │ │ │ │ │ ├── test-xcopy-xmove.c │ │ │ │ │ │ ├── wiced_duktape_tests_api_expected_results_official.txt │ │ │ │ │ │ ├── wiced_duktape_tests_api_expected_results_wiced.txt │ │ │ │ │ │ ├── wiced_duktape_tests_api_internal.h │ │ │ │ │ │ ├── wiced_duktape_tests_api_list.c │ │ │ │ │ │ └── wiced_duktape_tests_api_list.h │ │ │ │ └── tools │ │ │ │ │ ├── combine_src.py │ │ │ │ │ ├── configure.py │ │ │ │ │ ├── create_spdx_license.py │ │ │ │ │ ├── duk_meta_to_strarray.py │ │ │ │ │ ├── dukutil.py │ │ │ │ │ ├── dump_bytecode.py │ │ │ │ │ ├── extract_caseconv.py │ │ │ │ │ ├── extract_chars.py │ │ │ │ │ ├── extract_unique_options.py │ │ │ │ │ ├── genbuiltins.py │ │ │ │ │ ├── genconfig.py │ │ │ │ │ ├── json2yaml.py │ │ │ │ │ ├── merge_debug_meta.py │ │ │ │ │ ├── prepare_unicode_data.py │ │ │ │ │ ├── resolve_combined_lineno.py │ │ │ │ │ ├── scan_strings.py │ │ │ │ │ ├── scan_used_stridx_bidx.py │ │ │ │ │ └── yaml2json.py │ │ │ └── wiced_duk_config_fixup.h │ │ │ ├── wiced_duktape.c │ │ │ └── wiced_duktape.h │ ├── test │ │ ├── TraceX │ │ │ ├── TraceX.c │ │ │ ├── TraceX.h │ │ │ └── TraceX.mk │ │ ├── audio_loopback │ │ │ ├── audio_loopback.c │ │ │ ├── audio_loopback.h │ │ │ └── audio_loopback.mk │ │ ├── iperf │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── WICED.mk │ │ │ ├── WICED │ │ │ │ ├── Condition_EMBOS.c │ │ │ │ ├── Condition_FreeRTOS.c │ │ │ │ ├── Condition_NuttX.c │ │ │ │ ├── Condition_ThreadX.c │ │ │ │ ├── LwIP │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockets.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── NetX │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockets.h │ │ │ │ ├── NetX_Duo │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockets.h │ │ │ │ ├── NuttX_NS │ │ │ │ │ ├── nuttx_getopt.h │ │ │ │ │ ├── nuttx_getopt_long.c │ │ │ │ │ ├── sockets.c │ │ │ │ │ └── sockets.h │ │ │ │ ├── Thread_EMBOS.c │ │ │ │ ├── Thread_FreeRTOS.c │ │ │ │ ├── Thread_NuttX.c │ │ │ │ ├── Thread_ThreadX.c │ │ │ │ ├── compat.h │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── inet.h │ │ │ │ ├── iperf_test.c │ │ │ │ ├── netdb.c │ │ │ │ ├── netdb.h │ │ │ │ ├── usleep.c │ │ │ │ └── wiced_cpp.cpp │ │ │ ├── autogen.sh │ │ │ ├── build-all.sh │ │ │ ├── clean.sh │ │ │ ├── compat │ │ │ │ ├── Makefile.am │ │ │ │ ├── Thread.c │ │ │ │ ├── delay.cpp │ │ │ │ ├── error.c │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_pton.c │ │ │ │ ├── setitimer.c │ │ │ │ ├── signal.c │ │ │ │ ├── snprintf.c │ │ │ │ └── string.c │ │ │ ├── config.h.in │ │ │ ├── configure.ac │ │ │ ├── doc │ │ │ │ ├── Makefile.am │ │ │ │ └── dast.gif │ │ │ ├── include │ │ │ │ ├── Client.hpp │ │ │ │ ├── Condition.h │ │ │ │ ├── Extractor.h │ │ │ │ ├── List.h │ │ │ │ ├── Listener.hpp │ │ │ │ ├── Locale.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Mutex.h │ │ │ │ ├── PerfSocket.hpp │ │ │ │ ├── Reporter.h │ │ │ │ ├── Server.hpp │ │ │ │ ├── Settings.hpp │ │ │ │ ├── SocketAddr.h │ │ │ │ ├── Thread.h │ │ │ │ ├── Timestamp.hpp │ │ │ │ ├── compat_getopt.h │ │ │ │ ├── compat_gnudefs.h │ │ │ │ ├── config.wiced.h │ │ │ │ ├── delay.hpp │ │ │ │ ├── gettimeofday.h │ │ │ │ ├── header_version.h │ │ │ │ ├── headers.h │ │ │ │ ├── inet_aton.h │ │ │ │ ├── iperf_debug.h │ │ │ │ ├── report_CSV.h │ │ │ │ ├── report_default.h │ │ │ │ ├── setitimer.h │ │ │ │ ├── snprintf.h │ │ │ │ ├── util.h │ │ │ │ └── version.h │ │ │ ├── iperf.h │ │ │ ├── iperf.mk │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ ├── ax_create_stdint_h.m4 │ │ │ │ └── dast.m4 │ │ │ └── src │ │ │ │ ├── Client.cpp │ │ │ │ ├── Extractor.c │ │ │ │ ├── Launch.cpp │ │ │ │ ├── List.cpp │ │ │ │ ├── Listener.cpp │ │ │ │ ├── Locale.c │ │ │ │ ├── Makefile.am │ │ │ │ ├── PerfSocket.cpp │ │ │ │ ├── ReportCSV.c │ │ │ │ ├── ReportDefault.c │ │ │ │ ├── Reporter.c │ │ │ │ ├── Server.cpp │ │ │ │ ├── Settings.cpp │ │ │ │ ├── SocketAddr.c │ │ │ │ ├── debug.c │ │ │ │ ├── main.cpp │ │ │ │ ├── sockets.c │ │ │ │ ├── stdio.c │ │ │ │ └── tcp_window_size.c │ │ ├── malloc_debug │ │ │ ├── malloc_debug.c │ │ │ ├── malloc_debug.h │ │ │ └── malloc_debug.mk │ │ └── wl_tool │ │ │ ├── 43340B0 │ │ │ ├── 43340B0.mk │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── bcmwifi.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ └── wpa.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ ├── wlc_clm_rates.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ ├── bcmwifi_rates.h │ │ │ │ └── wlc_ppr.h │ │ │ │ └── src │ │ │ │ └── wlc_ppr.c │ │ │ ├── 43341B0 │ │ │ ├── 43341B0.mk │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── bcmwifi.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ └── wpa.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ ├── wlc_clm_rates.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ ├── bcmwifi_rates.h │ │ │ │ └── wlc_ppr.h │ │ │ │ └── src │ │ │ │ └── wlc_ppr.c │ │ │ ├── 43362A2 │ │ │ ├── 43362A2.mk │ │ │ ├── include │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── bcmwifi.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ └── wpa.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ └── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ ├── 43364A1 │ │ │ ├── 43364A1.mk │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ ├── devctrl_if │ │ │ │ │ ├── phyioctl_defs.h │ │ │ │ │ └── wlioctl_defs.h │ │ │ │ │ └── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wps.h │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epiioctl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bcmwifi_channels.h │ │ │ │ │ │ └── bcmwifi_rates.h │ │ │ │ │ └── src │ │ │ │ │ │ └── bcmwifi_channels.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ └── wlc_ppr.h │ │ │ │ ├── src │ │ │ │ └── wlc_ppr.c │ │ │ │ └── unittest │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ ├── test_ppr_clean.c │ │ │ │ ├── test_ppr_clean.h │ │ │ │ ├── test_ppr_size_routine.c │ │ │ │ └── test_ppr_size_routine.h │ │ │ ├── 43438A1 │ │ │ ├── 43438A1.mk │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ ├── devctrl_if │ │ │ │ │ ├── phyioctl_defs.h │ │ │ │ │ └── wlioctl_defs.h │ │ │ │ │ └── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wps.h │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── bcmwifi.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epiioctl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ └── wpa.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ ├── wlc_clm_rates.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi.c │ │ │ │ ├── bcmwifi │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bcmwifi_channels.h │ │ │ │ │ │ └── bcmwifi_rates.h │ │ │ │ │ └── src │ │ │ │ │ │ └── bcmwifi_channels.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ └── wlc_ppr.h │ │ │ │ └── src │ │ │ │ └── wlc_ppr.c │ │ │ ├── 4343WA1 │ │ │ ├── 4343WA1.mk │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ ├── devctrl_if │ │ │ │ │ ├── phyioctl_defs.h │ │ │ │ │ └── wlioctl_defs.h │ │ │ │ │ └── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wps.h │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epiioctl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bcmwifi_channels.h │ │ │ │ │ │ └── bcmwifi_rates.h │ │ │ │ │ └── src │ │ │ │ │ │ └── bcmwifi_channels.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ └── wlc_ppr.h │ │ │ │ ├── src │ │ │ │ └── wlc_ppr.c │ │ │ │ └── unittest │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ ├── test_ppr_clean.c │ │ │ │ ├── test_ppr_clean.h │ │ │ │ ├── test_ppr_size_routine.c │ │ │ │ └── test_ppr_size_routine.h │ │ │ ├── 43455C0 │ │ │ ├── 43455C0.mk │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ └── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wps.h │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bcmwifi_channels.h │ │ │ │ │ │ └── bcmwifi_rates.h │ │ │ │ │ └── src │ │ │ │ │ │ └── bcmwifi_channels.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ └── wlc_ppr.h │ │ │ │ └── src │ │ │ │ └── wlc_ppr.c │ │ │ ├── 43909B0 │ │ │ ├── 43909B0.mk │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ ├── devctrl_if │ │ │ │ │ ├── phyioctl_defs.h │ │ │ │ │ └── wlioctl_defs.h │ │ │ │ │ └── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wps.h │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── event_log.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bcmwifi_channels.h │ │ │ │ │ │ └── bcmwifi_rates.h │ │ │ │ │ └── src │ │ │ │ │ │ └── bcmwifi_channels.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ └── wlc_ppr.h │ │ │ │ └── src │ │ │ │ └── wlc_ppr.c │ │ │ ├── 4390A1 │ │ │ ├── 4390A1.mk │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ └── proto │ │ │ │ │ ├── 802.11.h │ │ │ │ │ ├── 802.11e.h │ │ │ │ │ ├── 802.1d.h │ │ │ │ │ ├── bcmeth.h │ │ │ │ │ ├── bcmevent.h │ │ │ │ │ ├── bcmip.h │ │ │ │ │ ├── bcmipv6.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── vlan.h │ │ │ │ │ ├── wpa.h │ │ │ │ │ └── wps.h │ │ │ ├── include │ │ │ │ ├── bcm_cfg.h │ │ │ │ ├── bcm_mpool_pub.h │ │ │ │ ├── bcmcdc.h │ │ │ │ ├── bcmdefs.h │ │ │ │ ├── bcmdevs.h │ │ │ │ ├── bcmendian.h │ │ │ │ ├── bcmnvram.h │ │ │ │ ├── bcmsrom_fmt.h │ │ │ │ ├── bcmsrom_tbl.h │ │ │ │ ├── bcmstdlib.h │ │ │ │ ├── bcmutils.h │ │ │ │ ├── dhdioctl.h │ │ │ │ ├── epictrl.h │ │ │ │ ├── epivers.h │ │ │ │ ├── irelay.h │ │ │ │ ├── miniopt.h │ │ │ │ ├── packed_section_end.h │ │ │ │ ├── packed_section_start.h │ │ │ │ ├── sbpcmcia.h │ │ │ │ ├── trxhdr.h │ │ │ │ ├── typedefs.h │ │ │ │ ├── usbrdl.h │ │ │ │ ├── wl_drv.h │ │ │ │ └── wlioctl.h │ │ │ ├── shared │ │ │ │ ├── bcm_app_utils.c │ │ │ │ ├── bcmutils.c │ │ │ │ ├── bcmwifi │ │ │ │ │ ├── include │ │ │ │ │ │ ├── bcmwifi_channels.h │ │ │ │ │ │ └── bcmwifi_rates.h │ │ │ │ │ └── src │ │ │ │ │ │ └── bcmwifi_channels.c │ │ │ │ └── miniopt.c │ │ │ └── wl │ │ │ │ ├── exe │ │ │ │ ├── wlm.c │ │ │ │ ├── wlm.h │ │ │ │ ├── wlu.c │ │ │ │ ├── wlu.h │ │ │ │ ├── wlu_client_shared.c │ │ │ │ ├── wlu_client_shared.h │ │ │ │ ├── wlu_cmd.c │ │ │ │ ├── wlu_cmd.h │ │ │ │ ├── wlu_common.c │ │ │ │ ├── wlu_common.h │ │ │ │ ├── wlu_iov.c │ │ │ │ ├── wlu_linux.c │ │ │ │ ├── wlu_pipe.c │ │ │ │ ├── wlu_pipe.h │ │ │ │ ├── wlu_pipe_linux.c │ │ │ │ ├── wlu_pipe_win32.c │ │ │ │ ├── wlu_rates_matrix.c │ │ │ │ ├── wlu_rates_matrix.h │ │ │ │ ├── wlu_remote.h │ │ │ │ ├── wlu_server_shared.c │ │ │ │ └── wlu_server_shared.h │ │ │ │ └── ppr │ │ │ │ ├── include │ │ │ │ └── wlc_ppr.h │ │ │ │ └── src │ │ │ │ └── wlc_ppr.c │ │ │ ├── Makefile │ │ │ ├── dummy │ │ │ ├── arpa │ │ │ │ └── inet.h │ │ │ ├── net │ │ │ │ └── if.h │ │ │ ├── netdb.h │ │ │ ├── network │ │ │ │ └── wwd_network_constants.h │ │ │ ├── ntddndis.h │ │ │ ├── nuiouser.h │ │ │ └── sys │ │ │ │ └── socket.h │ │ │ ├── make.exe.stackdump │ │ │ ├── scripts │ │ │ ├── README.txt │ │ │ ├── rx_80211.bat │ │ │ ├── tx_80211_stop.bat │ │ │ ├── tx_80211b_start.bat │ │ │ ├── tx_80211g_start.bat │ │ │ ├── tx_80211n_start.bat │ │ │ ├── tx_carrier_start.bat │ │ │ └── tx_carrier_stop.bat │ │ │ ├── wiced_wlm_43340B0.dll │ │ │ ├── wiced_wlm_43341B0.dll │ │ │ ├── wiced_wlm_43362A2.dll │ │ │ ├── wiced_wlm_43364A1.dll │ │ │ ├── wiced_wlm_43438A1.dll │ │ │ ├── wiced_wlm_4343WA1.dll │ │ │ ├── wiced_wlm_43455C0.dll │ │ │ ├── wiced_wlm_43909B0.dll │ │ │ ├── wiced_wlm_43909B0_socket.dll │ │ │ ├── wiced_wlm_4390A1.dll │ │ │ ├── wl43340B0.exe │ │ │ ├── wl43341B0.exe │ │ │ ├── wl43362A2.exe │ │ │ ├── wl43364A1.exe │ │ │ ├── wl43438A1.exe │ │ │ ├── wl4343WA1.exe │ │ │ ├── wl43455C0.exe │ │ │ ├── wl43909B0.exe │ │ │ ├── wl43909B0_socket.exe │ │ │ ├── wl4390A1.exe │ │ │ ├── wl_tool.h │ │ │ ├── wl_tool.mk │ │ │ ├── wlu_client.c │ │ │ ├── wlu_server.c │ │ │ └── wlu_wiced.c │ └── utilities │ │ ├── JSON_parser │ │ ├── JSON.c │ │ ├── JSON.h │ │ └── JSON_parser.mk │ │ ├── TLV │ │ ├── TLV.mk │ │ ├── tlv.c │ │ └── tlv.h │ │ ├── base64 │ │ ├── base64.h │ │ ├── base64.mk │ │ └── bsd-base64.c │ │ ├── bufmgr │ │ ├── Makefile │ │ ├── bufmgr.c │ │ ├── bufmgr.h │ │ └── bufmgr.mk │ │ ├── cJSON │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cJSON.c │ │ ├── cJSON.h │ │ ├── cJSON.mk │ │ └── test.c │ │ ├── command_console │ │ ├── audio │ │ │ ├── audio.c │ │ │ ├── audio.mk │ │ │ └── command_console_audio.h │ │ ├── bt │ │ │ ├── bt.mk │ │ │ ├── command_console_bt.c │ │ │ └── command_console_bt.h │ │ ├── bt_hci │ │ │ ├── bt_hci.mk │ │ │ ├── command_console_bt_hci.c │ │ │ └── command_console_bt_hci.h │ │ ├── command_console.c │ │ ├── command_console.h │ │ ├── command_console.mk │ │ ├── command_console_commands.h │ │ ├── console_iperf.h │ │ ├── console_wl.h │ │ ├── dct │ │ │ ├── command_console_dct.c │ │ │ ├── command_console_dct.h │ │ │ └── dct.mk │ │ ├── duktape │ │ │ ├── command_console_duktape.c │ │ │ ├── command_console_duktape.h │ │ │ └── duktape.mk │ │ ├── ethernet │ │ │ ├── command_console_ethernet.c │ │ │ ├── command_console_ethernet.h │ │ │ └── ethernet.mk │ │ ├── fs │ │ │ ├── command_console_fs.c │ │ │ ├── command_console_fs.h │ │ │ ├── fs.mk │ │ │ └── fs_test.c │ │ ├── mallinfo │ │ │ ├── command_console_mallinfo.c │ │ │ ├── command_console_mallinfo.h │ │ │ └── mallinfo.mk │ │ ├── p2p │ │ │ ├── command_console_p2p.c │ │ │ ├── command_console_p2p.h │ │ │ └── p2p.mk │ │ ├── ping │ │ │ ├── FreeRTOS_LwIP_Ping.c │ │ │ ├── ThreadX_NetX_Duo_Ping.c │ │ │ ├── ThreadX_NetX_Ping.c │ │ │ ├── command_console_ping.h │ │ │ └── ping.mk │ │ ├── platform │ │ │ ├── command_console_platform.c │ │ │ ├── command_console_platform.h │ │ │ └── platform.mk │ │ ├── thread │ │ │ ├── command_console_thread.c │ │ │ ├── command_console_thread.h │ │ │ └── thread.mk │ │ ├── trace │ │ │ ├── FreeRTOS_trace.h │ │ │ ├── README │ │ │ ├── buffered │ │ │ │ ├── buffered_trace.c │ │ │ │ ├── buffered_trace.h │ │ │ │ └── print │ │ │ │ │ ├── buffered_trace_print.c │ │ │ │ │ └── buffered_trace_print.h │ │ │ ├── clocktimer │ │ │ │ ├── ARM_CM3_DWT.c │ │ │ │ ├── ARM_CM3_DWT.h │ │ │ │ └── clocktimer.h │ │ │ ├── command_console_trace.h │ │ │ ├── gpio │ │ │ │ ├── gpio_trace.c │ │ │ │ ├── gpio_trace.h │ │ │ │ ├── stm32f1x_gpio_trace.c │ │ │ │ └── stm32f2x_gpio_trace.c │ │ │ ├── trace.c │ │ │ ├── trace.h │ │ │ ├── trace.mk │ │ │ ├── trace_action.h │ │ │ ├── trace_hook.c │ │ │ └── trace_hook.h │ │ ├── tracex │ │ │ ├── command_console_tracex.h │ │ │ ├── tracex.c │ │ │ └── tracex.mk │ │ ├── traffic_generation │ │ │ ├── command_console_traffic_generation.c │ │ │ ├── command_console_traffic_generation.h │ │ │ └── traffic_generation.mk │ │ ├── wifi │ │ │ ├── certificate.h │ │ │ ├── command_console_wifi.c │ │ │ ├── command_console_wifi.h │ │ │ └── wifi.mk │ │ ├── wpl │ │ │ ├── command_console_wpl.c │ │ │ ├── command_console_wpl.h │ │ │ └── wpl.mk │ │ └── wps │ │ │ ├── WPS-Readme.pdf │ │ │ ├── command_console_wps.c │ │ │ ├── command_console_wps.h │ │ │ └── wps.mk │ │ ├── connection_manager │ │ ├── connection_manager.c │ │ ├── connection_manager.h │ │ └── connection_manager.mk │ │ ├── crc │ │ ├── crc.c │ │ ├── crc.h │ │ └── crc.mk │ │ ├── linked_list │ │ ├── linked_list.c │ │ ├── linked_list.h │ │ └── linked_list.mk │ │ ├── mini_printf │ │ ├── mini_printf.c │ │ ├── mini_printf.h │ │ └── mini_printf.mk │ │ ├── ring_buffer │ │ ├── ring_buffer.c │ │ ├── ring_buffer.h │ │ └── ring_buffer.mk │ │ ├── wiced_log │ │ ├── Makefile │ │ ├── wiced_log.c │ │ ├── wiced_log.h │ │ └── wiced_log.mk │ │ └── wifi │ │ ├── Makefile │ │ ├── wifi.mk │ │ ├── wifi_utils.c │ │ └── wifi_utils.h ├── make ├── make.exe ├── make1384-2e.bat ├── platforms │ └── 删除了 官方的部分平台.txt ├── resources │ ├── README.txt │ ├── apps │ │ ├── amqps │ │ │ ├── README.txt │ │ │ ├── amqps_client_cert.cer │ │ │ ├── amqps_client_key.key │ │ │ └── amqps_root_cacert.cer │ │ ├── avs │ │ │ ├── alerts_notification_01.mp3 │ │ │ ├── alerts_notification_03.mp3 │ │ │ ├── img0.png │ │ │ ├── img1.png │ │ │ ├── img1a.png │ │ │ ├── state_privacy_mode_off.mp3 │ │ │ ├── state_privacy_mode_on.mp3 │ │ │ ├── system_alerts_melodic_01.mp3 │ │ │ ├── system_alerts_melodic_01_short.mp3 │ │ │ ├── system_alerts_melodic_02.mp3 │ │ │ ├── system_alerts_melodic_02_short.mp3 │ │ │ ├── ui_endpointing.mp3 │ │ │ └── ui_wakesound.mp3 │ │ ├── aws │ │ │ ├── greengrass │ │ │ │ ├── publisher │ │ │ │ │ ├── client.cer │ │ │ │ │ └── privkey.cer │ │ │ │ └── subscriber │ │ │ │ │ ├── client.cer │ │ │ │ │ └── privkey.cer │ │ │ └── iot │ │ │ │ ├── mesh │ │ │ │ ├── client.cer │ │ │ │ └── privkey.cer │ │ │ │ ├── publisher │ │ │ │ ├── client.cer │ │ │ │ └── privkey.cer │ │ │ │ ├── rootca.cer │ │ │ │ └── subscriber │ │ │ │ ├── client.cer │ │ │ │ └── privkey.cer │ │ ├── azure_iot_hub │ │ │ ├── README.txt │ │ │ ├── client.cer │ │ │ ├── privkey.cer │ │ │ └── rootca.cer │ │ ├── duktape │ │ │ ├── modules │ │ │ │ ├── WebsocketConn.js │ │ │ │ ├── WebsocketServer.js │ │ │ │ ├── audio.js │ │ │ │ ├── bus.js │ │ │ │ ├── config.js │ │ │ │ ├── events.js │ │ │ │ ├── greetings.js │ │ │ │ ├── main.js │ │ │ │ ├── nodejs_style │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── goodbye.js │ │ │ │ │ │ └── hello.js │ │ │ │ │ └── nodejs_style.js │ │ │ │ ├── socketmap.js │ │ │ │ ├── systemObject.js │ │ │ │ ├── timer.js │ │ │ │ ├── util.js │ │ │ │ ├── uuid.js │ │ │ │ └── xmlHttpRequest.js │ │ │ └── tests │ │ │ │ ├── test_audio.js │ │ │ │ ├── test_modules.js │ │ │ │ ├── test_time.js │ │ │ │ ├── test_wifi.js │ │ │ │ └── test_xmlhttprequest.js │ │ ├── flac │ │ │ └── left_right_48k_16bit_2ch.flac │ │ ├── resource_read │ │ │ ├── test_file01.txt │ │ │ └── test_file02.txt │ │ └── secure_mqtt │ │ │ ├── README.txt │ │ │ └── secure_mqtt_root_cacert.cer │ ├── certificates │ │ ├── README.txt │ │ ├── wiced_demo_server_cert.cer │ │ └── wiced_demo_server_cert_key.key │ ├── firmware │ │ ├── 43362 │ │ │ ├── 43362A2_bin.c │ │ │ └── resources.h │ │ ├── 43364 │ │ │ ├── 43364A1-mfgtest.clm_blob │ │ │ └── 43364A1.clm_blob │ │ ├── 43438 │ │ │ ├── 43438A1-mfgtest.clm_blob │ │ │ └── 43438A1.clm_blob │ │ ├── 43909 │ │ │ ├── 43909B0-ampdutinydmp.clm_blob │ │ │ ├── 43909B0-apollo-nonrmc.clm_blob │ │ │ ├── 43909B0-apollo.clm_blob │ │ │ ├── 43909B0-mesh-sec.clm_blob │ │ │ ├── 43909B0-mesh.clm_blob │ │ │ ├── 43909B0-mfgtest.clm_blob │ │ │ └── 43909B0.clm_blob │ │ └── 4343W │ │ │ ├── 4343WA1-mfgtest.clm_blob │ │ │ └── 4343WA1.clm_blob │ ├── images │ │ ├── 64_0bars.png │ │ ├── 64_1bars.png │ │ ├── 64_2bars.png │ │ ├── 64_3bars.png │ │ ├── 64_4bars.png │ │ ├── 64_5bars.png │ │ ├── cross.png │ │ ├── cypresslogo.png │ │ ├── cypresslogo_line.png │ │ ├── favicon.ico │ │ ├── grender_128.png │ │ ├── grender_64.png │ │ ├── lock.png │ │ ├── progress.gif │ │ ├── scan_icon.png │ │ ├── tick.png │ │ └── wps_icon.png │ ├── scripts │ │ ├── general_ajax_script.js │ │ └── wpad.dat │ └── styles │ │ ├── border-radius.htc │ │ └── buttons.css ├── version.txt └── wlan-firmware-versions.txt ├── wifi_lwip_client ├── Doc │ └── 必读说明.txt ├── Libraries │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32H7xx │ │ │ │ ├── Include │ │ │ │ ├── stm32h742xx.h │ │ │ │ ├── stm32h743xx.h │ │ │ │ ├── stm32h745xx.h │ │ │ │ ├── stm32h747xx.h │ │ │ │ ├── stm32h750xx.h │ │ │ │ ├── stm32h753xx.h │ │ │ │ ├── stm32h755xx.h │ │ │ │ ├── stm32h757xx.h │ │ │ │ ├── stm32h7xx.h │ │ │ │ └── system_stm32h7xx.h │ │ │ │ └── Source │ │ │ │ └── Templates │ │ │ │ ├── arm │ │ │ │ ├── startup_stm32h742xx.s │ │ │ │ ├── startup_stm32h743xx.s │ │ │ │ ├── startup_stm32h745xx.s │ │ │ │ ├── startup_stm32h747xx.s │ │ │ │ ├── startup_stm32h750xx.s │ │ │ │ ├── startup_stm32h753xx.s │ │ │ │ ├── startup_stm32h755xx.s │ │ │ │ └── startup_stm32h757xx.s │ │ │ │ ├── gcc │ │ │ │ ├── startup_stm32h742xx.s │ │ │ │ ├── startup_stm32h743xx.s │ │ │ │ ├── startup_stm32h745xx.s │ │ │ │ ├── startup_stm32h747xx.s │ │ │ │ ├── startup_stm32h750xx.s │ │ │ │ ├── startup_stm32h753xx.s │ │ │ │ ├── startup_stm32h755xx.s │ │ │ │ └── startup_stm32h757xx.s │ │ │ │ ├── iar │ │ │ │ ├── linker │ │ │ │ │ ├── stm32h742xx_dtcmram.icf │ │ │ │ │ ├── stm32h742xx_flash.icf │ │ │ │ │ ├── stm32h742xx_flash_rw_sram1.icf │ │ │ │ │ ├── stm32h742xx_flash_rw_sram2.icf │ │ │ │ │ ├── stm32h742xx_sram1.icf │ │ │ │ │ ├── stm32h743xx_dtcmram.icf │ │ │ │ │ ├── stm32h743xx_flash.icf │ │ │ │ │ ├── stm32h743xx_flash_rw_sram1.icf │ │ │ │ │ ├── stm32h743xx_flash_rw_sram2.icf │ │ │ │ │ ├── stm32h743xx_sram1.icf │ │ │ │ │ ├── stm32h745xx_dtcmram_CM7.icf │ │ │ │ │ ├── stm32h745xx_flash_CM4.icf │ │ │ │ │ ├── stm32h745xx_flash_CM7.icf │ │ │ │ │ ├── stm32h745xx_flash_rw_sram1_CM7.icf │ │ │ │ │ ├── stm32h745xx_flash_rw_sram2_CM4.icf │ │ │ │ │ ├── stm32h745xx_sram1_CM7.icf │ │ │ │ │ ├── stm32h745xx_sram2_CM4.icf │ │ │ │ │ ├── stm32h747xx_dtcmram_CM7.icf │ │ │ │ │ ├── stm32h747xx_flash_CM4.icf │ │ │ │ │ ├── stm32h747xx_flash_CM7.icf │ │ │ │ │ ├── stm32h747xx_flash_rw_sram1_CM7.icf │ │ │ │ │ ├── stm32h747xx_flash_rw_sram2_CM4.icf │ │ │ │ │ ├── stm32h747xx_sram1_CM7.icf │ │ │ │ │ ├── stm32h747xx_sram2_CM4.icf │ │ │ │ │ ├── stm32h750xx_dtcmram.icf │ │ │ │ │ ├── stm32h750xx_flash.icf │ │ │ │ │ ├── stm32h750xx_flash_rw_sram1.icf │ │ │ │ │ ├── stm32h750xx_flash_rw_sram2.icf │ │ │ │ │ ├── stm32h750xx_sram1.icf │ │ │ │ │ ├── stm32h753xx_dtcmram.icf │ │ │ │ │ ├── stm32h753xx_flash.icf │ │ │ │ │ ├── stm32h753xx_flash_rw_sram1.icf │ │ │ │ │ ├── stm32h753xx_flash_rw_sram2.icf │ │ │ │ │ ├── stm32h753xx_sram1.icf │ │ │ │ │ ├── stm32h755xx_dtcmram_CM7.icf │ │ │ │ │ ├── stm32h755xx_flash_CM4.icf │ │ │ │ │ ├── stm32h755xx_flash_CM7.icf │ │ │ │ │ ├── stm32h755xx_flash_rw_sram1_CM7.icf │ │ │ │ │ ├── stm32h755xx_flash_rw_sram2_CM4.icf │ │ │ │ │ ├── stm32h755xx_sram1_CM7.icf │ │ │ │ │ ├── stm32h755xx_sram2_CM4.icf │ │ │ │ │ ├── stm32h757xx_dtcmram_CM7.icf │ │ │ │ │ ├── stm32h757xx_flash_CM4.icf │ │ │ │ │ ├── stm32h757xx_flash_CM7.icf │ │ │ │ │ ├── stm32h757xx_flash_rw_sram1_CM7.icf │ │ │ │ │ ├── stm32h757xx_flash_rw_sram2_CM4.icf │ │ │ │ │ ├── stm32h757xx_sram1_CM7.icf │ │ │ │ │ └── stm32h757xx_sram2_CM4.icf │ │ │ │ ├── startup_stm32h742xx.s │ │ │ │ ├── startup_stm32h743xx.s │ │ │ │ ├── startup_stm32h745xx.s │ │ │ │ ├── startup_stm32h747xx.s │ │ │ │ ├── startup_stm32h750xx.s │ │ │ │ ├── startup_stm32h753xx.s │ │ │ │ ├── startup_stm32h755xx.s │ │ │ │ └── startup_stm32h757xx.s │ │ │ │ ├── system_stm32h7xx.c │ │ │ │ ├── system_stm32h7xx_dualcore_boot_cm4_cm7.c │ │ │ │ ├── system_stm32h7xx_dualcore_bootcm4_cm7gated.c │ │ │ │ ├── system_stm32h7xx_dualcore_bootcm7_cm4gated.c │ │ │ │ └── system_stm32h7xx_singlecore.c │ │ └── Include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ └── STM32H7xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32_assert_template.h │ │ ├── stm32h7xx_hal.h │ │ ├── stm32h7xx_hal_adc.h │ │ ├── stm32h7xx_hal_adc_ex.h │ │ ├── stm32h7xx_hal_cec.h │ │ ├── stm32h7xx_hal_comp.h │ │ ├── stm32h7xx_hal_conf_template.h │ │ ├── stm32h7xx_hal_cortex.h │ │ ├── stm32h7xx_hal_crc.h │ │ ├── stm32h7xx_hal_crc_ex.h │ │ ├── stm32h7xx_hal_cryp.h │ │ ├── stm32h7xx_hal_cryp_ex.h │ │ ├── stm32h7xx_hal_dac.h │ │ ├── stm32h7xx_hal_dac_ex.h │ │ ├── stm32h7xx_hal_dcmi.h │ │ ├── stm32h7xx_hal_def.h │ │ ├── stm32h7xx_hal_dfsdm.h │ │ ├── stm32h7xx_hal_dma.h │ │ ├── stm32h7xx_hal_dma2d.h │ │ ├── stm32h7xx_hal_dma_ex.h │ │ ├── stm32h7xx_hal_dsi.h │ │ ├── stm32h7xx_hal_eth.h │ │ ├── stm32h7xx_hal_eth_ex.h │ │ ├── stm32h7xx_hal_exti.h │ │ ├── stm32h7xx_hal_fdcan.h │ │ ├── stm32h7xx_hal_flash.h │ │ ├── stm32h7xx_hal_flash_ex.h │ │ ├── stm32h7xx_hal_gpio.h │ │ ├── stm32h7xx_hal_gpio_ex.h │ │ ├── stm32h7xx_hal_hash.h │ │ ├── stm32h7xx_hal_hash_ex.h │ │ ├── stm32h7xx_hal_hcd.h │ │ ├── stm32h7xx_hal_hrtim.h │ │ ├── stm32h7xx_hal_hsem.h │ │ ├── stm32h7xx_hal_i2c.h │ │ ├── stm32h7xx_hal_i2c_ex.h │ │ ├── stm32h7xx_hal_i2s.h │ │ ├── stm32h7xx_hal_i2s_ex.h │ │ ├── stm32h7xx_hal_irda.h │ │ ├── stm32h7xx_hal_irda_ex.h │ │ ├── stm32h7xx_hal_iwdg.h │ │ ├── stm32h7xx_hal_jpeg.h │ │ ├── stm32h7xx_hal_lptim.h │ │ ├── stm32h7xx_hal_ltdc.h │ │ ├── stm32h7xx_hal_ltdc_ex.h │ │ ├── stm32h7xx_hal_mdios.h │ │ ├── stm32h7xx_hal_mdma.h │ │ ├── stm32h7xx_hal_mmc.h │ │ ├── stm32h7xx_hal_mmc_ex.h │ │ ├── stm32h7xx_hal_nand.h │ │ ├── stm32h7xx_hal_nor.h │ │ ├── stm32h7xx_hal_opamp.h │ │ ├── stm32h7xx_hal_opamp_ex.h │ │ ├── stm32h7xx_hal_pcd.h │ │ ├── stm32h7xx_hal_pcd_ex.h │ │ ├── stm32h7xx_hal_pwr.h │ │ ├── stm32h7xx_hal_pwr_ex.h │ │ ├── stm32h7xx_hal_qspi.h │ │ ├── stm32h7xx_hal_ramecc.h │ │ ├── stm32h7xx_hal_rcc.h │ │ ├── stm32h7xx_hal_rcc_ex.h │ │ ├── stm32h7xx_hal_rng.h │ │ ├── stm32h7xx_hal_rtc.h │ │ ├── stm32h7xx_hal_rtc_ex.h │ │ ├── stm32h7xx_hal_sai.h │ │ ├── stm32h7xx_hal_sai_ex.h │ │ ├── stm32h7xx_hal_sd.h │ │ ├── stm32h7xx_hal_sd_ex.h │ │ ├── stm32h7xx_hal_sdram.h │ │ ├── stm32h7xx_hal_smartcard.h │ │ ├── stm32h7xx_hal_smartcard_ex.h │ │ ├── stm32h7xx_hal_smbus.h │ │ ├── stm32h7xx_hal_spdifrx.h │ │ ├── stm32h7xx_hal_spi.h │ │ ├── stm32h7xx_hal_spi_ex.h │ │ ├── stm32h7xx_hal_sram.h │ │ ├── stm32h7xx_hal_swpmi.h │ │ ├── stm32h7xx_hal_tim.h │ │ ├── stm32h7xx_hal_tim_ex.h │ │ ├── stm32h7xx_hal_uart.h │ │ ├── stm32h7xx_hal_uart_ex.h │ │ ├── stm32h7xx_hal_usart.h │ │ ├── stm32h7xx_hal_usart_ex.h │ │ ├── stm32h7xx_hal_wwdg.h │ │ ├── stm32h7xx_ll_adc.h │ │ ├── stm32h7xx_ll_bdma.h │ │ ├── stm32h7xx_ll_bus.h │ │ ├── stm32h7xx_ll_comp.h │ │ ├── stm32h7xx_ll_cortex.h │ │ ├── stm32h7xx_ll_crc.h │ │ ├── stm32h7xx_ll_dac.h │ │ ├── stm32h7xx_ll_delayblock.h │ │ ├── stm32h7xx_ll_dma.h │ │ ├── stm32h7xx_ll_dma2d.h │ │ ├── stm32h7xx_ll_dmamux.h │ │ ├── stm32h7xx_ll_exti.h │ │ ├── stm32h7xx_ll_fmc.h │ │ ├── stm32h7xx_ll_gpio.h │ │ ├── stm32h7xx_ll_hrtim.h │ │ ├── stm32h7xx_ll_hsem.h │ │ ├── stm32h7xx_ll_i2c.h │ │ ├── stm32h7xx_ll_iwdg.h │ │ ├── stm32h7xx_ll_lptim.h │ │ ├── stm32h7xx_ll_lpuart.h │ │ ├── stm32h7xx_ll_mdma.h │ │ ├── stm32h7xx_ll_opamp.h │ │ ├── stm32h7xx_ll_pwr.h │ │ ├── stm32h7xx_ll_rcc.h │ │ ├── stm32h7xx_ll_rng.h │ │ ├── stm32h7xx_ll_rtc.h │ │ ├── stm32h7xx_ll_sdmmc.h │ │ ├── stm32h7xx_ll_spi.h │ │ ├── stm32h7xx_ll_swpmi.h │ │ ├── stm32h7xx_ll_system.h │ │ ├── stm32h7xx_ll_tim.h │ │ ├── stm32h7xx_ll_usart.h │ │ ├── stm32h7xx_ll_usb.h │ │ ├── stm32h7xx_ll_utils.h │ │ └── stm32h7xx_ll_wwdg.h │ │ └── Src │ │ ├── stm32h7xx_hal.c │ │ ├── stm32h7xx_hal_adc.c │ │ ├── stm32h7xx_hal_adc_ex.c │ │ ├── stm32h7xx_hal_cec.c │ │ ├── stm32h7xx_hal_comp.c │ │ ├── stm32h7xx_hal_cortex.c │ │ ├── stm32h7xx_hal_crc.c │ │ ├── stm32h7xx_hal_crc_ex.c │ │ ├── stm32h7xx_hal_cryp.c │ │ ├── stm32h7xx_hal_cryp_ex.c │ │ ├── stm32h7xx_hal_dac.c │ │ ├── stm32h7xx_hal_dac_ex.c │ │ ├── stm32h7xx_hal_dcmi.c │ │ ├── stm32h7xx_hal_dfsdm.c │ │ ├── stm32h7xx_hal_dma.c │ │ ├── stm32h7xx_hal_dma2d.c │ │ ├── stm32h7xx_hal_dma_ex.c │ │ ├── stm32h7xx_hal_dsi.c │ │ ├── stm32h7xx_hal_eth.c │ │ ├── stm32h7xx_hal_eth_ex.c │ │ ├── stm32h7xx_hal_exti.c │ │ ├── stm32h7xx_hal_fdcan.c │ │ ├── stm32h7xx_hal_flash.c │ │ ├── stm32h7xx_hal_flash_ex.c │ │ ├── stm32h7xx_hal_gpio.c │ │ ├── stm32h7xx_hal_hash.c │ │ ├── stm32h7xx_hal_hash_ex.c │ │ ├── stm32h7xx_hal_hcd.c │ │ ├── stm32h7xx_hal_hrtim.c │ │ ├── stm32h7xx_hal_hsem.c │ │ ├── stm32h7xx_hal_i2c.c │ │ ├── stm32h7xx_hal_i2c_ex.c │ │ ├── stm32h7xx_hal_i2s.c │ │ ├── stm32h7xx_hal_i2s_ex.c │ │ ├── stm32h7xx_hal_irda.c │ │ ├── stm32h7xx_hal_iwdg.c │ │ ├── stm32h7xx_hal_jpeg.c │ │ ├── stm32h7xx_hal_lptim.c │ │ ├── stm32h7xx_hal_ltdc.c │ │ ├── stm32h7xx_hal_ltdc_ex.c │ │ ├── stm32h7xx_hal_mdios.c │ │ ├── stm32h7xx_hal_mdma.c │ │ ├── stm32h7xx_hal_mmc.c │ │ ├── stm32h7xx_hal_mmc_ex.c │ │ ├── stm32h7xx_hal_msp.c │ │ ├── stm32h7xx_hal_msp_template.c │ │ ├── stm32h7xx_hal_nand.c │ │ ├── stm32h7xx_hal_nor.c │ │ ├── stm32h7xx_hal_opamp.c │ │ ├── stm32h7xx_hal_opamp_ex.c │ │ ├── stm32h7xx_hal_pcd.c │ │ ├── stm32h7xx_hal_pcd_ex.c │ │ ├── stm32h7xx_hal_pwr.c │ │ ├── stm32h7xx_hal_pwr_ex.c │ │ ├── stm32h7xx_hal_qspi.c │ │ ├── stm32h7xx_hal_ramecc.c │ │ ├── stm32h7xx_hal_rcc.c │ │ ├── stm32h7xx_hal_rcc_ex.c │ │ ├── stm32h7xx_hal_rng.c │ │ ├── stm32h7xx_hal_rtc.c │ │ ├── stm32h7xx_hal_rtc_ex.c │ │ ├── stm32h7xx_hal_sai.c │ │ ├── stm32h7xx_hal_sai_ex.c │ │ ├── stm32h7xx_hal_sd.c │ │ ├── stm32h7xx_hal_sd_ex.c │ │ ├── stm32h7xx_hal_sdram.c │ │ ├── stm32h7xx_hal_smartcard.c │ │ ├── stm32h7xx_hal_smartcard_ex.c │ │ ├── stm32h7xx_hal_smbus.c │ │ ├── stm32h7xx_hal_spdifrx.c │ │ ├── stm32h7xx_hal_spi.c │ │ ├── stm32h7xx_hal_spi_ex.c │ │ ├── stm32h7xx_hal_sram.c │ │ ├── stm32h7xx_hal_swpmi.c │ │ ├── stm32h7xx_hal_tim.c │ │ ├── stm32h7xx_hal_tim_ex.c │ │ ├── stm32h7xx_hal_timebase_rtc_alarm_template.c │ │ ├── stm32h7xx_hal_timebase_rtc_wakeup_template.c │ │ ├── stm32h7xx_hal_timebase_tim_template.c │ │ ├── stm32h7xx_hal_uart.c │ │ ├── stm32h7xx_hal_uart_ex.c │ │ ├── stm32h7xx_hal_usart.c │ │ ├── stm32h7xx_hal_usart_ex.c │ │ ├── stm32h7xx_hal_wwdg.c │ │ ├── stm32h7xx_ll_adc.c │ │ ├── stm32h7xx_ll_bdma.c │ │ ├── stm32h7xx_ll_comp.c │ │ ├── stm32h7xx_ll_crc.c │ │ ├── stm32h7xx_ll_dac.c │ │ ├── stm32h7xx_ll_delayblock.c │ │ ├── stm32h7xx_ll_dma.c │ │ ├── stm32h7xx_ll_dma2d.c │ │ ├── stm32h7xx_ll_exti.c │ │ ├── stm32h7xx_ll_fmc.c │ │ ├── stm32h7xx_ll_gpio.c │ │ ├── stm32h7xx_ll_hrtim.c │ │ ├── stm32h7xx_ll_i2c.c │ │ ├── stm32h7xx_ll_lptim.c │ │ ├── stm32h7xx_ll_lpuart.c │ │ ├── stm32h7xx_ll_mdma.c │ │ ├── stm32h7xx_ll_opamp.c │ │ ├── stm32h7xx_ll_pwr.c │ │ ├── stm32h7xx_ll_rcc.c │ │ ├── stm32h7xx_ll_rng.c │ │ ├── stm32h7xx_ll_rtc.c │ │ ├── stm32h7xx_ll_sdmmc.c │ │ ├── stm32h7xx_ll_spi.c │ │ ├── stm32h7xx_ll_swpmi.c │ │ ├── stm32h7xx_ll_tim.c │ │ ├── stm32h7xx_ll_usart.c │ │ ├── stm32h7xx_ll_usb.c │ │ └── stm32h7xx_ll_utils.c ├── Output │ ├── ExtFlash │ │ └── Fire_H7.sct │ └── InFlash │ │ └── Fire_H7.sct ├── Project │ └── RVMDK(uv5) │ │ ├── DebugConfig │ │ ├── Fire_H7_ExtFlash_STM32H750XBHx_1.0.0.dbgconf │ │ ├── Fire_H7_ExtFlash_Single_STM32H750XBHx_1.0.0.dbgconf │ │ ├── Fire_H7_ExtFlash_Single_STM32H750XBHx_1.1.0.dbgconf │ │ ├── Fire_H7_InFlash_STM32H750XBHx_1.0.0.dbgconf │ │ ├── Fire_H7_InFlash_STM32H750XBHx_1.1.0.dbgconf │ │ ├── Fire_H7_IntFlash_STM32H750XBHx_1.0.0.dbgconf │ │ ├── Fire_H7_QSPI_STM32H750XBHx_1.0.0.dbgconf │ │ ├── Fire_H7_SDRAM_STM32H743XIHx_1.0.0.dbgconf │ │ ├── Fire_H7_SDRAM_STM32H750XBHx_1.0.0.dbgconf │ │ ├── Fire_H7_STM32H743IITx_1.0.0.dbgconf │ │ ├── Fire_H7_STM32H750XBHx_1.0.0.dbgconf │ │ ├── LED_STM32H743IITx_1.0.0.dbgconf │ │ ├── _________STM32H743IITx_1.0.0.dbgconf │ │ └── ___________STM32H743IITx_1.0.0.dbgconf │ │ ├── Fire_H750V.uvoptx │ │ └── Fire_H750V.uvprojx └── User │ ├── 43362A2_bin.c │ ├── FreeRTOSConfig.h │ ├── appliance.c │ ├── appliance.h │ ├── client.c │ ├── client.h │ ├── delay │ ├── core_delay.c │ └── core_delay.h │ ├── led │ ├── bsp_led.c │ └── bsp_led.h │ ├── main.c │ ├── main.h │ ├── mpu │ ├── bsp_mpu.c │ └── bsp_mpu.h │ ├── platform_toolchain.h │ ├── stm32h7xx_hal_conf.h │ ├── stm32h7xx_it.c │ ├── stm32h7xx_it.h │ ├── usart │ ├── bsp_debug_usart.c │ └── bsp_debug_usart.h │ ├── wifi_base_config.c │ └── wifi_base_config.h └── 网络调试助手-手机版(安卓) └── com.fontlose.tcpudp.apk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/README.md -------------------------------------------------------------------------------- /WiFi_SDK/.gdbinit_attach: -------------------------------------------------------------------------------- 1 | target remote localhost:3333 2 | 3 | -------------------------------------------------------------------------------- /WiFi_SDK/API_updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/API_updates.txt -------------------------------------------------------------------------------- /WiFi_SDK/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/CHANGELOG.txt -------------------------------------------------------------------------------- /WiFi_SDK/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/LICENSE.txt -------------------------------------------------------------------------------- /WiFi_SDK/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/FreeRTOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/FreeRTOS.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/WICED/WICED.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/WICED/WICED.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/WICED/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/WICED/rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/WICED/wiced_rtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/WICED/wiced_rtos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/WWD/wwd_rtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/WWD/wwd_rtos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/FreeRTOS/WWD/wwd_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/FreeRTOS/WWD/wwd_rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/NoOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/NoOS.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_M7/noos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_M7/noos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_M7/noos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_M7/noos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_R4/noos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_R4/noos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_R4/noos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/Cortex_R4/noos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/wwd_rtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/wwd_rtos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/WWD/wwd_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/WWD/wwd_rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/NoOS/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/NoOS/rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ThreadX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ThreadX.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WICED/WICED.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WICED/WICED.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WICED/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WICED/rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WICED/wiced_rtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WICED/wiced_rtos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WWD/CR4/timer_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WWD/CR4/timer_isr.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WWD/wwd_rtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WWD/wwd_rtos.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/WWD/wwd_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/WWD/wwd_rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_api.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_mutex.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_queue.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_timer.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_trace.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/ThreadX/ver5.8/tx_user.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/wiced_rtos_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/wiced_rtos_common.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/RTOS/wiced_rtos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/RTOS/wiced_rtos_common.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WICED.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WICED.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/WPL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/WPL.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/include/wpl_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/include/wpl_console.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_core.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_core.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_cpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_cpl.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_cpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_cpl.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_packet.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_packet.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_transport.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_transport.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WPL/internal/wpl_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WPL/internal/wpl_wifi.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_assert.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_constants.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_debug.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_eapol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_eapol.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_events.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_management.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_poll.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_structures.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_wifi.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_wifi_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_wifi_sleep.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/include/wwd_wlioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/include/wwd_wlioctl.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_ap.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_ap_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_ap_common.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_ap_common.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_bcmendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_bcmendian.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_clm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_clm.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_clm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_clm.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_debug.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_eapol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_eapol.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_internal.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_internal.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_logging.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_logging.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_management.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_sdpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_sdpcm.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_sdpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_sdpcm.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_thread.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_thread.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_wifi.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/WWD/internal/wwd_wifi_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/WWD/internal/wwd_wifi_sleep.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/dct.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/management.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/system_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/system_monitor.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/time.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/unit/wiced_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/unit/wiced_unit.cpp -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/waf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/waf.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_audio.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_cooee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_cooee.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_core.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_crypto.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_easy_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_easy_setup.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_filesystem.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_internal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_internal_api.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_lib.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wiced_low_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wiced_low_power.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/internal/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/internal/wifi.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/LwIP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/LwIP.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WICED/WICED.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WICED/WICED.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WICED/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WICED/tcpip.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/EMBOS/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/EMBOS/cpu.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/LinuxOS/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/LinuxOS/cpu.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/wwd_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/wwd_buffer.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/wwd_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/wwd_buffer.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/wwd_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/wwd_network.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/WWD/wwd_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/WWD/wwd_network.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/ver2.0.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/ver2.0.3/COPYING -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/ver2.0.3/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/ver2.0.3/FILES -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/ver2.0.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/ver2.0.3/README -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/ver2.0.3/doc/doxygen/generate.bat: -------------------------------------------------------------------------------- 1 | doxygen lwip.Doxyfile 2 | -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/ver2.0.3/doc/doxygen/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | doxygen lwip.Doxyfile 4 | -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/ver2.0.3/test/fuzz/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/LwIP/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/LwIP/version.txt -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/NetX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/NetX.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WICED/WICED.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WICED/WICED.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WICED/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WICED/tcpip.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WWD/wwd_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WWD/wwd_buffer.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WWD/wwd_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WWD/wwd_buffer.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WWD/wwd_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WWD/wwd_network.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX/WWD/wwd_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX/WWD/wwd_network.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX_Duo/NetX_Duo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX_Duo/NetX_Duo.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX_Duo/WICED/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX_Duo/WICED/tcpip.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NetX_Duo/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NetX_Duo/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NoNS/NoNS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NoNS/NoNS.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NoNS/WWD/WWD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NoNS/WWD/WWD.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NoNS/WWD/wwd_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NoNS/WWD/wwd_buffer.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/NoNS/WWD/wwd_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/NoNS/WWD/wwd_buffer.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/wiced_network_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/wiced_network_common.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/network/wiced_tcpip_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/network/wiced_tcpip_common.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM3/crt0_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM3/crt0_GCC.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM3/crt0_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM3/crt0_IAR.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM3/host_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM3/host_cm3.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM4/crt0_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM4/crt0_GCC.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM4/crt0_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM4/crt0_IAR.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM4/host_cm4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM4/host_cm4.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM7/crt0_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM7/crt0_GCC.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM7/crt0_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM7/crt0_IAR.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CM7/host_cm7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CM7/host_cm7.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CR4/cr4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CR4/cr4.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/ARM_CR4/crt0_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/ARM_CR4/crt0_GCC.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/GCC.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/GCC.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/cxx_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/cxx_funcs.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/linker_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/linker_symbols.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/math_newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/math_newlib.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/mem_newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/mem_newlib.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/stdio_newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/stdio_newlib.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/GCC/time_newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/GCC/time_newlib.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/IAR.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/IAR.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/iar_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/iar_getopt.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/iar_gnudecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/iar_gnudecls.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/iar_gnudefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/iar_gnudefs.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/iar_unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/iar_unistd.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/linker_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/linker_symbols.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/mem_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/mem_IAR.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/IAR/stdio_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/IAR/stdio_IAR.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/MCU/platform_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/MCU/platform_button.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/MCU/platform_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/MCU/platform_stdio.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/MCU/platform_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/MCU/platform_stdio.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/MCU/wiced_apps_lut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/MCU/wiced_apps_lut.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/MCU/wwd_resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/MCU/wwd_resources.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/WICED/platform/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/platform/include/elf.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/security/BESL/BESL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/security/BESL/BESL.mk -------------------------------------------------------------------------------- /WiFi_SDK/WICED/security/BESL/P2P/p2p_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/security/BESL/P2P/p2p_events.c -------------------------------------------------------------------------------- /WiFi_SDK/WICED/security/BESL/WPS/wps_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/security/BESL/WPS/wps_common.h -------------------------------------------------------------------------------- /WiFi_SDK/WICED/security/PostgreSQL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/security/PostgreSQL/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/WICED/security/PostgreSQL/fortuna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WICED/security/PostgreSQL/fortuna.c -------------------------------------------------------------------------------- /WiFi_SDK/WiFiSecurityExploits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/WiFiSecurityExploits.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/aliyun_mns/aliyun_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/aliyun_mns/aliyun_common.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/aliyun_mns/aliyun_mns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/aliyun_mns/aliyun_mns.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/aliyun_mns/aliyun_mns.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/aliyun_mns/aliyun_mns.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/aliyun_mns/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/aliyun_mns/xml.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/aliyun_mns/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/aliyun_mns/xml.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/OTA2_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/OTA2_README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_config.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_config.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_console.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_context.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_debug.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_debug.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_keypad.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_keypad.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_tracex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_tracex.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/apollo_tracex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/apollo_tracex.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/bt_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/bt_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/apollo/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/apollo/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/appliance/appliance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/appliance/appliance.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/appliance/appliance.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/appliance/appliance.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/capsense/capsense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/capsense/capsense.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/capsense/capsense.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/capsense/capsense.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/dual_hf_a2dp/app_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/dual_hf_a2dp/app_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/dual_hf_a2dp/app_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/dual_hf_a2dp/app_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/dual_hf_a2dp/app_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/dual_hf_a2dp/app_keypad.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/dual_hf_a2dp/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/dual_hf_a2dp/hashtable.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/dual_hf_a2dp/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/dual_hf_a2dp/hashtable.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/hashtable.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/hashtable.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_button.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_button.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_config.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_config.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_wlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_wlan.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/headset_wlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/headset_wlan.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/headset/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/headset/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/cloudconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/cloudconfig.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/gateway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/gateway.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/gateway.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/gateway_coap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/gateway_coap.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/gateway_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/gateway_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/gateway_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/gateway_http.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/httpproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/httpproxy.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/iot_gateway.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/iot_gateway.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/iot_gateway/wiced_bt_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/iot_gateway/wiced_bt_cfg.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/quicksilver/mfg/0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/quicksilver/mfg/0001.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/quicksilver/mfg/0002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/quicksilver/mfg/0002.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/quicksilver/mfg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/quicksilver/mfg/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/quicksilver/quicksilver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/quicksilver/quicksilver.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/quicksilver/quicksilver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/quicksilver/quicksilver.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/quicksilver/quicksilver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/quicksilver/quicksilver.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/temp_control/mfg/0001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/temp_control/mfg/0001.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/demo/temp_control/mfg/0002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/demo/temp_control/mfg/0002.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/amqp/amqpsv0_9/amqpsv0_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/amqp/amqpsv0_9/amqpsv0_9.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/amqp/amqpv0_9/amqpv0_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/amqp/amqpv0_9/amqpv0_9.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/amqp/amqpv0_9/amqpv0_9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/amqp/amqpv0_9/amqpv0_9.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/amqp/amqpv1_0/amqpv1_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/amqp/amqpv1_0/amqpv1_0.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/amqp/amqpv1_0/amqpv1_0.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/amqp/amqpv1_0/amqpv1_0.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/apsta/apsta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/apsta/apsta.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/apsta/apsta.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/apsta/apsta.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/apsta/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/apsta/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/coap_app/coap_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/coap_app/coap_app.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/coap_app/coap_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/coap_app/coap_app.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/coap_app/coap_app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/coap_app/coap_app.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/coap_app/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/coap_app/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/config_mode/config_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/config_mode/config_mode.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/config_mode/config_mode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/config_mode/config_mode.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/crypto/crypto.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/crypto/crypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/crypto/crypto.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/custom_ie/custom_ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/custom_ie/custom_ie.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/custom_ie/custom_ie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/custom_ie/custom_ie.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/email/email.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/email/email.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/email/email.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/email/email.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac_app_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac_app_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac_app_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac_app_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac_config.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac_config.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac_test.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/flac_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/flac_test.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/wiced_flac_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/wiced_flac_internal.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/flac/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/flac/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/gpio/gpio.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/gpio/gpio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/gpio/gpio.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/graphics/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/graphics/hello/hello.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/graphics/hello/hello.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/graphics/hello/hello.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/graphics/uguitest/trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/graphics/uguitest/trig.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/graphics/uguitest/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/graphics/uguitest/trig.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/gspi_slave/gspi_slave.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/gspi_slave/gspi_slave.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/httpbin_org/httpbin_org.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/httpbin_org/httpbin_org.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/httpbin_org/httpbin_org.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/httpbin_org/httpbin_org.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/keep_alive/keep_alive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/keep_alive/keep_alive.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/keep_alive/keep_alive.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/keep_alive/keep_alive.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/led_example/led_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/led_example/led_example.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/led_example/led_example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/led_example/led_example.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/link_status/link_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/link_status/link_status.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/link_status/link_status.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/link_status/link_status.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_0/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_0/app_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_0/app_0.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_0/app_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_0/app_0.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_0/app_0_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_0/app_0_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_0/common_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_0/common_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_0/common_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_0/common_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_1/app_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_1/app_1.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_1/app_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_1/app_1.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/multi_image_1/app_1_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/multi_image_1/app_1_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ota2_example/ota2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ota2_example/ota2_test.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ota2_example/ota2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ota2_example/ota2_test.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ota_fr/ota_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ota_fr/ota_fr.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ota_fr/ota_fr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ota_fr/ota_fr.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/pno/pno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/pno/pno.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/pno/pno.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/pno/pno.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/pno/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/pno/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/powercycle/powercycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/powercycle/powercycle.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/powercycle/powercycle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/powercycle/powercycle.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rfmon/bin/create_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rfmon/bin/create_plot.sh -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rfmon/bin/renumber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rfmon/bin/renumber.sh -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rfmon/rfmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rfmon/rfmon.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rfmon/rfmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rfmon/rfmon.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rfmon/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rfmon/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/key.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/key_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/key_private.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/key_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/key_public.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/message.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/readme.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/rsa_pkcs1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/rsa_pkcs1.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/rsa_pkcs1/rsa_pkcs1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/rsa_pkcs1/rsa_pkcs1.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/scan/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/scan/scan.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/scan/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/scan/scan.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/secure_mqtt/secure_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/secure_mqtt/secure_mqtt.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/secure_mqtt/secure_mqtt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/secure_mqtt/secure_mqtt.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp_app.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp_app.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp_app_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp_app_config.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp_app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp_app_config.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp_app_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp_app_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/ssdp_app_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/ssdp_app_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/ssdp/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/ssdp/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/stdio/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/stdio/stdio.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/stdio/stdio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/stdio/stdio.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tcp_client/tcp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tcp_client/tcp_client.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tcp_client/tcp_client.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tcp_client/tcp_client.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tcp_server/tcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tcp_server/tcp_client.py -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tcp_server/tcp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tcp_server/tcp_server.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tcp_server/tcp_server.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tcp_server/tcp_server.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tftp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tftp/tftp.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tftp/tftp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tftp/tftp.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/tftp/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/tftp/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/uart/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/uart/uart.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/uart/uart.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/uart/uart.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/udp_receive/udp_receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/udp_receive/udp_receive.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/udp_receive/udp_receive.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/udp_receive/udp_receive.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/usbx_usb_device/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/usbx_usb_device/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/usbx_usb_host/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/usbx_usb_host/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/wifi_mesh/README_Mesh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/wifi_mesh/README_Mesh.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh_dct.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/snip/wifi_mesh/wifi_mesh_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/apps_sleep/apps_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/apps_sleep/apps_sleep.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/apps_sleep/apps_sleep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/apps_sleep/apps_sleep.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/bt_mfg_test/bt_mfg_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/bt_mfg_test/bt_mfg_test.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/bt_mfg_test/bt_mfg_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/bt_mfg_test/bt_mfg_test.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/console/README-Iperf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/console/README-Iperf.pdf -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/console/console.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/console/console.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/console/wiced_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/console/wiced_init.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/duktape/duktape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/duktape/duktape.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/duktape/duktape.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/duktape/duktape.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/duktape/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/duktape/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/chisq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/chisq.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/entropy.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/entropy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/entropy.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/iso8859.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/iso8859.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/iso8859.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/iso8859.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/randtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/randtest.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/entropy/randtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/entropy/randtest.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/http2/http2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/http2/http2.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/http2/http2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/http2/http2_test.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/http2/wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/http2/wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/iperf_app/README-Iperf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/iperf_app/README-Iperf.pdf -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/iperf_app/iperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/iperf_app/iperf.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/iperf_app/iperf_app.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/iperf_app/iperf_app.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/mfg_test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/mfg_test/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/mfg_test/mfg_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/mfg_test/mfg_test.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/mfg_test/mfg_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/mfg_test/mfg_test.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/mfg_test/mfg_test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/mfg_test/mfg_test_init.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/app_readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/app_readline.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/apps/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/apps/builtin.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/apps/cle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/apps/cle.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/apps/netutils/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/apps/netutils/dhcpc.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/apps/netutils/netlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/apps/netutils/netlib.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/apps/netutils/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/apps/netutils/tftp.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/apps/nsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/apps/nsh.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/builtin.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/builtin_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/builtin_list.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/builtin_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/builtin_list.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/builtin_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/builtin_proto.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/cle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/cle.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/dns_gethostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/dns_gethostip.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/dns_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/dns_resolver.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/dns_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/dns_socket.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/exec_builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/exec_builtin.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_bus.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_common.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_dev.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_get.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_main.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_set.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2c_verf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2c_verf.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/i2ctool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/i2ctool.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_builtin.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_command.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_console.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_console.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_consolemain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_consolemain.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_dbgcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_dbgcmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_ddcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_ddcmd.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_dhcpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_dhcpd.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_envcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_envcmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_fscmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_fscmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_init.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_main.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_mmcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_mmcmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_mntcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_mntcmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_netcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_netcmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_netinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_netinit.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_parse.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_proccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_proccmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_routecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_routecmds.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_script.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_session.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_smartfs_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_smartfs_init.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_telnetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_telnetd.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nsh_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nsh_test.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nxplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nxplayer.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nxplayer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nxplayer/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/nxplayer/nxplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/nxplayer/nxplayer.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/aio.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/barrier.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/cancel.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/cond.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/dev_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/dev_null.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/fpu.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/mqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/mqueue.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/mutex.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/nsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/nsem.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/ostest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/ostest.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/ostest_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/ostest_main.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/posixtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/posixtimer.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/prioinherit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/prioinherit.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/restart.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/rmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/rmutex.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/roundrobin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/roundrobin.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/sem.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/semtimed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/semtimed.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/sighand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/sighand.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/timedmqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/timedmqueue.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/timedwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/timedwait.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/vfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/vfork.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/ostest/waitpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/ostest/waitpid.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/readline.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/readline.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/readline_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/readline_common.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/std_readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/std_readline.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/telnetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/telnetd.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/telnetd_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/telnetd_daemon.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/telnetd_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/telnetd_driver.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/nsh/usb_host_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/nsh/usb_host_main.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/powersave/powersave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/powersave/powersave.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/powersave/powersave.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/powersave/powersave.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/sigma_dut/sigma_dut.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/sigma_dut/sigma_dut.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/sigma_dut/wiced_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/sigma_dut/wiced_init.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/sigma_dut/wifi/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/sigma_dut/wifi/wifi.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/test/sigma_dut/wifi/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/test/sigma_dut/wifi/wifi.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/waf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/waf/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/waf/bootloader/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/waf/bootloader/bootloader.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/waf/bootloader/bootloader.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/waf/bootloader/bootloader.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/waf/sflash_write/sflash_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/waf/sflash_write/sflash_write.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/AP_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/AP_content.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/STA_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/STA_content.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/appliance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/appliance.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/appliance.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/appliance.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/appliance_wps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/appliance_wps.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/brcmlogos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/brcmlogos.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/brcmlogos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/brcmlogos.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/icons.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/icons.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/appliance/web_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/appliance/web_server.h -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/canned_send/canned_send.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/canned_send/canned_send.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/ping/EMBOS_LwIP_Ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/ping/EMBOS_LwIP_Ping.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/ping/FreeRTOS_LwIP_Ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/ping/FreeRTOS_LwIP_Ping.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/ping/ThreadX_NetX_Ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/ping/ThreadX_NetX_Ping.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/ping/ping.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/ping/ping.mk -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/scan/FreeRTOS_LwIP_Scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/scan/FreeRTOS_LwIP_Scan.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/scan/ThreadX_NetX_Scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/scan/ThreadX_NetX_Scan.c -------------------------------------------------------------------------------- /WiFi_SDK/apps/wwd/scan/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/apps/wwd/scan/scan.mk -------------------------------------------------------------------------------- /WiFi_SDK/generated_mac_address.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/generated_mac_address.txt -------------------------------------------------------------------------------- /WiFi_SDK/include/default_bt_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/default_bt_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/include/default_network_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/default_network_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/include/default_p2p_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/default_p2p_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/include/default_wifi_config_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/default_wifi_config_dct.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_audio.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_bluetooth_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_bluetooth_result.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_codec_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_codec_if.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_constants.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_crypto.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_deep_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_deep_sleep.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_defaults.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_dtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_dtls.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_easy_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_easy_setup.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_filesystem.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_framework.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_low_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_low_power.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_management.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_platform.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_power_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_power_logger.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_resource.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_result.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_rtos.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_tcpip.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_time.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_tls.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_usb.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_utilities.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_wifi.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_wifi_deep_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_wifi_deep_sleep.h -------------------------------------------------------------------------------- /WiFi_SDK/include/wiced_xip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/include/wiced_xip.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/codec/FLAC/FLAC.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/codec/FLAC/FLAC.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/codec/FLAC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/codec/FLAC/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/codec/aac_dec/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/codec/aac_dec/tpm.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/codec/aac_dec/tsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/codec/aac_dec/tsp.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/codec/wavpack/full/README-1ST.txt: -------------------------------------------------------------------------------- 1 | http://www.wavpack.com/ 2 | 3 | this code is version : v.5.10 4 | -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/display/display.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/display/display.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/tsfilter/tsfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/tsfilter/tsfilter.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/tsfilter/tsfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/tsfilter/tsfilter.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/upnp_av_render/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFi_SDK/libraries/audio/upnp_av_render/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/audio/upnp_av_render/NEWS -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/Gedday/Gedday.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/Gedday/Gedday.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/Gedday/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/Gedday/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/Gedday/gedday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/Gedday/gedday.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/SSDP/SSDP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/SSDP/SSDP.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/SSDP/wiced_ssdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/SSDP/wiced_ssdp.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/SSDP/wiced_ssdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/SSDP/wiced_ssdp.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/tftp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/tftp/tftp.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/tftp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/tftp/tftp.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/daemons/tftp/tftp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/daemons/tftp/tftp.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/drivers/USB/USBX/USBX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/drivers/USB/USBX/USBX.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/drivers/gspi/gspi_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/drivers/gspi/gspi_basic.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/CHANGELOG -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/COPYING -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/README -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/TIPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/TIPS -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/kiss_fft.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/kiss_fft.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/kiss_fft.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/kiss_fft.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/kissfft.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/kissfft.hh -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/test/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/test/doit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/test/doit.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/test/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/test/fft.py -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/test/pstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/test/pstats.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/test/pstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/test/pstats.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/tools/kfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/tools/kfc.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/tools/kfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/tools/kfc.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/dsp/kiss_fft/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/dsp/kiss_fft/version.txt -------------------------------------------------------------------------------- /WiFi_SDK/libraries/filesystems/FATFS/FATFS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/filesystems/FATFS/FATFS.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/filesystems/FileX/FileX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/filesystems/FileX/FileX.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/filesystems/ota2/ota2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/filesystems/ota2/ota2.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_arm.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_arm.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_bitmap.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_circle.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_clip.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_com_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_com_api.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_com_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_com_i2c.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_com_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_com_io.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_cursor.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_delay.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_ellipse.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_font.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_line.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_ll_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_ll_api.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_page.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb14v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb14v1.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb16h1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb16h1.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb16h2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb16h2.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb16v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb16v1.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb16v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb16v2.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb32h1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb32h1.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb8h1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb8h1.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb8h1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb8h1f.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb8h2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb8h2.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb8h8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb8h8.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb8v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb8v1.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pb8v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pb8v2.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pbxh16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pbxh16.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_pbxh24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_pbxh24.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_polygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_polygon.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_rect.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_rot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_rot.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_scale.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_state.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_u16toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_u16toa.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/u8g/u8g_u8toa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/u8g/u8g_u8toa.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/LICENSE.md -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/README.md -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/ugui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/ugui.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/ugui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/ugui.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/ugui.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/ugui.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/ugui_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/ugui_bus.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/graphics/ugui/ugui_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/graphics/ugui/ugui_bus.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/AWS/AWS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/AWS/AWS.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/AWS/aws_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/AWS/aws_common.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/AWS/aws_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/AWS/aws_mqtt.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/AWS/wiced_aws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/AWS/wiced_aws.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/AWS/wiced_aws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/AWS/wiced_aws.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/COAP/COAP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/COAP/COAP.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/DNS/DNS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/DNS/DNS.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/DNS/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/DNS/dns.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/DNS/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/DNS/dns.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/HTTP/HTTP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/HTTP/HTTP.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/HTTP/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/HTTP/http.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/HTTP/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/HTTP/http.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/HTTP2/HTTP2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/HTTP2/HTTP2.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/HTTP2/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/HTTP2/http2.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/HTTP2/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/HTTP2/http2.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/MQTT/MQTT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/MQTT/MQTT.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/MQTT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/MQTT/README -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/MQTT/mqtt_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/MQTT/mqtt_api.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/MQTT/mqtt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/MQTT/mqtt_api.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/SMTP/SMTP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/SMTP/SMTP.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/SMTP/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/SMTP/smtp.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/SMTP/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/SMTP/smtp.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/SNTP/SNTP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/SNTP/SNTP.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/SNTP/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/SNTP/sntp.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/SNTP/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/SNTP/sntp.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/ChangeLog -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/LICENSE -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/NEWS -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/README -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/THANKS -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/TODO -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/UPNP/UPNP.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/UPNP/UPNP.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/Xively/Xively.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/Xively/Xively.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/Xively/xively.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/Xively/xively.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/protocols/Xively/xively.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/protocols/Xively/xively.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/scripting/javascript/duktape/src/ver2.0.0/config/header-snippets/architecture_fillins.h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/TraceX/TraceX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/TraceX/TraceX.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/TraceX/TraceX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/TraceX/TraceX.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/TraceX/TraceX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/TraceX/TraceX.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/AUTHORS -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/COPYING -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/ChangeLog -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/INSTALL -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/Makefile.am -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/README -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/TODO -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/WICED.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/WICED.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/WICED/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/WICED/compat.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/WICED/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/WICED/inet.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/WICED/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/WICED/netdb.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/WICED/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/WICED/netdb.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/WICED/usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/WICED/usleep.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/autogen.sh -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/build-all.sh -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/clean.sh -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/compat/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/compat/Thread.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/compat/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/compat/error.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/compat/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/compat/signal.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/compat/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/compat/string.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/config.h.in -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/configure.ac -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/doc/Makefile.am -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/doc/dast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/doc/dast.gif -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/include/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/include/List.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/include/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/include/Mutex.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/include/util.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/iperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/iperf.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/iperf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/iperf.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/m4/dast.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/m4/dast.m4 -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Client.cpp -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Extractor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Extractor.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Launch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Launch.cpp -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/List.cpp -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Locale.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Makefile.am -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/ReportCSV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/ReportCSV.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Reporter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Reporter.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/Server.cpp -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/debug.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/main.cpp -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/sockets.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/iperf/src/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/iperf/src/stdio.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/dummy/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/dummy/netdb.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43340B0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43340B0.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43341B0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43341B0.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43362A2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43362A2.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43364A1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43364A1.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43438A1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43438A1.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl4343WA1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl4343WA1.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43455C0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43455C0.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl43909B0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl43909B0.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl4390A1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl4390A1.exe -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl_tool.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wl_tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wl_tool.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wlu_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wlu_client.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wlu_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wlu_server.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/test/wl_tool/wlu_wiced.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/test/wl_tool/wlu_wiced.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/TLV/TLV.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/TLV/TLV.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/TLV/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/TLV/tlv.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/TLV/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/TLV/tlv.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/base64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/base64/base64.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/base64/base64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/base64/base64.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/bufmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/bufmgr/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/bufmgr/bufmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/bufmgr/bufmgr.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/bufmgr/bufmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/bufmgr/bufmgr.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/bufmgr/bufmgr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/bufmgr/bufmgr.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/cJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/cJSON/LICENSE -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/cJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/cJSON/README.md -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/cJSON/cJSON.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/cJSON/cJSON.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/cJSON/cJSON.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/cJSON/cJSON.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/cJSON/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/cJSON/test.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/crc/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/crc/crc.c -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/crc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/crc/crc.h -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/crc/crc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/crc/crc.mk -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/wifi/Makefile -------------------------------------------------------------------------------- /WiFi_SDK/libraries/utilities/wifi/wifi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/libraries/utilities/wifi/wifi.mk -------------------------------------------------------------------------------- /WiFi_SDK/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/make -------------------------------------------------------------------------------- /WiFi_SDK/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/make.exe -------------------------------------------------------------------------------- /WiFi_SDK/make1384-2e.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/make1384-2e.bat -------------------------------------------------------------------------------- /WiFi_SDK/platforms/删除了 官方的部分平台.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFi_SDK/resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/amqps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/apps/amqps/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/avs/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/apps/avs/img0.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/avs/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/apps/avs/img1.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/avs/img1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/apps/avs/img1a.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/avs/ui_wakesound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/apps/avs/ui_wakesound.mp3 -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/greengrass/publisher/client.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Client Certificate (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/greengrass/publisher/privkey.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Private Key (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/greengrass/subscriber/client.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Client Certificate (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/greengrass/subscriber/privkey.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Private Key (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/mesh/client.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Client Certificate (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/mesh/privkey.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Private Key (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/publisher/client.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Client Certificate (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/publisher/privkey.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Private Key (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/rootca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/apps/aws/iot/rootca.cer -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/subscriber/client.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Client Certificate (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/aws/iot/subscriber/privkey.cer: -------------------------------------------------------------------------------- 1 | User AWS IOT Private Key (Dummy) -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/duktape/modules/nodejs_style/lib/goodbye.js: -------------------------------------------------------------------------------- 1 | module.exports = "Farewell!"; 2 | -------------------------------------------------------------------------------- /WiFi_SDK/resources/apps/duktape/modules/nodejs_style/lib/hello.js: -------------------------------------------------------------------------------- 1 | module.exports = "Hi there!"; 2 | -------------------------------------------------------------------------------- /WiFi_SDK/resources/certificates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/certificates/README.txt -------------------------------------------------------------------------------- /WiFi_SDK/resources/firmware/43362/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/firmware/43362/resources.h -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/64_0bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/64_0bars.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/64_1bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/64_1bars.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/64_2bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/64_2bars.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/64_3bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/64_3bars.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/64_4bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/64_4bars.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/64_5bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/64_5bars.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/cross.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/cypresslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/cypresslogo.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/favicon.ico -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/grender_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/grender_128.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/grender_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/grender_64.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/lock.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/progress.gif -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/scan_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/scan_icon.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/tick.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/images/wps_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/images/wps_icon.png -------------------------------------------------------------------------------- /WiFi_SDK/resources/scripts/wpad.dat: -------------------------------------------------------------------------------- 1 | function FindProxyForURL(url, host) 2 | { 3 | return "DIRECT"; 4 | } -------------------------------------------------------------------------------- /WiFi_SDK/resources/styles/border-radius.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/styles/border-radius.htc -------------------------------------------------------------------------------- /WiFi_SDK/resources/styles/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/resources/styles/buttons.css -------------------------------------------------------------------------------- /WiFi_SDK/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/version.txt -------------------------------------------------------------------------------- /WiFi_SDK/wlan-firmware-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/WiFi_SDK/wlan-firmware-versions.txt -------------------------------------------------------------------------------- /wifi_lwip_client/Doc/必读说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/Doc/必读说明.txt -------------------------------------------------------------------------------- /wifi_lwip_client/Output/ExtFlash/Fire_H7.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/Output/ExtFlash/Fire_H7.sct -------------------------------------------------------------------------------- /wifi_lwip_client/Output/InFlash/Fire_H7.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/Output/InFlash/Fire_H7.sct -------------------------------------------------------------------------------- /wifi_lwip_client/User/43362A2_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/43362A2_bin.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/FreeRTOSConfig.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/appliance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/appliance.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/appliance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/appliance.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/client.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/client.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/delay/core_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/delay/core_delay.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/delay/core_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/delay/core_delay.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/led/bsp_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/led/bsp_led.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/led/bsp_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/led/bsp_led.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/main.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/main.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/mpu/bsp_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/mpu/bsp_mpu.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/mpu/bsp_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/mpu/bsp_mpu.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/platform_toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/platform_toolchain.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/stm32h7xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/stm32h7xx_it.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/stm32h7xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/stm32h7xx_it.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/usart/bsp_debug_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/usart/bsp_debug_usart.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/usart/bsp_debug_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/usart/bsp_debug_usart.h -------------------------------------------------------------------------------- /wifi_lwip_client/User/wifi_base_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/wifi_base_config.c -------------------------------------------------------------------------------- /wifi_lwip_client/User/wifi_base_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/wifi_lwip_client/User/wifi_base_config.h -------------------------------------------------------------------------------- /网络调试助手-手机版(安卓)/com.fontlose.tcpudp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwink/ART-Pi-WICED-AP6212a/HEAD/网络调试助手-手机版(安卓)/com.fontlose.tcpudp.apk --------------------------------------------------------------------------------