gitextract_g9i0p3qt/ ├── .github/ │ └── workflows/ │ ├── build.yml │ └── docker-image.yml ├── .gitignore ├── .vscode/ │ └── launch.json ├── DP32G030.svd ├── Dockerfile ├── Dockerfile_cn ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── README_en.md ├── am_fix.c ├── am_fix.h ├── app/ │ ├── action.c │ ├── action.h │ ├── aircopy.c │ ├── aircopy.h │ ├── app.c │ ├── app.h │ ├── chFrScanner.c │ ├── chFrScanner.h │ ├── common.c │ ├── common.h │ ├── doppler.c │ ├── doppler.h │ ├── dtmf.c │ ├── dtmf.h │ ├── flashlight.c │ ├── flashlight.h │ ├── fm.c │ ├── fm.h │ ├── generic.c │ ├── generic.h │ ├── main.c │ ├── main.h │ ├── mdc1200.c │ ├── mdc1200.h │ ├── menu.c │ ├── menu.h │ ├── messenger.c │ ├── messenger.h │ ├── scanner.c │ ├── scanner.h │ ├── si.c │ ├── si.h │ ├── spectrum.c │ ├── spectrum.h │ ├── uart.c │ └── uart.h ├── audio.c ├── audio.h ├── bitmaps.c ├── bitmaps.h ├── board.c ├── board.h ├── bsp/ │ └── dp32g030/ │ ├── aes.h │ ├── crc.h │ ├── dma.h │ ├── flash.h │ ├── gpio.h │ ├── irq.h │ ├── pmu.h │ ├── portcon.h │ ├── pwmplus.h │ ├── rtc.h │ ├── saradc.h │ ├── spi.h │ ├── syscon.h │ ├── timer.h │ └── uart.h ├── build/ │ ├── .cmake/ │ │ └── api/ │ │ └── v1/ │ │ └── query/ │ │ └── client-vscode/ │ │ └── query.json │ ├── CMakeCache.txt │ └── CMakeFiles/ │ └── cmake.check_cache ├── chinese.h ├── compile-with-docker.bat ├── compile-with-docker.sh ├── dcs.c ├── dcs.h ├── debugging.h ├── del_linux.sh ├── del_win.bat ├── doc/ │ ├── LoseHu固件多普勒使用说明.docx │ ├── 多普勒eeprom详细说明.txt │ └── 输入法编码表.xlsx ├── dp32g030.cfg ├── driver/ │ ├── adc.c │ ├── adc.h │ ├── aes.c │ ├── aes.h │ ├── backlight.c │ ├── backlight.h │ ├── bk1080-regs.h │ ├── bk1080.c │ ├── bk1080.h │ ├── bk4819-regs.h │ ├── bk4819.c │ ├── bk4819.h │ ├── crc.c │ ├── crc.h │ ├── eeprom.c │ ├── eeprom.h │ ├── flash.c │ ├── flash.h │ ├── gpio.c │ ├── gpio.h │ ├── i2c.c │ ├── i2c.h │ ├── keyboard.c │ ├── keyboard.h │ ├── rtc.c │ ├── si473x.c │ ├── si473x.h │ ├── spi.c │ ├── spi.h │ ├── st7565.c │ ├── st7565.h │ ├── system.c │ ├── system.h │ ├── systick.c │ ├── systick.h │ ├── timer.c │ ├── uart.c │ └── uart.h ├── external/ │ ├── CMSIS_5/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ ├── fileheader.json │ │ │ ├── linkchecker.json │ │ │ ├── workflows/ │ │ │ │ ├── caller-corevalidation.yml │ │ │ │ ├── codeql-analysis.yml │ │ │ │ ├── corevalidation-report.yml │ │ │ │ ├── corevalidation.yml │ │ │ │ ├── fileheader.yml │ │ │ │ ├── gh-pages.yaml │ │ │ │ ├── packdesc.yml │ │ │ │ └── release.yaml │ │ │ └── xmllint.json │ │ ├── .gitignore │ │ ├── ARM.CMSIS.pdsc │ │ ├── CMSIS/ │ │ │ ├── Core/ │ │ │ │ ├── Include/ │ │ │ │ │ ├── cachel1_armv7.h │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── cmsis_tiarmclang.h │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ ├── core_armv81mml.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_cm35p.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm55.h │ │ │ │ │ ├── core_cm7.h │ │ │ │ │ ├── core_cm85.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ ├── core_sc300.h │ │ │ │ │ ├── core_starmc1.h │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ ├── mpu_armv8.h │ │ │ │ │ ├── pac_armv81.h │ │ │ │ │ ├── pmu_armv8.h │ │ │ │ │ └── tz_context.h │ │ │ │ └── Template/ │ │ │ │ └── ARMv8-M/ │ │ │ │ ├── main_s.c │ │ │ │ └── tz_context.c │ │ │ ├── CoreValidation/ │ │ │ │ ├── Include/ │ │ │ │ │ ├── CV_Framework.h │ │ │ │ │ ├── CV_Report.h │ │ │ │ │ ├── CV_Typedefs.h │ │ │ │ │ └── cmsis_cv.h │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Layer/ │ │ │ │ │ ├── App/ │ │ │ │ │ │ ├── Bootloader_Cortex-M/ │ │ │ │ │ │ │ ├── App.clayer.yml │ │ │ │ │ │ │ └── bootloader.c │ │ │ │ │ │ ├── Validation_Cortex-A/ │ │ │ │ │ │ │ ├── App.clayer.yml │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── Validation_Cortex-M/ │ │ │ │ │ │ ├── App.clayer.yml │ │ │ │ │ │ └── main.c │ │ │ │ │ └── Target/ │ │ │ │ │ ├── CA5/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCA5/ │ │ │ │ │ │ │ ├── ARMCA5.icf │ │ │ │ │ │ │ ├── ARMCA5.icf.base@1.0.0 │ │ │ │ │ │ │ ├── ARMCA5.ld │ │ │ │ │ │ │ ├── ARMCA5.sct │ │ │ │ │ │ │ ├── mem_ARMCA5.h │ │ │ │ │ │ │ ├── mmu_ARMCA5.c │ │ │ │ │ │ │ ├── startup_ARMCA5.c │ │ │ │ │ │ │ ├── startup_ARMCA5.c.base@1.0.1 │ │ │ │ │ │ │ ├── startup_ARMCA5.s │ │ │ │ │ │ │ ├── startup_ARMCA5.s.base@1.0.0 │ │ │ │ │ │ │ ├── system_ARMCA5.c │ │ │ │ │ │ │ ├── system_ARMCA5.c.base@1.0.1 │ │ │ │ │ │ │ ├── system_ARMCA5.h │ │ │ │ │ │ │ └── system_ARMCA5.h.base@1.0.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CA7/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCA7/ │ │ │ │ │ │ │ ├── ARMCA7.icf │ │ │ │ │ │ │ ├── ARMCA7.icf.base@1.0.0 │ │ │ │ │ │ │ ├── ARMCA7.ld │ │ │ │ │ │ │ ├── ARMCA7.sct │ │ │ │ │ │ │ ├── mem_ARMCA7.h │ │ │ │ │ │ │ ├── mmu_ARMCA7.c │ │ │ │ │ │ │ ├── startup_ARMCA7.c │ │ │ │ │ │ │ ├── startup_ARMCA7.c.base@1.0.1 │ │ │ │ │ │ │ ├── startup_ARMCA7.s │ │ │ │ │ │ │ ├── startup_ARMCA7.s.base@1.0.0 │ │ │ │ │ │ │ ├── system_ARMCA7.c │ │ │ │ │ │ │ ├── system_ARMCA7.c.base@1.0.1 │ │ │ │ │ │ │ ├── system_ARMCA7.h │ │ │ │ │ │ │ └── system_ARMCA7.h.base@1.0.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CA9/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCA9/ │ │ │ │ │ │ │ ├── ARMCA9.icf │ │ │ │ │ │ │ ├── ARMCA9.icf.base@1.0.0 │ │ │ │ │ │ │ ├── ARMCA9.ld │ │ │ │ │ │ │ ├── ARMCA9.sct │ │ │ │ │ │ │ ├── mem_ARMCA9.h │ │ │ │ │ │ │ ├── mmu_ARMCA9.c │ │ │ │ │ │ │ ├── startup_ARMCA9.c │ │ │ │ │ │ │ ├── startup_ARMCA9.s │ │ │ │ │ │ │ ├── startup_ARMCA9.s.base@1.0.0 │ │ │ │ │ │ │ ├── system_ARMCA9.c │ │ │ │ │ │ │ ├── system_ARMCA9.h │ │ │ │ │ │ │ └── system_ARMCA9.h.base@1.0.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM0/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM0/ │ │ │ │ │ │ │ ├── ARMCM0_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM0.c │ │ │ │ │ │ │ ├── startup_ARMCM0.c.base@2.0.3 │ │ │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ │ │ └── tiac_arm.cmd │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM0plus/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM0P/ │ │ │ │ │ │ │ ├── ARMCM0plus_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM0plus.c │ │ │ │ │ │ │ ├── startup_ARMCM0plus.c.base@2.0.3 │ │ │ │ │ │ │ ├── system_ARMCM0plus.c │ │ │ │ │ │ │ └── tiac_arm.cmd │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM23/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM23/ │ │ │ │ │ │ │ ├── ARMCM23_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM23.c │ │ │ │ │ │ │ ├── startup_ARMCM23.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM23.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM23NS/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM23_TZ/ │ │ │ │ │ │ │ ├── ARMCM23_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM23.c │ │ │ │ │ │ │ ├── startup_ARMCM23.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM23.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM23S/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM23_TZ/ │ │ │ │ │ │ │ ├── ARMCM23_ac6_s.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM23.h │ │ │ │ │ │ │ ├── startup_ARMCM23.c │ │ │ │ │ │ │ ├── startup_ARMCM23.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM23.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM23S_BL/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM23_TZ/ │ │ │ │ │ │ │ ├── ARMCM23_ac6_s.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM23.h │ │ │ │ │ │ │ ├── startup_ARMCM23.c │ │ │ │ │ │ │ ├── startup_ARMCM23.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM23.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM3/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM3/ │ │ │ │ │ │ │ ├── ARMCM3_ac6.sct │ │ │ │ │ │ │ ├── ARMCM3_ac6.sct.base@1.0.0 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM3.c │ │ │ │ │ │ │ ├── startup_ARMCM3.c.base@2.0.3 │ │ │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ │ │ ├── system_ARMCM3.c.base@1.0.1 │ │ │ │ │ │ │ └── tiac_arm.cmd │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM33/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP/ │ │ │ │ │ │ │ ├── ARMCM33_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ ├── startup_ARMCM33.c.base@2.1.0 │ │ │ │ │ │ │ ├── system_ARMCM33.c │ │ │ │ │ │ │ └── tiac_arm.cmd │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM33NS/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ ├── ARMCM33_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ ├── startup_ARMCM33.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM33S/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ ├── ARMCM33_ac6_s.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM33.h │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ ├── startup_ARMCM33.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM33S_BL/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ ├── ARMCM33_ac6_s.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM33.h │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ ├── startup_ARMCM33.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM35P/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP/ │ │ │ │ │ │ │ ├── ARMCM35P_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM35P.c │ │ │ │ │ │ │ ├── startup_ARMCM35P.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM35P.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM35PNS/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP_TZ/ │ │ │ │ │ │ │ ├── ARMCM35P_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM35P.c │ │ │ │ │ │ │ ├── startup_ARMCM35P.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM35P.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM35PS/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP_TZ/ │ │ │ │ │ │ │ ├── ARMCM35P_ac6_s.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM35P.h │ │ │ │ │ │ │ ├── startup_ARMCM35P.c │ │ │ │ │ │ │ ├── startup_ARMCM35P.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM35P.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM35PS_BL/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP_TZ/ │ │ │ │ │ │ │ ├── ARMCM35P_ac6_s.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM35P.h │ │ │ │ │ │ │ ├── startup_ARMCM35P.c │ │ │ │ │ │ │ ├── startup_ARMCM35P.c.base@2.1.0 │ │ │ │ │ │ │ └── system_ARMCM35P.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM4/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM4/ │ │ │ │ │ │ │ ├── ARMCM4_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM4.c │ │ │ │ │ │ │ ├── startup_ARMCM4.c.base@2.0.3 │ │ │ │ │ │ │ ├── system_ARMCM4.c │ │ │ │ │ │ │ └── tiac_arm.cmd │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM4FP/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM4_FP/ │ │ │ │ │ │ │ ├── ARMCM4_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM4.c │ │ │ │ │ │ │ ├── startup_ARMCM4.c.base@2.0.3 │ │ │ │ │ │ │ ├── system_ARMCM4.c │ │ │ │ │ │ │ └── tiac_arm.cmd │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM55NS/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM55/ │ │ │ │ │ │ │ ├── ARMCM55_ac6.sct │ │ │ │ │ │ │ ├── ARMCM55_ac6.sct.base@1.1.0 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM55.c │ │ │ │ │ │ │ ├── startup_ARMCM55.c.base@1.1.0 │ │ │ │ │ │ │ ├── system_ARMCM55.c │ │ │ │ │ │ │ └── system_ARMCM55.c.base@1.1.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM55S/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM55/ │ │ │ │ │ │ │ ├── ARMCM55_ac6_s.sct │ │ │ │ │ │ │ ├── ARMCM55_ac6_s.sct.base@1.1.0 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM55.h │ │ │ │ │ │ │ ├── startup_ARMCM55.c │ │ │ │ │ │ │ ├── startup_ARMCM55.c.base@1.1.0 │ │ │ │ │ │ │ ├── system_ARMCM55.c │ │ │ │ │ │ │ └── system_ARMCM55.c.base@1.1.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM55S_BL/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM55/ │ │ │ │ │ │ │ ├── ARMCM55_ac6_s.sct │ │ │ │ │ │ │ ├── ARMCM55_ac6_s.sct.base@1.1.0 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── partition_ARMCM55.h │ │ │ │ │ │ │ ├── startup_ARMCM55.c │ │ │ │ │ │ │ ├── startup_ARMCM55.c.base@1.1.0 │ │ │ │ │ │ │ ├── system_ARMCM55.c │ │ │ │ │ │ │ └── system_ARMCM55.c.base@1.1.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM7/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM7/ │ │ │ │ │ │ │ ├── ARMCM7_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ │ │ ├── startup_ARMCM7.c.base@2.0.3 │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM7DP/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM7_DP/ │ │ │ │ │ │ │ ├── ARMCM7_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ │ │ ├── startup_ARMCM7.c.base@2.0.3 │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM7SP/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM7_SP/ │ │ │ │ │ │ │ ├── ARMCM7_ac6.sct │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ │ │ ├── startup_ARMCM7.c.base@2.0.3 │ │ │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM85NS/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM85/ │ │ │ │ │ │ │ ├── ARMCM85_ac6.sct │ │ │ │ │ │ │ ├── ARMCM85_ac6.sct.base@1.0.0 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── gcc_arm.ld.base@1.0.0 │ │ │ │ │ │ │ ├── startup_ARMCM85.c │ │ │ │ │ │ │ ├── startup_ARMCM85.c.base@1.0.0 │ │ │ │ │ │ │ ├── system_ARMCM85.c │ │ │ │ │ │ │ └── system_ARMCM85.c.base@1.0.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ ├── CM85S/ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM85/ │ │ │ │ │ │ │ ├── ARMCM85_ac6_s.sct │ │ │ │ │ │ │ ├── ARMCM85_ac6_s.sct.base@1.0.0 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ ├── gcc_arm.ld.base@1.0.0 │ │ │ │ │ │ │ ├── partition_ARMCM85.h │ │ │ │ │ │ │ ├── partition_ARMCM85.h.base@1.0.0 │ │ │ │ │ │ │ ├── startup_ARMCM85.c │ │ │ │ │ │ │ ├── startup_ARMCM85.c.base@1.0.0 │ │ │ │ │ │ │ ├── system_ARMCM85.c │ │ │ │ │ │ │ └── system_ARMCM85.c.base@1.0.0 │ │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ │ └── model_config.txt │ │ │ │ │ └── CM85S_BL/ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ └── ARMCM85/ │ │ │ │ │ │ ├── ARMCM85_ac6_s.sct │ │ │ │ │ │ ├── ARMCM85_ac6_s.sct.base@1.0.0 │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ ├── gcc_arm.ld.base@1.0.0 │ │ │ │ │ │ ├── partition_ARMCM85.h │ │ │ │ │ │ ├── partition_ARMCM85.h.base@1.0.0 │ │ │ │ │ │ ├── startup_ARMCM85.c │ │ │ │ │ │ ├── startup_ARMCM85.c.base@1.0.0 │ │ │ │ │ │ ├── system_ARMCM85.c │ │ │ │ │ │ └── system_ARMCM85.c.base@1.0.0 │ │ │ │ │ ├── Target.clayer.yml │ │ │ │ │ └── model_config.txt │ │ │ │ ├── Project/ │ │ │ │ │ ├── Bootloader.cproject.yml │ │ │ │ │ ├── Validation.cproject.yml │ │ │ │ │ ├── Validation.csolution.yml │ │ │ │ │ ├── avh.yml │ │ │ │ │ ├── build.py │ │ │ │ │ ├── cpacklist.txt │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── validation.xsl │ │ │ │ ├── README.md │ │ │ │ └── Source/ │ │ │ │ ├── CV_CAL1Cache.c │ │ │ │ ├── CV_CML1Cache.c │ │ │ │ ├── CV_CoreAFunc.c │ │ │ │ ├── CV_CoreFunc.c │ │ │ │ ├── CV_CoreInstr.c │ │ │ │ ├── CV_CoreSimd.c │ │ │ │ ├── CV_Framework.c │ │ │ │ ├── CV_GenTimer.c │ │ │ │ ├── CV_MPU_ARMv7.c │ │ │ │ ├── CV_MPU_ARMv8.c │ │ │ │ ├── CV_Report.c │ │ │ │ ├── Config/ │ │ │ │ │ ├── CV_Config.h │ │ │ │ │ ├── CV_Config_template.h │ │ │ │ │ ├── partition_ARMCM23.h │ │ │ │ │ ├── partition_ARMCM33.h │ │ │ │ │ ├── partition_ARMCM35P.h │ │ │ │ │ └── partition_ARMCM55.h │ │ │ │ ├── ConfigA/ │ │ │ │ │ ├── CV_Config.h │ │ │ │ │ └── CV_Config_template.h │ │ │ │ └── cmsis_cv.c │ │ │ ├── Core_A/ │ │ │ │ ├── Include/ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ ├── cmsis_cp15.h │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ │ ├── core_ca.h │ │ │ │ │ └── irq_ctrl.h │ │ │ │ └── Source/ │ │ │ │ └── irq_ctrl_gic.c │ │ │ ├── DSP/ │ │ │ │ └── README.md │ │ │ ├── DoxyGen/ │ │ │ │ ├── Build/ │ │ │ │ │ └── html/ │ │ │ │ │ ├── CmdLineBuild.html │ │ │ │ │ ├── build_revisionHistory.html │ │ │ │ │ ├── cbuild.html │ │ │ │ │ ├── cbuild_install.html │ │ │ │ │ ├── cbuild_uv.html │ │ │ │ │ ├── cbuildgen.html │ │ │ │ │ ├── ccmerge.html │ │ │ │ │ ├── cmake.html │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── cp_init.html │ │ │ │ │ ├── cp_install.html │ │ │ │ │ ├── cprjFormat_pg.html │ │ │ │ │ ├── cprj_types.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── element_compilers.html │ │ │ │ │ ├── element_components.html │ │ │ │ │ ├── element_cprj.html │ │ │ │ │ ├── element_created.html │ │ │ │ │ ├── element_files.html │ │ │ │ │ ├── element_info.html │ │ │ │ │ ├── element_layers.html │ │ │ │ │ ├── element_packages.html │ │ │ │ │ ├── element_target.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── make.html │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── projectDescriptionSchema.html │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── search/ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ └── search.js │ │ │ │ │ └── tabs.css │ │ │ │ ├── Core/ │ │ │ │ │ ├── core.dxy │ │ │ │ │ ├── core_CM0-7.dxy │ │ │ │ │ └── src/ │ │ │ │ │ ├── MISRA.txt │ │ │ │ │ ├── Overview.txt │ │ │ │ │ ├── Ref_CompilerControl.txt │ │ │ │ │ ├── Ref_CoreReg.txt │ │ │ │ │ ├── Ref_DataStructs.txt │ │ │ │ │ ├── Ref_Debug.txt │ │ │ │ │ ├── Ref_FPU.txt │ │ │ │ │ ├── Ref_MPU.txt │ │ │ │ │ ├── Ref_MPU8.txt │ │ │ │ │ ├── Ref_MVE.txt │ │ │ │ │ ├── Ref_NVIC.txt │ │ │ │ │ ├── Ref_PMU8.txt │ │ │ │ │ ├── Ref_Peripheral.txt │ │ │ │ │ ├── Ref_SystemAndClock.txt │ │ │ │ │ ├── Ref_Systick.txt │ │ │ │ │ ├── Ref_Trustzone.txt │ │ │ │ │ ├── Ref_VersionControl.txt │ │ │ │ │ ├── Ref_cm4_simd.txt │ │ │ │ │ ├── Ref_cmInstr.txt │ │ │ │ │ ├── RegMap_CMSIS2ARM_Doc.txt │ │ │ │ │ ├── Template.txt │ │ │ │ │ ├── Using.txt │ │ │ │ │ ├── UsingTrustZone.txt │ │ │ │ │ ├── core_cm7.txt │ │ │ │ │ └── images/ │ │ │ │ │ ├── ARMv8-M_images.pptx │ │ │ │ │ └── CMSIS_V3_V5.pptx │ │ │ │ ├── Core_A/ │ │ │ │ │ ├── core_A.dxy │ │ │ │ │ └── src/ │ │ │ │ │ ├── MISRA.txt │ │ │ │ │ ├── Overview.txt │ │ │ │ │ ├── Ref_SystemAndClock.txt │ │ │ │ │ ├── Template.txt │ │ │ │ │ ├── Using.txt │ │ │ │ │ ├── cmsis_armcc.txt │ │ │ │ │ ├── cmsis_compiler.txt │ │ │ │ │ ├── core_ca.txt │ │ │ │ │ ├── images/ │ │ │ │ │ │ └── CMSIS_Core_A.pptx │ │ │ │ │ ├── irq_ctrl.txt │ │ │ │ │ ├── ref_cache.txt │ │ │ │ │ ├── ref_core_register.txt │ │ │ │ │ ├── ref_gic.txt │ │ │ │ │ ├── ref_mmu.txt │ │ │ │ │ └── ref_timer.txt │ │ │ │ ├── DAP/ │ │ │ │ │ ├── CMSIS_DAP.pptx │ │ │ │ │ ├── CMSIS_DAP2.pptx │ │ │ │ │ ├── dap.dxy │ │ │ │ │ └── src/ │ │ │ │ │ ├── dap.txt │ │ │ │ │ ├── dap_USB_cmds.txt │ │ │ │ │ ├── dap_config.txt │ │ │ │ │ └── images/ │ │ │ │ │ └── CMSIS_DAP_SWStack.pptx │ │ │ │ ├── DSP/ │ │ │ │ │ └── html/ │ │ │ │ │ ├── BasicMathFunctionsF16_8c.html │ │ │ │ │ ├── BasicMathFunctions_8c.html │ │ │ │ │ ├── BayesFunctionsF16_8c.html │ │ │ │ │ ├── BayesFunctions_8c.html │ │ │ │ │ ├── ChangeLog_pg.html │ │ │ │ │ ├── CommonTablesF16_8c.html │ │ │ │ │ ├── CommonTables_8c.html │ │ │ │ │ ├── ComplexMathFunctionsF16_8c.html │ │ │ │ │ ├── ComplexMathFunctions_8c.html │ │ │ │ │ ├── ControllerFunctions_8c.html │ │ │ │ │ ├── DistanceFunctionsF16_8c.html │ │ │ │ │ ├── DistanceFunctions_8c.html │ │ │ │ │ ├── Examples_2ARM_2CMakeLists_8txt.html │ │ │ │ │ ├── FastMathFunctionsF16_8c.html │ │ │ │ │ ├── FastMathFunctions_8c.html │ │ │ │ │ ├── FilteringFunctionsF16_8c.html │ │ │ │ │ ├── FilteringFunctions_8c.html │ │ │ │ │ ├── InterpolationFunctionsF16_8c.html │ │ │ │ │ ├── InterpolationFunctions_8c.html │ │ │ │ │ ├── MatrixFunctionsF16_8c.html │ │ │ │ │ ├── MatrixFunctions_8c.html │ │ │ │ │ ├── QuaternionMathFunctions_8c.html │ │ │ │ │ ├── SVMFunctionsF16_8c.html │ │ │ │ │ ├── SVMFunctions_8c.html │ │ │ │ │ ├── Source_2CMakeLists_8txt.html │ │ │ │ │ ├── StatisticsFunctionsF16_8c.html │ │ │ │ │ ├── StatisticsFunctions_8c.html │ │ │ │ │ ├── SupportFunctionsF16_8c.html │ │ │ │ │ ├── SupportFunctions_8c.html │ │ │ │ │ ├── TransformFunctionsF16_8c.html │ │ │ │ │ ├── TransformFunctions_8c.html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── arm__abs__f16_8c.html │ │ │ │ │ ├── arm__abs__f32_8c.html │ │ │ │ │ ├── arm__abs__f64_8c.html │ │ │ │ │ ├── arm__abs__q15_8c.html │ │ │ │ │ ├── arm__abs__q31_8c.html │ │ │ │ │ ├── arm__abs__q7_8c.html │ │ │ │ │ ├── arm__absmax__f16_8c.html │ │ │ │ │ ├── arm__absmax__f32_8c.html │ │ │ │ │ ├── arm__absmax__f64_8c.html │ │ │ │ │ ├── arm__absmax__no__idx__f16_8c.html │ │ │ │ │ ├── arm__absmax__no__idx__f32_8c.html │ │ │ │ │ ├── arm__absmax__no__idx__f64_8c.html │ │ │ │ │ ├── arm__absmax__no__idx__q15_8c.html │ │ │ │ │ ├── arm__absmax__no__idx__q31_8c.html │ │ │ │ │ ├── arm__absmax__no__idx__q7_8c.html │ │ │ │ │ ├── arm__absmax__q15_8c.html │ │ │ │ │ ├── arm__absmax__q31_8c.html │ │ │ │ │ ├── arm__absmax__q7_8c.html │ │ │ │ │ ├── arm__absmin__f16_8c.html │ │ │ │ │ ├── arm__absmin__f32_8c.html │ │ │ │ │ ├── arm__absmin__f64_8c.html │ │ │ │ │ ├── arm__absmin__no__idx__f16_8c.html │ │ │ │ │ ├── arm__absmin__no__idx__f32_8c.html │ │ │ │ │ ├── arm__absmin__no__idx__f64_8c.html │ │ │ │ │ ├── arm__absmin__no__idx__q15_8c.html │ │ │ │ │ ├── arm__absmin__no__idx__q31_8c.html │ │ │ │ │ ├── arm__absmin__no__idx__q7_8c.html │ │ │ │ │ ├── arm__absmin__q15_8c.html │ │ │ │ │ ├── arm__absmin__q31_8c.html │ │ │ │ │ ├── arm__absmin__q7_8c.html │ │ │ │ │ ├── arm__add__f16_8c.html │ │ │ │ │ ├── arm__add__f32_8c.html │ │ │ │ │ ├── arm__add__f64_8c.html │ │ │ │ │ ├── arm__add__q15_8c.html │ │ │ │ │ ├── arm__add__q31_8c.html │ │ │ │ │ ├── arm__add__q7_8c.html │ │ │ │ │ ├── arm__and__u16_8c.html │ │ │ │ │ ├── arm__and__u32_8c.html │ │ │ │ │ ├── arm__and__u8_8c.html │ │ │ │ │ ├── arm__atan2__f16_8c.html │ │ │ │ │ ├── arm__atan2__f32_8c.html │ │ │ │ │ ├── arm__atan2__q15_8c.html │ │ │ │ │ ├── arm__atan2__q31_8c.html │ │ │ │ │ ├── arm__barycenter__f16_8c.html │ │ │ │ │ ├── arm__barycenter__f32_8c.html │ │ │ │ │ ├── arm__bayes__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__bayes__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__bayes__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__bayes__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__bayes__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__bayes__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__bayes__example_2train_8py.html │ │ │ │ │ ├── arm__bayes__example__f32_8c.html │ │ │ │ │ ├── arm__bilinear__interp__f16_8c.html │ │ │ │ │ ├── arm__bilinear__interp__f32_8c.html │ │ │ │ │ ├── arm__bilinear__interp__q15_8c.html │ │ │ │ │ ├── arm__bilinear__interp__q31_8c.html │ │ │ │ │ ├── arm__bilinear__interp__q7_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__32x64__init__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__32x64__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__f16_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__fast__q15_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__fast__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__f16_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__q15_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__q15_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2T__f16_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2T__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2T__f64_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2T__init__f16_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2T__init__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2T__init__f64_8c.html │ │ │ │ │ ├── arm__biquad__cascade__stereo__df2T__f16_8c.html │ │ │ │ │ ├── arm__biquad__cascade__stereo__df2T__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__stereo__df2T__init__f16_8c.html │ │ │ │ │ ├── arm__biquad__cascade__stereo__df2T__init__f32_8c.html │ │ │ │ │ ├── arm__bitonic__sort__f32_8c.html │ │ │ │ │ ├── arm__bitreversal2_8c.html │ │ │ │ │ ├── arm__bitreversal_8c.html │ │ │ │ │ ├── arm__bitreversal__f16_8c.html │ │ │ │ │ ├── arm__braycurtis__distance__f16_8c.html │ │ │ │ │ ├── arm__braycurtis__distance__f32_8c.html │ │ │ │ │ ├── arm__bubble__sort__f32_8c.html │ │ │ │ │ ├── arm__canberra__distance__f16_8c.html │ │ │ │ │ ├── arm__canberra__distance__f32_8c.html │ │ │ │ │ ├── arm__cfft__f16_8c.html │ │ │ │ │ ├── arm__cfft__f32_8c.html │ │ │ │ │ ├── arm__cfft__f64_8c.html │ │ │ │ │ ├── arm__cfft__init__f16_8c.html │ │ │ │ │ ├── arm__cfft__init__f32_8c.html │ │ │ │ │ ├── arm__cfft__init__f64_8c.html │ │ │ │ │ ├── arm__cfft__init__q15_8c.html │ │ │ │ │ ├── arm__cfft__init__q31_8c.html │ │ │ │ │ ├── arm__cfft__q15_8c.html │ │ │ │ │ ├── arm__cfft__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix2__f16_8c.html │ │ │ │ │ ├── arm__cfft__radix2__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__f16_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix2__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix2__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix4__f16_8c.html │ │ │ │ │ ├── arm__cfft__radix4__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__f16_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix4__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix4__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix8__f16_8c.html │ │ │ │ │ ├── arm__cfft__radix8__f32_8c.html │ │ │ │ │ ├── arm__chebyshev__distance__f16_8c.html │ │ │ │ │ ├── arm__chebyshev__distance__f32_8c.html │ │ │ │ │ ├── arm__chebyshev__distance__f64_8c.html │ │ │ │ │ ├── arm__cityblock__distance__f16_8c.html │ │ │ │ │ ├── arm__cityblock__distance__f32_8c.html │ │ │ │ │ ├── arm__cityblock__distance__f64_8c.html │ │ │ │ │ ├── arm__class__marks__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__class__marks__example__f32_8c.html │ │ │ │ │ ├── arm__clip__f16_8c.html │ │ │ │ │ ├── arm__clip__f32_8c.html │ │ │ │ │ ├── arm__clip__q15_8c.html │ │ │ │ │ ├── arm__clip__q31_8c.html │ │ │ │ │ ├── arm__clip__q7_8c.html │ │ │ │ │ ├── arm__cmplx__conj__f16_8c.html │ │ │ │ │ ├── arm__cmplx__conj__f32_8c.html │ │ │ │ │ ├── arm__cmplx__conj__q15_8c.html │ │ │ │ │ ├── arm__cmplx__conj__q31_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__f16_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__f32_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__q15_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mag__f16_8c.html │ │ │ │ │ ├── arm__cmplx__mag__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mag__f64_8c.html │ │ │ │ │ ├── arm__cmplx__mag__fast__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mag__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mag__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__f16_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__f64_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__f16_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__f64_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__f16_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__q31_8c.html │ │ │ │ │ ├── arm__common__tables_8c.html │ │ │ │ │ ├── arm__common__tables_8h.html │ │ │ │ │ ├── arm__common__tables__f16_8c.html │ │ │ │ │ ├── arm__common__tables__f16_8h.html │ │ │ │ │ ├── arm__const__structs_8c.html │ │ │ │ │ ├── arm__const__structs_8h.html │ │ │ │ │ ├── arm__const__structs__f16_8c.html │ │ │ │ │ ├── arm__const__structs__f16_8h.html │ │ │ │ │ ├── arm__conv__f32_8c.html │ │ │ │ │ ├── arm__conv__fast__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__fast__q15_8c.html │ │ │ │ │ ├── arm__conv__fast__q31_8c.html │ │ │ │ │ ├── arm__conv__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__opt__q7_8c.html │ │ │ │ │ ├── arm__conv__partial__f32_8c.html │ │ │ │ │ ├── arm__conv__partial__fast__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__fast__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__fast__q31_8c.html │ │ │ │ │ ├── arm__conv__partial__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__opt__q7_8c.html │ │ │ │ │ ├── arm__conv__partial__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__q31_8c.html │ │ │ │ │ ├── arm__conv__partial__q7_8c.html │ │ │ │ │ ├── arm__conv__q15_8c.html │ │ │ │ │ ├── arm__conv__q31_8c.html │ │ │ │ │ ├── arm__conv__q7_8c.html │ │ │ │ │ ├── arm__convolution__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__convolution__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__convolution__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__convolution__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__convolution__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__convolution__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__convolution__example_2math__helper_8c.html │ │ │ │ │ ├── arm__convolution__example_2math__helper_8h.html │ │ │ │ │ ├── arm__convolution__example__f32_8c.html │ │ │ │ │ ├── arm__copy__f16_8c.html │ │ │ │ │ ├── arm__copy__f32_8c.html │ │ │ │ │ ├── arm__copy__f64_8c.html │ │ │ │ │ ├── arm__copy__q15_8c.html │ │ │ │ │ ├── arm__copy__q31_8c.html │ │ │ │ │ ├── arm__copy__q7_8c.html │ │ │ │ │ ├── arm__correlate__f16_8c.html │ │ │ │ │ ├── arm__correlate__f32_8c.html │ │ │ │ │ ├── arm__correlate__f64_8c.html │ │ │ │ │ ├── arm__correlate__fast__opt__q15_8c.html │ │ │ │ │ ├── arm__correlate__fast__q15_8c.html │ │ │ │ │ ├── arm__correlate__fast__q31_8c.html │ │ │ │ │ ├── arm__correlate__opt__q15_8c.html │ │ │ │ │ ├── arm__correlate__opt__q7_8c.html │ │ │ │ │ ├── arm__correlate__q15_8c.html │ │ │ │ │ ├── arm__correlate__q31_8c.html │ │ │ │ │ ├── arm__correlate__q7_8c.html │ │ │ │ │ ├── arm__correlation__distance__f16_8c.html │ │ │ │ │ ├── arm__correlation__distance__f32_8c.html │ │ │ │ │ ├── arm__cos__f32_8c.html │ │ │ │ │ ├── arm__cos__q15_8c.html │ │ │ │ │ ├── arm__cos__q31_8c.html │ │ │ │ │ ├── arm__cosine__distance__f16_8c.html │ │ │ │ │ ├── arm__cosine__distance__f32_8c.html │ │ │ │ │ ├── arm__cosine__distance__f64_8c.html │ │ │ │ │ ├── arm__dct4__f32_8c.html │ │ │ │ │ ├── arm__dct4__init__f32_8c.html │ │ │ │ │ ├── arm__dct4__init__q15_8c.html │ │ │ │ │ ├── arm__dct4__init__q31_8c.html │ │ │ │ │ ├── arm__dct4__q15_8c.html │ │ │ │ │ ├── arm__dct4__q31_8c.html │ │ │ │ │ ├── arm__dice__distance_8c.html │ │ │ │ │ ├── arm__divide__q15_8c.html │ │ │ │ │ ├── arm__divide__q31_8c.html │ │ │ │ │ ├── arm__dot__prod__f16_8c.html │ │ │ │ │ ├── arm__dot__prod__f32_8c.html │ │ │ │ │ ├── arm__dot__prod__f64_8c.html │ │ │ │ │ ├── arm__dot__prod__q15_8c.html │ │ │ │ │ ├── arm__dot__prod__q31_8c.html │ │ │ │ │ ├── arm__dot__prod__q7_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__dotproduct__example__f32_8c.html │ │ │ │ │ ├── arm__entropy__f16_8c.html │ │ │ │ │ ├── arm__entropy__f32_8c.html │ │ │ │ │ ├── arm__entropy__f64_8c.html │ │ │ │ │ ├── arm__euclidean__distance__f16_8c.html │ │ │ │ │ ├── arm__euclidean__distance__f32_8c.html │ │ │ │ │ ├── arm__euclidean__distance__f64_8c.html │ │ │ │ │ ├── arm__f16__to__float_8c.html │ │ │ │ │ ├── arm__f16__to__q15_8c.html │ │ │ │ │ ├── arm__fft__bin__data_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__fft__bin__example__f32_8c.html │ │ │ │ │ ├── arm__fill__f16_8c.html │ │ │ │ │ ├── arm__fill__f32_8c.html │ │ │ │ │ ├── arm__fill__f64_8c.html │ │ │ │ │ ├── arm__fill__q15_8c.html │ │ │ │ │ ├── arm__fill__q31_8c.html │ │ │ │ │ ├── arm__fill__q7_8c.html │ │ │ │ │ ├── arm__fir__data_8c.html │ │ │ │ │ ├── arm__fir__decimate__f32_8c.html │ │ │ │ │ ├── arm__fir__decimate__fast__q15_8c.html │ │ │ │ │ ├── arm__fir__decimate__fast__q31_8c.html │ │ │ │ │ ├── arm__fir__decimate__init__f32_8c.html │ │ │ │ │ ├── arm__fir__decimate__init__q15_8c.html │ │ │ │ │ ├── arm__fir__decimate__init__q31_8c.html │ │ │ │ │ ├── arm__fir__decimate__q15_8c.html │ │ │ │ │ ├── arm__fir__decimate__q31_8c.html │ │ │ │ │ ├── arm__fir__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__fir__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__fir__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__fir__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__fir__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__fir__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__fir__example_2math__helper_8c.html │ │ │ │ │ ├── arm__fir__example_2math__helper_8h.html │ │ │ │ │ ├── arm__fir__example__f32_8c.html │ │ │ │ │ ├── arm__fir__f16_8c.html │ │ │ │ │ ├── arm__fir__f32_8c.html │ │ │ │ │ ├── arm__fir__f64_8c.html │ │ │ │ │ ├── arm__fir__fast__q15_8c.html │ │ │ │ │ ├── arm__fir__fast__q31_8c.html │ │ │ │ │ ├── arm__fir__init__f16_8c.html │ │ │ │ │ ├── arm__fir__init__f32_8c.html │ │ │ │ │ ├── arm__fir__init__f64_8c.html │ │ │ │ │ ├── arm__fir__init__q15_8c.html │ │ │ │ │ ├── arm__fir__init__q31_8c.html │ │ │ │ │ ├── arm__fir__init__q7_8c.html │ │ │ │ │ ├── arm__fir__interpolate__f32_8c.html │ │ │ │ │ ├── arm__fir__interpolate__init__f32_8c.html │ │ │ │ │ ├── arm__fir__interpolate__init__q15_8c.html │ │ │ │ │ ├── arm__fir__interpolate__init__q31_8c.html │ │ │ │ │ ├── arm__fir__interpolate__q15_8c.html │ │ │ │ │ ├── arm__fir__interpolate__q31_8c.html │ │ │ │ │ ├── arm__fir__lattice__f32_8c.html │ │ │ │ │ ├── arm__fir__lattice__init__f32_8c.html │ │ │ │ │ ├── arm__fir__lattice__init__q15_8c.html │ │ │ │ │ ├── arm__fir__lattice__init__q31_8c.html │ │ │ │ │ ├── arm__fir__lattice__q15_8c.html │ │ │ │ │ ├── arm__fir__lattice__q31_8c.html │ │ │ │ │ ├── arm__fir__q15_8c.html │ │ │ │ │ ├── arm__fir__q31_8c.html │ │ │ │ │ ├── arm__fir__q7_8c.html │ │ │ │ │ ├── arm__fir__sparse__f32_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__f32_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__q15_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__q31_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__q7_8c.html │ │ │ │ │ ├── arm__fir__sparse__q15_8c.html │ │ │ │ │ ├── arm__fir__sparse__q31_8c.html │ │ │ │ │ ├── arm__fir__sparse__q7_8c.html │ │ │ │ │ ├── arm__float__to__f16_8c.html │ │ │ │ │ ├── arm__float__to__q15_8c.html │ │ │ │ │ ├── arm__float__to__q31_8c.html │ │ │ │ │ ├── arm__float__to__q7_8c.html │ │ │ │ │ ├── arm__gaussian__naive__bayes__predict__f16_8c.html │ │ │ │ │ ├── arm__gaussian__naive__bayes__predict__f32_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__data_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2math__helper_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2math__helper_8h.html │ │ │ │ │ ├── arm__graphic__equalizer__example__q31_8c.html │ │ │ │ │ ├── arm__hamming__distance_8c.html │ │ │ │ │ ├── arm__heap__sort__f32_8c.html │ │ │ │ │ ├── arm__helium__utils_8h.html │ │ │ │ │ ├── arm__iir__lattice__f32_8c.html │ │ │ │ │ ├── arm__iir__lattice__init__f32_8c.html │ │ │ │ │ ├── arm__iir__lattice__init__q15_8c.html │ │ │ │ │ ├── arm__iir__lattice__init__q31_8c.html │ │ │ │ │ ├── arm__iir__lattice__q15_8c.html │ │ │ │ │ ├── arm__iir__lattice__q31_8c.html │ │ │ │ │ ├── arm__insertion__sort__f32_8c.html │ │ │ │ │ ├── arm__jaccard__distance_8c.html │ │ │ │ │ ├── arm__jensenshannon__distance__f16_8c.html │ │ │ │ │ ├── arm__jensenshannon__distance__f32_8c.html │ │ │ │ │ ├── arm__kullback__leibler__f16_8c.html │ │ │ │ │ ├── arm__kullback__leibler__f32_8c.html │ │ │ │ │ ├── arm__kullback__leibler__f64_8c.html │ │ │ │ │ ├── arm__kulsinski__distance_8c.html │ │ │ │ │ ├── arm__levinson__durbin__f16_8c.html │ │ │ │ │ ├── arm__levinson__durbin__f32_8c.html │ │ │ │ │ ├── arm__levinson__durbin__q31_8c.html │ │ │ │ │ ├── arm__linear__interp__data_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2math__helper_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2math__helper_8h.html │ │ │ │ │ ├── arm__linear__interp__example__f32_8c.html │ │ │ │ │ ├── arm__linear__interp__f16_8c.html │ │ │ │ │ ├── arm__linear__interp__f32_8c.html │ │ │ │ │ ├── arm__linear__interp__q15_8c.html │ │ │ │ │ ├── arm__linear__interp__q31_8c.html │ │ │ │ │ ├── arm__linear__interp__q7_8c.html │ │ │ │ │ ├── arm__lms__f32_8c.html │ │ │ │ │ ├── arm__lms__init__f32_8c.html │ │ │ │ │ ├── arm__lms__init__q15_8c.html │ │ │ │ │ ├── arm__lms__init__q31_8c.html │ │ │ │ │ ├── arm__lms__norm__f32_8c.html │ │ │ │ │ ├── arm__lms__norm__init__f32_8c.html │ │ │ │ │ ├── arm__lms__norm__init__q15_8c.html │ │ │ │ │ ├── arm__lms__norm__init__q31_8c.html │ │ │ │ │ ├── arm__lms__norm__q15_8c.html │ │ │ │ │ ├── arm__lms__norm__q31_8c.html │ │ │ │ │ ├── arm__lms__q15_8c.html │ │ │ │ │ ├── arm__lms__q31_8c.html │ │ │ │ │ ├── arm__logsumexp__dot__prod__f16_8c.html │ │ │ │ │ ├── arm__logsumexp__dot__prod__f32_8c.html │ │ │ │ │ ├── arm__logsumexp__f16_8c.html │ │ │ │ │ ├── arm__logsumexp__f32_8c.html │ │ │ │ │ ├── arm__mat__add__f16_8c.html │ │ │ │ │ ├── arm__mat__add__f32_8c.html │ │ │ │ │ ├── arm__mat__add__q15_8c.html │ │ │ │ │ ├── arm__mat__add__q31_8c.html │ │ │ │ │ ├── arm__mat__cholesky__f16_8c.html │ │ │ │ │ ├── arm__mat__cholesky__f32_8c.html │ │ │ │ │ ├── arm__mat__cholesky__f64_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__f16_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__f32_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__q15_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__q31_8c.html │ │ │ │ │ ├── arm__mat__cmplx__trans__f16_8c.html │ │ │ │ │ ├── arm__mat__cmplx__trans__f32_8c.html │ │ │ │ │ ├── arm__mat__cmplx__trans__q15_8c.html │ │ │ │ │ ├── arm__mat__cmplx__trans__q31_8c.html │ │ │ │ │ ├── arm__mat__init__f16_8c.html │ │ │ │ │ ├── arm__mat__init__f32_8c.html │ │ │ │ │ ├── arm__mat__init__q15_8c.html │ │ │ │ │ ├── arm__mat__init__q31_8c.html │ │ │ │ │ ├── arm__mat__inverse__f16_8c.html │ │ │ │ │ ├── arm__mat__inverse__f32_8c.html │ │ │ │ │ ├── arm__mat__inverse__f64_8c.html │ │ │ │ │ ├── arm__mat__ldlt__f32_8c.html │ │ │ │ │ ├── arm__mat__ldlt__f64_8c.html │ │ │ │ │ ├── arm__mat__mult__f16_8c.html │ │ │ │ │ ├── arm__mat__mult__f32_8c.html │ │ │ │ │ ├── arm__mat__mult__f64_8c.html │ │ │ │ │ ├── arm__mat__mult__fast__q15_8c.html │ │ │ │ │ ├── arm__mat__mult__fast__q31_8c.html │ │ │ │ │ ├── arm__mat__mult__opt__q31_8c.html │ │ │ │ │ ├── arm__mat__mult__q15_8c.html │ │ │ │ │ ├── arm__mat__mult__q31_8c.html │ │ │ │ │ ├── arm__mat__mult__q7_8c.html │ │ │ │ │ ├── arm__mat__scale__f16_8c.html │ │ │ │ │ ├── arm__mat__scale__f32_8c.html │ │ │ │ │ ├── arm__mat__scale__q15_8c.html │ │ │ │ │ ├── arm__mat__scale__q31_8c.html │ │ │ │ │ ├── arm__mat__solve__lower__triangular__f16_8c.html │ │ │ │ │ ├── arm__mat__solve__lower__triangular__f32_8c.html │ │ │ │ │ ├── arm__mat__solve__lower__triangular__f64_8c.html │ │ │ │ │ ├── arm__mat__solve__upper__triangular__f16_8c.html │ │ │ │ │ ├── arm__mat__solve__upper__triangular__f32_8c.html │ │ │ │ │ ├── arm__mat__solve__upper__triangular__f64_8c.html │ │ │ │ │ ├── arm__mat__sub__f16_8c.html │ │ │ │ │ ├── arm__mat__sub__f32_8c.html │ │ │ │ │ ├── arm__mat__sub__f64_8c.html │ │ │ │ │ ├── arm__mat__sub__q15_8c.html │ │ │ │ │ ├── arm__mat__sub__q31_8c.html │ │ │ │ │ ├── arm__mat__trans__f16_8c.html │ │ │ │ │ ├── arm__mat__trans__f32_8c.html │ │ │ │ │ ├── arm__mat__trans__f64_8c.html │ │ │ │ │ ├── arm__mat__trans__q15_8c.html │ │ │ │ │ ├── arm__mat__trans__q31_8c.html │ │ │ │ │ ├── arm__mat__trans__q7_8c.html │ │ │ │ │ ├── arm__mat__vec__mult__f16_8c.html │ │ │ │ │ ├── arm__mat__vec__mult__f32_8c.html │ │ │ │ │ ├── arm__mat__vec__mult__q15_8c.html │ │ │ │ │ ├── arm__mat__vec__mult__q31_8c.html │ │ │ │ │ ├── arm__mat__vec__mult__q7_8c.html │ │ │ │ │ ├── arm__math_8h.html │ │ │ │ │ ├── arm__math__f16_8h.html │ │ │ │ │ ├── arm__math__memory_8h.html │ │ │ │ │ ├── arm__math__types_8h.html │ │ │ │ │ ├── arm__math__types__f16_8h.html │ │ │ │ │ ├── arm__matrix__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__matrix__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__matrix__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__matrix__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__matrix__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__matrix__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__matrix__example_2math__helper_8c.html │ │ │ │ │ ├── arm__matrix__example_2math__helper_8h.html │ │ │ │ │ ├── arm__matrix__example__f32_8c.html │ │ │ │ │ ├── arm__max__f16_8c.html │ │ │ │ │ ├── arm__max__f32_8c.html │ │ │ │ │ ├── arm__max__f64_8c.html │ │ │ │ │ ├── arm__max__no__idx__f16_8c.html │ │ │ │ │ ├── arm__max__no__idx__f32_8c.html │ │ │ │ │ ├── arm__max__no__idx__f64_8c.html │ │ │ │ │ ├── arm__max__no__idx__q15_8c.html │ │ │ │ │ ├── arm__max__no__idx__q31_8c.html │ │ │ │ │ ├── arm__max__no__idx__q7_8c.html │ │ │ │ │ ├── arm__max__q15_8c.html │ │ │ │ │ ├── arm__max__q31_8c.html │ │ │ │ │ ├── arm__max__q7_8c.html │ │ │ │ │ ├── arm__mean__f16_8c.html │ │ │ │ │ ├── arm__mean__f32_8c.html │ │ │ │ │ ├── arm__mean__f64_8c.html │ │ │ │ │ ├── arm__mean__q15_8c.html │ │ │ │ │ ├── arm__mean__q31_8c.html │ │ │ │ │ ├── arm__mean__q7_8c.html │ │ │ │ │ ├── arm__merge__sort__f32_8c.html │ │ │ │ │ ├── arm__merge__sort__init__f32_8c.html │ │ │ │ │ ├── arm__mfcc__f16_8c.html │ │ │ │ │ ├── arm__mfcc__f32_8c.html │ │ │ │ │ ├── arm__mfcc__init__f16_8c.html │ │ │ │ │ ├── arm__mfcc__init__f32_8c.html │ │ │ │ │ ├── arm__mfcc__init__q15_8c.html │ │ │ │ │ ├── arm__mfcc__init__q31_8c.html │ │ │ │ │ ├── arm__mfcc__q15_8c.html │ │ │ │ │ ├── arm__mfcc__q31_8c.html │ │ │ │ │ ├── arm__min__f16_8c.html │ │ │ │ │ ├── arm__min__f32_8c.html │ │ │ │ │ ├── arm__min__f64_8c.html │ │ │ │ │ ├── arm__min__no__idx__f16_8c.html │ │ │ │ │ ├── arm__min__no__idx__f32_8c.html │ │ │ │ │ ├── arm__min__no__idx__f64_8c.html │ │ │ │ │ ├── arm__min__no__idx__q15_8c.html │ │ │ │ │ ├── arm__min__no__idx__q31_8c.html │ │ │ │ │ ├── arm__min__no__idx__q7_8c.html │ │ │ │ │ ├── arm__min__q15_8c.html │ │ │ │ │ ├── arm__min__q31_8c.html │ │ │ │ │ ├── arm__min__q7_8c.html │ │ │ │ │ ├── arm__minkowski__distance__f16_8c.html │ │ │ │ │ ├── arm__minkowski__distance__f32_8c.html │ │ │ │ │ ├── arm__mse__f16_8c.html │ │ │ │ │ ├── arm__mse__f32_8c.html │ │ │ │ │ ├── arm__mse__f64_8c.html │ │ │ │ │ ├── arm__mse__q15_8c.html │ │ │ │ │ ├── arm__mse__q31_8c.html │ │ │ │ │ ├── arm__mse__q7_8c.html │ │ │ │ │ ├── arm__mult__f16_8c.html │ │ │ │ │ ├── arm__mult__f32_8c.html │ │ │ │ │ ├── arm__mult__f64_8c.html │ │ │ │ │ ├── arm__mult__q15_8c.html │ │ │ │ │ ├── arm__mult__q31_8c.html │ │ │ │ │ ├── arm__mult__q7_8c.html │ │ │ │ │ ├── arm__mve__tables_8c.html │ │ │ │ │ ├── arm__mve__tables_8h.html │ │ │ │ │ ├── arm__mve__tables__f16_8c.html │ │ │ │ │ ├── arm__mve__tables__f16_8h.html │ │ │ │ │ ├── arm__negate__f16_8c.html │ │ │ │ │ ├── arm__negate__f32_8c.html │ │ │ │ │ ├── arm__negate__f64_8c.html │ │ │ │ │ ├── arm__negate__q15_8c.html │ │ │ │ │ ├── arm__negate__q31_8c.html │ │ │ │ │ ├── arm__negate__q7_8c.html │ │ │ │ │ ├── arm__not__u16_8c.html │ │ │ │ │ ├── arm__not__u32_8c.html │ │ │ │ │ ├── arm__not__u8_8c.html │ │ │ │ │ ├── arm__offset__f16_8c.html │ │ │ │ │ ├── arm__offset__f32_8c.html │ │ │ │ │ ├── arm__offset__f64_8c.html │ │ │ │ │ ├── arm__offset__q15_8c.html │ │ │ │ │ ├── arm__offset__q31_8c.html │ │ │ │ │ ├── arm__offset__q7_8c.html │ │ │ │ │ ├── arm__or__u16_8c.html │ │ │ │ │ ├── arm__or__u32_8c.html │ │ │ │ │ ├── arm__or__u8_8c.html │ │ │ │ │ ├── arm__pid__init__f32_8c.html │ │ │ │ │ ├── arm__pid__init__q15_8c.html │ │ │ │ │ ├── arm__pid__init__q31_8c.html │ │ │ │ │ ├── arm__pid__reset__f32_8c.html │ │ │ │ │ ├── arm__pid__reset__q15_8c.html │ │ │ │ │ ├── arm__pid__reset__q31_8c.html │ │ │ │ │ ├── arm__power__f16_8c.html │ │ │ │ │ ├── arm__power__f32_8c.html │ │ │ │ │ ├── arm__power__f64_8c.html │ │ │ │ │ ├── arm__power__q15_8c.html │ │ │ │ │ ├── arm__power__q31_8c.html │ │ │ │ │ ├── arm__power__q7_8c.html │ │ │ │ │ ├── arm__q15__to__f16_8c.html │ │ │ │ │ ├── arm__q15__to__float_8c.html │ │ │ │ │ ├── arm__q15__to__q31_8c.html │ │ │ │ │ ├── arm__q15__to__q7_8c.html │ │ │ │ │ ├── arm__q31__to__float_8c.html │ │ │ │ │ ├── arm__q31__to__q15_8c.html │ │ │ │ │ ├── arm__q31__to__q7_8c.html │ │ │ │ │ ├── arm__q7__to__float_8c.html │ │ │ │ │ ├── arm__q7__to__q15_8c.html │ │ │ │ │ ├── arm__q7__to__q31_8c.html │ │ │ │ │ ├── arm__quaternion2rotation__f32_8c.html │ │ │ │ │ ├── arm__quaternion__conjugate__f32_8c.html │ │ │ │ │ ├── arm__quaternion__inverse__f32_8c.html │ │ │ │ │ ├── arm__quaternion__norm__f32_8c.html │ │ │ │ │ ├── arm__quaternion__normalize__f32_8c.html │ │ │ │ │ ├── arm__quaternion__product__f32_8c.html │ │ │ │ │ ├── arm__quaternion__product__single__f32_8c.html │ │ │ │ │ ├── arm__quick__sort__f32_8c.html │ │ │ │ │ ├── arm__rfft__f32_8c.html │ │ │ │ │ ├── arm__rfft__fast__f16_8c.html │ │ │ │ │ ├── arm__rfft__fast__f32_8c.html │ │ │ │ │ ├── arm__rfft__fast__f64_8c.html │ │ │ │ │ ├── arm__rfft__fast__init__f16_8c.html │ │ │ │ │ ├── arm__rfft__fast__init__f32_8c.html │ │ │ │ │ ├── arm__rfft__fast__init__f64_8c.html │ │ │ │ │ ├── arm__rfft__init__f32_8c.html │ │ │ │ │ ├── arm__rfft__init__q15_8c.html │ │ │ │ │ ├── arm__rfft__init__q31_8c.html │ │ │ │ │ ├── arm__rfft__q15_8c.html │ │ │ │ │ ├── arm__rfft__q31_8c.html │ │ │ │ │ ├── arm__rms__f16_8c.html │ │ │ │ │ ├── arm__rms__f32_8c.html │ │ │ │ │ ├── arm__rms__q15_8c.html │ │ │ │ │ ├── arm__rms__q31_8c.html │ │ │ │ │ ├── arm__rogerstanimoto__distance_8c.html │ │ │ │ │ ├── arm__rotation2quaternion__f32_8c.html │ │ │ │ │ ├── arm__russellrao__distance_8c.html │ │ │ │ │ ├── arm__scale__f16_8c.html │ │ │ │ │ ├── arm__scale__f32_8c.html │ │ │ │ │ ├── arm__scale__f64_8c.html │ │ │ │ │ ├── arm__scale__q15_8c.html │ │ │ │ │ ├── arm__scale__q31_8c.html │ │ │ │ │ ├── arm__scale__q7_8c.html │ │ │ │ │ ├── arm__selection__sort__f32_8c.html │ │ │ │ │ ├── arm__shift__q15_8c.html │ │ │ │ │ ├── arm__shift__q31_8c.html │ │ │ │ │ ├── arm__shift__q7_8c.html │ │ │ │ │ ├── arm__signal__converge__data_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2math__helper_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2math__helper_8h.html │ │ │ │ │ ├── arm__signal__converge__example__f32_8c.html │ │ │ │ │ ├── arm__sin__cos__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__sin__cos__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__sin__cos__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__sin__cos__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__sin__cos__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__sin__cos__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__sin__cos__example__f32_8c.html │ │ │ │ │ ├── arm__sin__cos__f32_8c.html │ │ │ │ │ ├── arm__sin__cos__q31_8c.html │ │ │ │ │ ├── arm__sin__f32_8c.html │ │ │ │ │ ├── arm__sin__q15_8c.html │ │ │ │ │ ├── arm__sin__q31_8c.html │ │ │ │ │ ├── arm__sokalmichener__distance_8c.html │ │ │ │ │ ├── arm__sokalsneath__distance_8c.html │ │ │ │ │ ├── arm__sort__f32_8c.html │ │ │ │ │ ├── arm__sort__init__f32_8c.html │ │ │ │ │ ├── arm__spline__interp__f32_8c.html │ │ │ │ │ ├── arm__spline__interp__init__f32_8c.html │ │ │ │ │ ├── arm__sqrt__q15_8c.html │ │ │ │ │ ├── arm__sqrt__q31_8c.html │ │ │ │ │ ├── arm__std__f16_8c.html │ │ │ │ │ ├── arm__std__f32_8c.html │ │ │ │ │ ├── arm__std__f64_8c.html │ │ │ │ │ ├── arm__std__q15_8c.html │ │ │ │ │ ├── arm__std__q31_8c.html │ │ │ │ │ ├── arm__sub__f16_8c.html │ │ │ │ │ ├── arm__sub__f32_8c.html │ │ │ │ │ ├── arm__sub__f64_8c.html │ │ │ │ │ ├── arm__sub__q15_8c.html │ │ │ │ │ ├── arm__sub__q31_8c.html │ │ │ │ │ ├── arm__sub__q7_8c.html │ │ │ │ │ ├── arm__svm__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__svm__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__svm__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__svm__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__svm__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__svm__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__svm__example_2train_8py.html │ │ │ │ │ ├── arm__svm__example__f32_8c.html │ │ │ │ │ ├── arm__svm__linear__init__f16_8c.html │ │ │ │ │ ├── arm__svm__linear__init__f32_8c.html │ │ │ │ │ ├── arm__svm__linear__predict__f16_8c.html │ │ │ │ │ ├── arm__svm__linear__predict__f32_8c.html │ │ │ │ │ ├── arm__svm__polynomial__init__f16_8c.html │ │ │ │ │ ├── arm__svm__polynomial__init__f32_8c.html │ │ │ │ │ ├── arm__svm__polynomial__predict__f16_8c.html │ │ │ │ │ ├── arm__svm__polynomial__predict__f32_8c.html │ │ │ │ │ ├── arm__svm__rbf__init__f16_8c.html │ │ │ │ │ ├── arm__svm__rbf__init__f32_8c.html │ │ │ │ │ ├── arm__svm__rbf__predict__f16_8c.html │ │ │ │ │ ├── arm__svm__rbf__predict__f32_8c.html │ │ │ │ │ ├── arm__svm__sigmoid__init__f16_8c.html │ │ │ │ │ ├── arm__svm__sigmoid__init__f32_8c.html │ │ │ │ │ ├── arm__svm__sigmoid__predict__f16_8c.html │ │ │ │ │ ├── arm__svm__sigmoid__predict__f32_8c.html │ │ │ │ │ ├── arm__var__f16_8c.html │ │ │ │ │ ├── arm__var__f32_8c.html │ │ │ │ │ ├── arm__var__f64_8c.html │ │ │ │ │ ├── arm__var__q15_8c.html │ │ │ │ │ ├── arm__var__q31_8c.html │ │ │ │ │ ├── arm__variance__example_2ARMCM0__config_8txt.html │ │ │ │ │ ├── arm__variance__example_2ARMCM3__config_8txt.html │ │ │ │ │ ├── arm__variance__example_2ARMCM4__FP__config_8txt.html │ │ │ │ │ ├── arm__variance__example_2ARMCM55__FP__MVE__config_8txt.html │ │ │ │ │ ├── arm__variance__example_2ARMCM7__SP__config_8txt.html │ │ │ │ │ ├── arm__variance__example_2Abstract_8txt.html │ │ │ │ │ ├── arm__variance__example__f32_8c.html │ │ │ │ │ ├── arm__vec__math_8h.html │ │ │ │ │ ├── arm__vec__math__f16_8h.html │ │ │ │ │ ├── arm__vexp__f16_8c.html │ │ │ │ │ ├── arm__vexp__f32_8c.html │ │ │ │ │ ├── arm__vexp__f64_8c.html │ │ │ │ │ ├── arm__vinverse__f16_8c.html │ │ │ │ │ ├── arm__vlog__f16_8c.html │ │ │ │ │ ├── arm__vlog__f32_8c.html │ │ │ │ │ ├── arm__vlog__f64_8c.html │ │ │ │ │ ├── arm__vlog__q15_8c.html │ │ │ │ │ ├── arm__vlog__q31_8c.html │ │ │ │ │ ├── arm__weighted__sum__f16_8c.html │ │ │ │ │ ├── arm__weighted__sum__f32_8c.html │ │ │ │ │ ├── arm__xor__u16_8c.html │ │ │ │ │ ├── arm__xor__u32_8c.html │ │ │ │ │ ├── arm__xor__u8_8c.html │ │ │ │ │ ├── arm__yule__distance_8c.html │ │ │ │ │ ├── arm_bayes_example_f32_8c-example.html │ │ │ │ │ ├── arm_class_marks_example_f32_8c-example.html │ │ │ │ │ ├── arm_convolution_example_f32_8c-example.html │ │ │ │ │ ├── arm_dotproduct_example_f32_8c-example.html │ │ │ │ │ ├── arm_fft_bin_example_f32_8c-example.html │ │ │ │ │ ├── arm_fir_example_f32_8c-example.html │ │ │ │ │ ├── arm_graphic_equalizer_example_q31_8c-example.html │ │ │ │ │ ├── arm_linear_interp_example_f32_8c-example.html │ │ │ │ │ ├── arm_matrix_example_f32_8c-example.html │ │ │ │ │ ├── arm_signal_converge_example_f32_8c-example.html │ │ │ │ │ ├── arm_sin_cos_example_f32_8c-example.html │ │ │ │ │ ├── arm_svm_example_f32_8c-example.html │ │ │ │ │ ├── arm_variance_example_f32_8c-example.html │ │ │ │ │ ├── basic__math__functions_8h.html │ │ │ │ │ ├── basic__math__functions__f16_8h.html │ │ │ │ │ ├── bayes__functions_8h.html │ │ │ │ │ ├── bayes__functions__f16_8h.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── complex__math__functions_8h.html │ │ │ │ │ ├── complex__math__functions__f16_8h.html │ │ │ │ │ ├── controller__functions_8h.html │ │ │ │ │ ├── controller__functions__f16_8h.html │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── distance__functions_8h.html │ │ │ │ │ ├── distance__functions__f16_8h.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── fast__math__functions_8h.html │ │ │ │ │ ├── fast__math__functions__f16_8h.html │ │ │ │ │ ├── files.html │ │ │ │ │ ├── filtering__functions_8h.html │ │ │ │ │ ├── filtering__functions__f16_8h.html │ │ │ │ │ ├── footer.js │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_b.html │ │ │ │ │ ├── functions_c.html │ │ │ │ │ ├── functions_d.html │ │ │ │ │ ├── functions_e.html │ │ │ │ │ ├── functions_f.html │ │ │ │ │ ├── functions_g.html │ │ │ │ │ ├── functions_i.html │ │ │ │ │ ├── functions_k.html │ │ │ │ │ ├── functions_l.html │ │ │ │ │ ├── functions_m.html │ │ │ │ │ ├── functions_n.html │ │ │ │ │ ├── functions_o.html │ │ │ │ │ ├── functions_p.html │ │ │ │ │ ├── functions_r.html │ │ │ │ │ ├── functions_s.html │ │ │ │ │ ├── functions_t.html │ │ │ │ │ ├── functions_v.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── functions_vars_b.html │ │ │ │ │ ├── functions_vars_c.html │ │ │ │ │ ├── functions_vars_d.html │ │ │ │ │ ├── functions_vars_e.html │ │ │ │ │ ├── functions_vars_f.html │ │ │ │ │ ├── functions_vars_g.html │ │ │ │ │ ├── functions_vars_i.html │ │ │ │ │ ├── functions_vars_k.html │ │ │ │ │ ├── functions_vars_l.html │ │ │ │ │ ├── functions_vars_m.html │ │ │ │ │ ├── functions_vars_n.html │ │ │ │ │ ├── functions_vars_o.html │ │ │ │ │ ├── functions_vars_p.html │ │ │ │ │ ├── functions_vars_r.html │ │ │ │ │ ├── functions_vars_s.html │ │ │ │ │ ├── functions_vars_t.html │ │ │ │ │ ├── functions_vars_v.html │ │ │ │ │ ├── functions_vars_w.html │ │ │ │ │ ├── functions_vars_x.html │ │ │ │ │ ├── functions_vars_y.html │ │ │ │ │ ├── functions_w.html │ │ │ │ │ ├── functions_x.html │ │ │ │ │ ├── functions_y.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_a.html │ │ │ │ │ ├── globals_b.html │ │ │ │ │ ├── globals_c.html │ │ │ │ │ ├── globals_d.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_e.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_f.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_func_a.html │ │ │ │ │ ├── globals_func_b.html │ │ │ │ │ ├── globals_func_c.html │ │ │ │ │ ├── globals_func_d.html │ │ │ │ │ ├── globals_func_e.html │ │ │ │ │ ├── globals_func_f.html │ │ │ │ │ ├── globals_func_g.html │ │ │ │ │ ├── globals_func_h.html │ │ │ │ │ ├── globals_func_i.html │ │ │ │ │ ├── globals_func_j.html │ │ │ │ │ ├── globals_func_k.html │ │ │ │ │ ├── globals_func_l.html │ │ │ │ │ ├── globals_func_m.html │ │ │ │ │ ├── globals_func_n.html │ │ │ │ │ ├── globals_func_o.html │ │ │ │ │ ├── globals_func_p.html │ │ │ │ │ ├── globals_func_q.html │ │ │ │ │ ├── globals_func_r.html │ │ │ │ │ ├── globals_func_s.html │ │ │ │ │ ├── globals_func_t.html │ │ │ │ │ ├── globals_func_v.html │ │ │ │ │ ├── globals_func_w.html │ │ │ │ │ ├── globals_func_x.html │ │ │ │ │ ├── globals_func_y.html │ │ │ │ │ ├── globals_g.html │ │ │ │ │ ├── globals_h.html │ │ │ │ │ ├── globals_i.html │ │ │ │ │ ├── globals_j.html │ │ │ │ │ ├── globals_k.html │ │ │ │ │ ├── globals_l.html │ │ │ │ │ ├── globals_m.html │ │ │ │ │ ├── globals_n.html │ │ │ │ │ ├── globals_o.html │ │ │ │ │ ├── globals_p.html │ │ │ │ │ ├── globals_q.html │ │ │ │ │ ├── globals_r.html │ │ │ │ │ ├── globals_s.html │ │ │ │ │ ├── globals_t.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── globals_u.html │ │ │ │ │ ├── globals_v.html │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ ├── globals_vars_b.html │ │ │ │ │ ├── globals_vars_c.html │ │ │ │ │ ├── globals_vars_d.html │ │ │ │ │ ├── globals_vars_e.html │ │ │ │ │ ├── globals_vars_f.html │ │ │ │ │ ├── globals_vars_g.html │ │ │ │ │ ├── globals_vars_i.html │ │ │ │ │ ├── globals_vars_l.html │ │ │ │ │ ├── globals_vars_m.html │ │ │ │ │ ├── globals_vars_n.html │ │ │ │ │ ├── globals_vars_o.html │ │ │ │ │ ├── globals_vars_p.html │ │ │ │ │ ├── globals_vars_r.html │ │ │ │ │ ├── globals_vars_s.html │ │ │ │ │ ├── globals_vars_t.html │ │ │ │ │ ├── globals_vars_v.html │ │ │ │ │ ├── globals_vars_w.html │ │ │ │ │ ├── globals_vars_x.html │ │ │ │ │ ├── globals_w.html │ │ │ │ │ ├── globals_x.html │ │ │ │ │ ├── globals_y.html │ │ │ │ │ ├── group__AbsMax.html │ │ │ │ │ ├── group__AbsMin.html │ │ │ │ │ ├── group__And.html │ │ │ │ │ ├── group__BasicAbs.html │ │ │ │ │ ├── group__BasicAdd.html │ │ │ │ │ ├── group__BasicClip.html │ │ │ │ │ ├── group__BasicDotProd.html │ │ │ │ │ ├── group__BasicMult.html │ │ │ │ │ ├── group__BasicNegate.html │ │ │ │ │ ├── group__BasicOffset.html │ │ │ │ │ ├── group__BasicScale.html │ │ │ │ │ ├── group__BasicShift.html │ │ │ │ │ ├── group__BasicSub.html │ │ │ │ │ ├── group__BayesExample.html │ │ │ │ │ ├── group__BilinearInterpolate.html │ │ │ │ │ ├── group__BiquadCascadeDF1.html │ │ │ │ │ ├── group__BiquadCascadeDF1__32x64.html │ │ │ │ │ ├── group__BiquadCascadeDF2T.html │ │ │ │ │ ├── group__BoolDist.html │ │ │ │ │ ├── group__CFFT__CIFFT.html │ │ │ │ │ ├── group__Canberra.html │ │ │ │ │ ├── group__Chebyshev.html │ │ │ │ │ ├── group__ClassMarks.html │ │ │ │ │ ├── group__CmplxByCmplxMult.html │ │ │ │ │ ├── group__CmplxByRealMult.html │ │ │ │ │ ├── group__CmplxMatrixMult.html │ │ │ │ │ ├── group__ComplexFFT.html │ │ │ │ │ ├── group__Conv.html │ │ │ │ │ ├── group__ConvolutionExample.html │ │ │ │ │ ├── group__Corr.html │ │ │ │ │ ├── group__Correlation.html │ │ │ │ │ ├── group__CosineDist.html │ │ │ │ │ ├── group__DCT4__IDCT4.html │ │ │ │ │ ├── group__DCT4__IDCT4__Table.html │ │ │ │ │ ├── group__DotproductExample.html │ │ │ │ │ ├── group__Entropy.html │ │ │ │ │ ├── group__Euclidean.html │ │ │ │ │ ├── group__FIR.html │ │ │ │ │ ├── group__FIRLPF.html │ │ │ │ │ ├── group__FIR__Interpolate.html │ │ │ │ │ ├── group__FIR__Lattice.html │ │ │ │ │ ├── group__FIR__Sparse.html │ │ │ │ │ ├── group__FIR__decimate.html │ │ │ │ │ ├── group__Fill.html │ │ │ │ │ ├── group__FloatDist.html │ │ │ │ │ ├── group__FrequencyBin.html │ │ │ │ │ ├── group__GEQ5Band.html │ │ │ │ │ ├── group__IIR__Lattice.html │ │ │ │ │ ├── group__JensenShannon.html │ │ │ │ │ ├── group__Kullback-Leibler.html │ │ │ │ │ ├── group__LD.html │ │ │ │ │ ├── group__LMS.html │ │ │ │ │ ├── group__LMS__NORM.html │ │ │ │ │ ├── group__LinearInterpExample.html │ │ │ │ │ ├── group__LinearInterpolate.html │ │ │ │ │ ├── group__LogSumExp.html │ │ │ │ │ ├── group__MFCC.html │ │ │ │ │ ├── group__MSE.html │ │ │ │ │ ├── group__Manhattan.html │ │ │ │ │ ├── group__MatrixAdd.html │ │ │ │ │ ├── group__MatrixChol.html │ │ │ │ │ ├── group__MatrixComplexTrans.html │ │ │ │ │ ├── group__MatrixExample.html │ │ │ │ │ ├── group__MatrixInit.html │ │ │ │ │ ├── group__MatrixInv.html │ │ │ │ │ ├── group__MatrixMult.html │ │ │ │ │ ├── group__MatrixScale.html │ │ │ │ │ ├── group__MatrixSub.html │ │ │ │ │ ├── group__MatrixTrans.html │ │ │ │ │ ├── group__MatrixVectMult.html │ │ │ │ │ ├── group__Max.html │ │ │ │ │ ├── group__Min.html │ │ │ │ │ ├── group__Minkowski.html │ │ │ │ │ ├── group__Not.html │ │ │ │ │ ├── group__Or.html │ │ │ │ │ ├── group__PID.html │ │ │ │ │ ├── group__PartialConv.html │ │ │ │ │ ├── group__QuatConjugate.html │ │ │ │ │ ├── group__QuatConv.html │ │ │ │ │ ├── group__QuatInverse.html │ │ │ │ │ ├── group__QuatNorm.html │ │ │ │ │ ├── group__QuatNormalized.html │ │ │ │ │ ├── group__QuatProd.html │ │ │ │ │ ├── group__QuatProdSingle.html │ │ │ │ │ ├── group__QuatProdVect.html │ │ │ │ │ ├── group__QuatRot.html │ │ │ │ │ ├── group__RMS.html │ │ │ │ │ ├── group__RealFFT.html │ │ │ │ │ ├── group__RealFFT__Table.html │ │ │ │ │ ├── group__RotQuat.html │ │ │ │ │ ├── group__SQRT.html │ │ │ │ │ ├── group__STD.html │ │ │ │ │ ├── group__SVMExample.html │ │ │ │ │ ├── group__SignalConvergence.html │ │ │ │ │ ├── group__SinCos.html │ │ │ │ │ ├── group__SinCosExample.html │ │ │ │ │ ├── group__Sorting.html │ │ │ │ │ ├── group__SplineInterpolate.html │ │ │ │ │ ├── group__VarianceExample.html │ │ │ │ │ ├── group__Xor.html │ │ │ │ │ ├── group__atan2.html │ │ │ │ │ ├── group__barycenter.html │ │ │ │ │ ├── group__braycurtis.html │ │ │ │ │ ├── group__clarke.html │ │ │ │ │ ├── group__cmplx__conj.html │ │ │ │ │ ├── group__cmplx__dot__prod.html │ │ │ │ │ ├── group__cmplx__mag.html │ │ │ │ │ ├── group__cmplx__mag__squared.html │ │ │ │ │ ├── group__copy.html │ │ │ │ │ ├── group__cos.html │ │ │ │ │ ├── group__divide.html │ │ │ │ │ ├── group__f16__to__x.html │ │ │ │ │ ├── group__float__to__x.html │ │ │ │ │ ├── group__groupBayes.html │ │ │ │ │ ├── group__groupCmplxMath.html │ │ │ │ │ ├── group__groupController.html │ │ │ │ │ ├── group__groupDistance.html │ │ │ │ │ ├── group__groupExamples.html │ │ │ │ │ ├── group__groupFastMath.html │ │ │ │ │ ├── group__groupFilters.html │ │ │ │ │ ├── group__groupInterpolation.html │ │ │ │ │ ├── group__groupMath.html │ │ │ │ │ ├── group__groupMatrix.html │ │ │ │ │ ├── group__groupQuaternionMath.html │ │ │ │ │ ├── group__groupSVM.html │ │ │ │ │ ├── group__groupStats.html │ │ │ │ │ ├── group__groupSupport.html │ │ │ │ │ ├── group__groupTransforms.html │ │ │ │ │ ├── group__inv__clarke.html │ │ │ │ │ ├── group__inv__park.html │ │ │ │ │ ├── group__linearsvm.html │ │ │ │ │ ├── group__mean.html │ │ │ │ │ ├── group__park.html │ │ │ │ │ ├── group__polysvm.html │ │ │ │ │ ├── group__power.html │ │ │ │ │ ├── group__q15__to__x.html │ │ │ │ │ ├── group__q31__to__x.html │ │ │ │ │ ├── group__q7__to__x.html │ │ │ │ │ ├── group__rbfsvm.html │ │ │ │ │ ├── group__sigmoidsvm.html │ │ │ │ │ ├── group__sin.html │ │ │ │ │ ├── group__typecast.html │ │ │ │ │ ├── group__variance.html │ │ │ │ │ ├── group__vlog.html │ │ │ │ │ ├── group__weightedsum.html │ │ │ │ │ ├── history_8txt.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.html.bak │ │ │ │ │ ├── interpolation__functions_8h.html │ │ │ │ │ ├── interpolation__functions__f16_8h.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── matrix__functions_8h.html │ │ │ │ │ ├── matrix__functions__f16_8h.html │ │ │ │ │ ├── matrix__utils_8h.html │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── namespacemembers.html │ │ │ │ │ ├── namespacemembers_vars.html │ │ │ │ │ ├── namespaces.html │ │ │ │ │ ├── namespacetrain.html │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── none_8h.html │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── quaternion__math__functions_8h.html │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── search/ │ │ │ │ │ │ ├── all_0.html │ │ │ │ │ │ ├── all_0.js │ │ │ │ │ │ ├── all_1.html │ │ │ │ │ │ ├── all_1.js │ │ │ │ │ │ ├── all_10.html │ │ │ │ │ │ ├── all_10.js │ │ │ │ │ │ ├── all_11.html │ │ │ │ │ │ ├── all_11.js │ │ │ │ │ │ ├── all_12.html │ │ │ │ │ │ ├── all_12.js │ │ │ │ │ │ ├── all_13.html │ │ │ │ │ │ ├── all_13.js │ │ │ │ │ │ ├── all_14.html │ │ │ │ │ │ ├── all_14.js │ │ │ │ │ │ ├── all_15.html │ │ │ │ │ │ ├── all_15.js │ │ │ │ │ │ ├── all_16.html │ │ │ │ │ │ ├── all_16.js │ │ │ │ │ │ ├── all_17.html │ │ │ │ │ │ ├── all_17.js │ │ │ │ │ │ ├── all_18.html │ │ │ │ │ │ ├── all_18.js │ │ │ │ │ │ ├── all_19.html │ │ │ │ │ │ ├── all_19.js │ │ │ │ │ │ ├── all_1a.html │ │ │ │ │ │ ├── all_1a.js │ │ │ │ │ │ ├── all_2.html │ │ │ │ │ │ ├── all_2.js │ │ │ │ │ │ ├── all_3.html │ │ │ │ │ │ ├── all_3.js │ │ │ │ │ │ ├── all_4.html │ │ │ │ │ │ ├── all_4.js │ │ │ │ │ │ ├── all_5.html │ │ │ │ │ │ ├── all_5.js │ │ │ │ │ │ ├── all_6.html │ │ │ │ │ │ ├── all_6.js │ │ │ │ │ │ ├── all_7.html │ │ │ │ │ │ ├── all_7.js │ │ │ │ │ │ ├── all_8.html │ │ │ │ │ │ ├── all_8.js │ │ │ │ │ │ ├── all_9.html │ │ │ │ │ │ ├── all_9.js │ │ │ │ │ │ ├── all_a.html │ │ │ │ │ │ ├── all_a.js │ │ │ │ │ │ ├── all_b.html │ │ │ │ │ │ ├── all_b.js │ │ │ │ │ │ ├── all_c.html │ │ │ │ │ │ ├── all_c.js │ │ │ │ │ │ ├── all_d.html │ │ │ │ │ │ ├── all_d.js │ │ │ │ │ │ ├── all_e.html │ │ │ │ │ │ ├── all_e.js │ │ │ │ │ │ ├── all_f.html │ │ │ │ │ │ ├── all_f.js │ │ │ │ │ │ ├── classes_0.html │ │ │ │ │ │ ├── classes_0.js │ │ │ │ │ │ ├── defines_0.html │ │ │ │ │ │ ├── defines_0.js │ │ │ │ │ │ ├── defines_1.html │ │ │ │ │ │ ├── defines_1.js │ │ │ │ │ │ ├── defines_10.html │ │ │ │ │ │ ├── defines_10.js │ │ │ │ │ │ ├── defines_11.html │ │ │ │ │ │ ├── defines_11.js │ │ │ │ │ │ ├── defines_12.html │ │ │ │ │ │ ├── defines_12.js │ │ │ │ │ │ ├── defines_13.html │ │ │ │ │ │ ├── defines_13.js │ │ │ │ │ │ ├── defines_14.html │ │ │ │ │ │ ├── defines_14.js │ │ │ │ │ │ ├── defines_15.html │ │ │ │ │ │ ├── defines_15.js │ │ │ │ │ │ ├── defines_2.html │ │ │ │ │ │ ├── defines_2.js │ │ │ │ │ │ ├── defines_3.html │ │ │ │ │ │ ├── defines_3.js │ │ │ │ │ │ ├── defines_4.html │ │ │ │ │ │ ├── defines_4.js │ │ │ │ │ │ ├── defines_5.html │ │ │ │ │ │ ├── defines_5.js │ │ │ │ │ │ ├── defines_6.html │ │ │ │ │ │ ├── defines_6.js │ │ │ │ │ │ ├── defines_7.html │ │ │ │ │ │ ├── defines_7.js │ │ │ │ │ │ ├── defines_8.html │ │ │ │ │ │ ├── defines_8.js │ │ │ │ │ │ ├── defines_9.html │ │ │ │ │ │ ├── defines_9.js │ │ │ │ │ │ ├── defines_a.html │ │ │ │ │ │ ├── defines_a.js │ │ │ │ │ │ ├── defines_b.html │ │ │ │ │ │ ├── defines_b.js │ │ │ │ │ │ ├── defines_c.html │ │ │ │ │ │ ├── defines_c.js │ │ │ │ │ │ ├── defines_d.html │ │ │ │ │ │ ├── defines_d.js │ │ │ │ │ │ ├── defines_e.html │ │ │ │ │ │ ├── defines_e.js │ │ │ │ │ │ ├── defines_f.html │ │ │ │ │ │ ├── defines_f.js │ │ │ │ │ │ ├── enums_0.html │ │ │ │ │ │ ├── enums_0.js │ │ │ │ │ │ ├── enumvalues_0.html │ │ │ │ │ │ ├── enumvalues_0.js │ │ │ │ │ │ ├── files_0.html │ │ │ │ │ │ ├── files_0.js │ │ │ │ │ │ ├── files_1.html │ │ │ │ │ │ ├── files_1.js │ │ │ │ │ │ ├── files_2.html │ │ │ │ │ │ ├── files_2.js │ │ │ │ │ │ ├── files_3.html │ │ │ │ │ │ ├── files_3.js │ │ │ │ │ │ ├── files_4.html │ │ │ │ │ │ ├── files_4.js │ │ │ │ │ │ ├── files_5.html │ │ │ │ │ │ ├── files_5.js │ │ │ │ │ │ ├── files_6.html │ │ │ │ │ │ ├── files_6.js │ │ │ │ │ │ ├── files_7.html │ │ │ │ │ │ ├── files_7.js │ │ │ │ │ │ ├── files_8.html │ │ │ │ │ │ ├── files_8.js │ │ │ │ │ │ ├── files_9.html │ │ │ │ │ │ ├── files_9.js │ │ │ │ │ │ ├── files_a.html │ │ │ │ │ │ ├── files_a.js │ │ │ │ │ │ ├── files_b.html │ │ │ │ │ │ ├── files_b.js │ │ │ │ │ │ ├── files_c.html │ │ │ │ │ │ ├── files_c.js │ │ │ │ │ │ ├── files_d.html │ │ │ │ │ │ ├── files_d.js │ │ │ │ │ │ ├── functions_0.html │ │ │ │ │ │ ├── functions_0.js │ │ │ │ │ │ ├── functions_1.html │ │ │ │ │ │ ├── functions_1.js │ │ │ │ │ │ ├── functions_2.html │ │ │ │ │ │ ├── functions_2.js │ │ │ │ │ │ ├── functions_3.html │ │ │ │ │ │ ├── functions_3.js │ │ │ │ │ │ ├── functions_4.html │ │ │ │ │ │ ├── functions_4.js │ │ │ │ │ │ ├── functions_5.html │ │ │ │ │ │ ├── functions_5.js │ │ │ │ │ │ ├── functions_6.html │ │ │ │ │ │ ├── functions_6.js │ │ │ │ │ │ ├── functions_7.html │ │ │ │ │ │ ├── functions_7.js │ │ │ │ │ │ ├── functions_8.html │ │ │ │ │ │ ├── functions_8.js │ │ │ │ │ │ ├── functions_9.html │ │ │ │ │ │ ├── functions_9.js │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ ├── functions_a.js │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ ├── functions_b.js │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ ├── functions_c.js │ │ │ │ │ │ ├── groups_0.html │ │ │ │ │ │ ├── groups_0.js │ │ │ │ │ │ ├── groups_1.html │ │ │ │ │ │ ├── groups_1.js │ │ │ │ │ │ ├── groups_10.html │ │ │ │ │ │ ├── groups_10.js │ │ │ │ │ │ ├── groups_11.html │ │ │ │ │ │ ├── groups_11.js │ │ │ │ │ │ ├── groups_12.html │ │ │ │ │ │ ├── groups_12.js │ │ │ │ │ │ ├── groups_13.html │ │ │ │ │ │ ├── groups_13.js │ │ │ │ │ │ ├── groups_14.html │ │ │ │ │ │ ├── groups_14.js │ │ │ │ │ │ ├── groups_2.html │ │ │ │ │ │ ├── groups_2.js │ │ │ │ │ │ ├── groups_3.html │ │ │ │ │ │ ├── groups_3.js │ │ │ │ │ │ ├── groups_4.html │ │ │ │ │ │ ├── groups_4.js │ │ │ │ │ │ ├── groups_5.html │ │ │ │ │ │ ├── groups_5.js │ │ │ │ │ │ ├── groups_6.html │ │ │ │ │ │ ├── groups_6.js │ │ │ │ │ │ ├── groups_7.html │ │ │ │ │ │ ├── groups_7.js │ │ │ │ │ │ ├── groups_8.html │ │ │ │ │ │ ├── groups_8.js │ │ │ │ │ │ ├── groups_9.html │ │ │ │ │ │ ├── groups_9.js │ │ │ │ │ │ ├── groups_a.html │ │ │ │ │ │ ├── groups_a.js │ │ │ │ │ │ ├── groups_b.html │ │ │ │ │ │ ├── groups_b.js │ │ │ │ │ │ ├── groups_c.html │ │ │ │ │ │ ├── groups_c.js │ │ │ │ │ │ ├── groups_d.html │ │ │ │ │ │ ├── groups_d.js │ │ │ │ │ │ ├── groups_e.html │ │ │ │ │ │ ├── groups_e.js │ │ │ │ │ │ ├── groups_f.html │ │ │ │ │ │ ├── groups_f.js │ │ │ │ │ │ ├── namespaces_0.html │ │ │ │ │ │ ├── namespaces_0.js │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ ├── pages_0.html │ │ │ │ │ │ ├── pages_0.js │ │ │ │ │ │ ├── pages_1.html │ │ │ │ │ │ ├── pages_1.js │ │ │ │ │ │ ├── pages_2.html │ │ │ │ │ │ ├── pages_2.js │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── search.js.bak │ │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ │ ├── variables_0.html │ │ │ │ │ │ ├── variables_0.js │ │ │ │ │ │ ├── variables_1.html │ │ │ │ │ │ ├── variables_1.js │ │ │ │ │ │ ├── variables_10.html │ │ │ │ │ │ ├── variables_10.js │ │ │ │ │ │ ├── variables_11.html │ │ │ │ │ │ ├── variables_11.js │ │ │ │ │ │ ├── variables_12.html │ │ │ │ │ │ ├── variables_12.js │ │ │ │ │ │ ├── variables_13.html │ │ │ │ │ │ ├── variables_13.js │ │ │ │ │ │ ├── variables_14.html │ │ │ │ │ │ ├── variables_14.js │ │ │ │ │ │ ├── variables_15.html │ │ │ │ │ │ ├── variables_15.js │ │ │ │ │ │ ├── variables_2.html │ │ │ │ │ │ ├── variables_2.js │ │ │ │ │ │ ├── variables_3.html │ │ │ │ │ │ ├── variables_3.js │ │ │ │ │ │ ├── variables_4.html │ │ │ │ │ │ ├── variables_4.js │ │ │ │ │ │ ├── variables_5.html │ │ │ │ │ │ ├── variables_5.js │ │ │ │ │ │ ├── variables_6.html │ │ │ │ │ │ ├── variables_6.js │ │ │ │ │ │ ├── variables_7.html │ │ │ │ │ │ ├── variables_7.js │ │ │ │ │ │ ├── variables_8.html │ │ │ │ │ │ ├── variables_8.js │ │ │ │ │ │ ├── variables_9.html │ │ │ │ │ │ ├── variables_9.js │ │ │ │ │ │ ├── variables_a.html │ │ │ │ │ │ ├── variables_a.js │ │ │ │ │ │ ├── variables_b.html │ │ │ │ │ │ ├── variables_b.js │ │ │ │ │ │ ├── variables_c.html │ │ │ │ │ │ ├── variables_c.js │ │ │ │ │ │ ├── variables_d.html │ │ │ │ │ │ ├── variables_d.js │ │ │ │ │ │ ├── variables_e.html │ │ │ │ │ │ ├── variables_e.js │ │ │ │ │ │ ├── variables_f.html │ │ │ │ │ │ └── variables_f.js │ │ │ │ │ ├── statistics__functions_8h.html │ │ │ │ │ ├── statistics__functions__f16_8h.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__f16.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__f32.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__q15.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__q31.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__q7.html │ │ │ │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.html │ │ │ │ │ ├── structarm__biquad__cascade__df2T__instance__f16.html │ │ │ │ │ ├── structarm__biquad__cascade__df2T__instance__f32.html │ │ │ │ │ ├── structarm__biquad__cascade__df2T__instance__f64.html │ │ │ │ │ ├── structarm__biquad__cascade__stereo__df2T__instance__f16.html │ │ │ │ │ ├── structarm__biquad__cascade__stereo__df2T__instance__f32.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__f16.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__f32.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__q15.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__q31.html │ │ │ │ │ ├── structarm__cfft__instance__f16.html │ │ │ │ │ ├── structarm__cfft__instance__f32.html │ │ │ │ │ ├── structarm__cfft__instance__f64.html │ │ │ │ │ ├── structarm__cfft__instance__q15.html │ │ │ │ │ ├── structarm__cfft__instance__q31.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__f16.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__f32.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__q15.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__q31.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__f16.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__f32.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__q15.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__q31.html │ │ │ │ │ ├── structarm__dct4__instance__f32.html │ │ │ │ │ ├── structarm__dct4__instance__q15.html │ │ │ │ │ ├── structarm__dct4__instance__q31.html │ │ │ │ │ ├── structarm__fir__decimate__instance__f32.html │ │ │ │ │ ├── structarm__fir__decimate__instance__q15.html │ │ │ │ │ ├── structarm__fir__decimate__instance__q31.html │ │ │ │ │ ├── structarm__fir__instance__f16.html │ │ │ │ │ ├── structarm__fir__instance__f32.html │ │ │ │ │ ├── structarm__fir__instance__f64.html │ │ │ │ │ ├── structarm__fir__instance__q15.html │ │ │ │ │ ├── structarm__fir__instance__q31.html │ │ │ │ │ ├── structarm__fir__instance__q7.html │ │ │ │ │ ├── structarm__fir__interpolate__instance__f32.html │ │ │ │ │ ├── structarm__fir__interpolate__instance__q15.html │ │ │ │ │ ├── structarm__fir__interpolate__instance__q31.html │ │ │ │ │ ├── structarm__fir__lattice__instance__f32.html │ │ │ │ │ ├── structarm__fir__lattice__instance__q15.html │ │ │ │ │ ├── structarm__fir__lattice__instance__q31.html │ │ │ │ │ ├── structarm__fir__sparse__instance__f32.html │ │ │ │ │ ├── structarm__fir__sparse__instance__q15.html │ │ │ │ │ ├── structarm__fir__sparse__instance__q31.html │ │ │ │ │ ├── structarm__fir__sparse__instance__q7.html │ │ │ │ │ ├── structarm__gaussian__naive__bayes__instance__f16.html │ │ │ │ │ ├── structarm__gaussian__naive__bayes__instance__f32.html │ │ │ │ │ ├── structarm__iir__lattice__instance__f32.html │ │ │ │ │ ├── structarm__iir__lattice__instance__q15.html │ │ │ │ │ ├── structarm__iir__lattice__instance__q31.html │ │ │ │ │ ├── structarm__linear__interp__instance__f16.html │ │ │ │ │ ├── structarm__linear__interp__instance__f32.html │ │ │ │ │ ├── structarm__lms__instance__f32.html │ │ │ │ │ ├── structarm__lms__instance__q15.html │ │ │ │ │ ├── structarm__lms__instance__q31.html │ │ │ │ │ ├── structarm__lms__norm__instance__f32.html │ │ │ │ │ ├── structarm__lms__norm__instance__q15.html │ │ │ │ │ ├── structarm__lms__norm__instance__q31.html │ │ │ │ │ ├── structarm__matrix__instance__f16.html │ │ │ │ │ ├── structarm__matrix__instance__f32.html │ │ │ │ │ ├── structarm__matrix__instance__f64.html │ │ │ │ │ ├── structarm__matrix__instance__q15.html │ │ │ │ │ ├── structarm__matrix__instance__q31.html │ │ │ │ │ ├── structarm__matrix__instance__q7.html │ │ │ │ │ ├── structarm__merge__sort__instance__f32.html │ │ │ │ │ ├── structarm__mfcc__instance__f16.html │ │ │ │ │ ├── structarm__mfcc__instance__f32.html │ │ │ │ │ ├── structarm__mfcc__instance__q15.html │ │ │ │ │ ├── structarm__mfcc__instance__q31.html │ │ │ │ │ ├── structarm__pid__instance__f32.html │ │ │ │ │ ├── structarm__pid__instance__q15.html │ │ │ │ │ ├── structarm__pid__instance__q31.html │ │ │ │ │ ├── structarm__rfft__fast__instance__f16.html │ │ │ │ │ ├── structarm__rfft__fast__instance__f32.html │ │ │ │ │ ├── structarm__rfft__fast__instance__f64.html │ │ │ │ │ ├── structarm__rfft__instance__f32.html │ │ │ │ │ ├── structarm__rfft__instance__q15.html │ │ │ │ │ ├── structarm__rfft__instance__q31.html │ │ │ │ │ ├── structarm__sort__instance__f32.html │ │ │ │ │ ├── structarm__spline__instance__f32.html │ │ │ │ │ ├── structarm__svm__linear__instance__f16.html │ │ │ │ │ ├── structarm__svm__linear__instance__f32.html │ │ │ │ │ ├── structarm__svm__polynomial__instance__f16.html │ │ │ │ │ ├── structarm__svm__polynomial__instance__f32.html │ │ │ │ │ ├── structarm__svm__rbf__instance__f16.html │ │ │ │ │ ├── structarm__svm__rbf__instance__f32.html │ │ │ │ │ ├── structarm__svm__sigmoid__instance__f16.html │ │ │ │ │ ├── structarm__svm__sigmoid__instance__f32.html │ │ │ │ │ ├── support__functions_8h.html │ │ │ │ │ ├── support__functions__f16_8h.html │ │ │ │ │ ├── svm__defines_8h.html │ │ │ │ │ ├── svm__functions_8h.html │ │ │ │ │ ├── svm__functions__f16_8h.html │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── transform__functions_8h.html │ │ │ │ │ ├── transform__functions__f16_8h.html │ │ │ │ │ ├── unionany32x2__t.html │ │ │ │ │ ├── unionany32x4__t.html │ │ │ │ │ └── utils_8h.html │ │ │ │ ├── Doxygen_Templates/ │ │ │ │ │ ├── DoxygenLayout_forUser.xml │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis_dap_header.html │ │ │ │ │ ├── cmsis_footer.html │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── cmsis_header.html │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── search.css │ │ │ │ │ └── tabs.css │ │ │ │ ├── Driver/ │ │ │ │ │ ├── Driver.dxy │ │ │ │ │ └── src/ │ │ │ │ │ ├── Driver_CAN.c │ │ │ │ │ ├── Driver_Common.c │ │ │ │ │ ├── Driver_ETH.c │ │ │ │ │ ├── Driver_ETH_MAC.c │ │ │ │ │ ├── Driver_ETH_PHY.c │ │ │ │ │ ├── Driver_Flash.c │ │ │ │ │ ├── Driver_I2C.c │ │ │ │ │ ├── Driver_MCI.c │ │ │ │ │ ├── Driver_NAND.c │ │ │ │ │ ├── Driver_NAND_AddOn.txt │ │ │ │ │ ├── Driver_SAI.c │ │ │ │ │ ├── Driver_SPI.c │ │ │ │ │ ├── Driver_Storage.c │ │ │ │ │ ├── Driver_USART.c │ │ │ │ │ ├── Driver_USB.c │ │ │ │ │ ├── Driver_USBD.c │ │ │ │ │ ├── Driver_USBH.c │ │ │ │ │ ├── Driver_WiFi.c │ │ │ │ │ ├── Flash_Demo.c │ │ │ │ │ ├── General.txt │ │ │ │ │ ├── I2C_Demo.c │ │ │ │ │ ├── I2C_SlaveDemo.c │ │ │ │ │ ├── MCI_Demo.c │ │ │ │ │ ├── NAND_Demo.c │ │ │ │ │ ├── SPI_Demo.c │ │ │ │ │ ├── USART_Demo.c │ │ │ │ │ ├── VIO.txt │ │ │ │ │ └── images/ │ │ │ │ │ ├── CAN_Bit_Timing.vsd │ │ │ │ │ ├── CAN_Node.vsd │ │ │ │ │ ├── EthernetSchematic.vsd │ │ │ │ │ ├── I2C_BlockDiagram.vsd │ │ │ │ │ ├── NAND_PageLayout.vsd │ │ │ │ │ ├── NAND_Schematics.vsd │ │ │ │ │ ├── NAND_SpareArea.vsd │ │ │ │ │ ├── NOR_Schematics.vsd │ │ │ │ │ ├── SAI_Schematics.vsd │ │ │ │ │ ├── SAI_TimingDiagrams.vsd │ │ │ │ │ ├── SD_1BitBusMode.vsd │ │ │ │ │ ├── SD_4BitBusMode.vsd │ │ │ │ │ ├── SPI_BusMode.vsd │ │ │ │ │ ├── SPI_Master1Slaves.vsd │ │ │ │ │ ├── SPI_Master2Slaves.vsd │ │ │ │ │ ├── SPI_Master3Slaves.vsd │ │ │ │ │ ├── Storage.vsd │ │ │ │ │ ├── USB_Schematics.vsd │ │ │ │ │ └── driver.pptx │ │ │ │ ├── General/ │ │ │ │ │ ├── general.dxy │ │ │ │ │ └── src/ │ │ │ │ │ └── introduction.txt │ │ │ │ ├── How2Doc.txt │ │ │ │ ├── NN/ │ │ │ │ │ └── html/ │ │ │ │ │ ├── ActivationFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── BasicMathFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── CMakeLists_8txt.html │ │ │ │ │ ├── ChangeLog_pg.html │ │ │ │ │ ├── ConcatenationFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── ConvolutionFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── FullyConnectedFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── NNSupportFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── PoolingFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── ReshapeFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── SVDFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── SoftmaxFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated.js │ │ │ │ │ ├── arm__avgpool__s16_8c.html │ │ │ │ │ ├── arm__avgpool__s8_8c.html │ │ │ │ │ ├── arm__concatenation__s8__w_8c.html │ │ │ │ │ ├── arm__concatenation__s8__x_8c.html │ │ │ │ │ ├── arm__concatenation__s8__y_8c.html │ │ │ │ │ ├── arm__concatenation__s8__z_8c.html │ │ │ │ │ ├── arm__convolve__1__x__n__s8_8c.html │ │ │ │ │ ├── arm__convolve__1x1__HWC__q7__fast__nonsquare_8c.html │ │ │ │ │ ├── arm__convolve__1x1__s8__fast_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q15__basic_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q15__fast_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q15__fast__nonsquare_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q7__RGB_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q7__basic_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q7__basic__nonsquare_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q7__fast_8c.html │ │ │ │ │ ├── arm__convolve__HWC__q7__fast__nonsquare_8c.html │ │ │ │ │ ├── arm__convolve__fast__s16_8c.html │ │ │ │ │ ├── arm__convolve__s16_8c.html │ │ │ │ │ ├── arm__convolve__s8_8c.html │ │ │ │ │ ├── arm__convolve__wrapper__s16_8c.html │ │ │ │ │ ├── arm__convolve__wrapper__s8_8c.html │ │ │ │ │ ├── arm__depthwise__conv__3x3__s8_8c.html │ │ │ │ │ ├── arm__depthwise__conv__fast__s16_8c.html │ │ │ │ │ ├── arm__depthwise__conv__s16_8c.html │ │ │ │ │ ├── arm__depthwise__conv__s8_8c.html │ │ │ │ │ ├── arm__depthwise__conv__s8__opt_8c.html │ │ │ │ │ ├── arm__depthwise__conv__u8__basic__ver1_8c.html │ │ │ │ │ ├── arm__depthwise__conv__wrapper__s16_8c.html │ │ │ │ │ ├── arm__depthwise__conv__wrapper__s8_8c.html │ │ │ │ │ ├── arm__depthwise__separable__conv__HWC__q7_8c.html │ │ │ │ │ ├── arm__depthwise__separable__conv__HWC__q7__nonsquare_8c.html │ │ │ │ │ ├── arm__elementwise__add__s16_8c.html │ │ │ │ │ ├── arm__elementwise__add__s8_8c.html │ │ │ │ │ ├── arm__elementwise__mul__s16_8c.html │ │ │ │ │ ├── arm__elementwise__mul__s8_8c.html │ │ │ │ │ ├── arm__fully__connected__mat__q7__vec__q15_8c.html │ │ │ │ │ ├── arm__fully__connected__mat__q7__vec__q15__opt_8c.html │ │ │ │ │ ├── arm__fully__connected__q15_8c.html │ │ │ │ │ ├── arm__fully__connected__q15__opt_8c.html │ │ │ │ │ ├── arm__fully__connected__q7_8c.html │ │ │ │ │ ├── arm__fully__connected__q7__opt_8c.html │ │ │ │ │ ├── arm__fully__connected__s16_8c.html │ │ │ │ │ ├── arm__fully__connected__s8_8c.html │ │ │ │ │ ├── arm__max__pool__s16_8c.html │ │ │ │ │ ├── arm__max__pool__s8_8c.html │ │ │ │ │ ├── arm__nn__accumulate__q7__to__q15_8c.html │ │ │ │ │ ├── arm__nn__activations__q15_8c.html │ │ │ │ │ ├── arm__nn__activations__q7_8c.html │ │ │ │ │ ├── arm__nn__add__q7_8c.html │ │ │ │ │ ├── arm__nn__depthwise__conv__nt__t__padded__s8_8c.html │ │ │ │ │ ├── arm__nn__depthwise__conv__nt__t__s16_8c.html │ │ │ │ │ ├── arm__nn__depthwise__conv__nt__t__s8_8c.html │ │ │ │ │ ├── arm__nn__depthwise__conv__s8__core_8c.html │ │ │ │ │ ├── arm__nn__mat__mul__core__1x__s8_8c.html │ │ │ │ │ ├── arm__nn__mat__mul__core__4x__s8_8c.html │ │ │ │ │ ├── arm__nn__mat__mul__kernel__s16_8c.html │ │ │ │ │ ├── arm__nn__mat__mult__kernel__q7__q15_8c.html │ │ │ │ │ ├── arm__nn__mat__mult__kernel__q7__q15__reordered_8c.html │ │ │ │ │ ├── arm__nn__mat__mult__kernel__s8__s16_8c.html │ │ │ │ │ ├── arm__nn__mat__mult__nt__t__s8_8c.html │ │ │ │ │ ├── arm__nn__mat__mult__s8_8c.html │ │ │ │ │ ├── arm__nn__math__types_8h.html │ │ │ │ │ ├── arm__nn__mult__q15_8c.html │ │ │ │ │ ├── arm__nn__mult__q7_8c.html │ │ │ │ │ ├── arm__nn__softmax__common__s8_8c.html │ │ │ │ │ ├── arm__nn__tables_8h.html │ │ │ │ │ ├── arm__nn__types_8h.html │ │ │ │ │ ├── arm__nn__vec__mat__mult__t__s16_8c.html │ │ │ │ │ ├── arm__nn__vec__mat__mult__t__s8_8c.html │ │ │ │ │ ├── arm__nn__vec__mat__mult__t__svdf__s8_8c.html │ │ │ │ │ ├── arm__nnfunctions_8h.html │ │ │ │ │ ├── arm__nnsupportfunctions_8h.html │ │ │ │ │ ├── arm__nntables_8c.html │ │ │ │ │ ├── arm__pool__q7__HWC_8c.html │ │ │ │ │ ├── arm__q7__to__q15__no__shift_8c.html │ │ │ │ │ ├── arm__q7__to__q15__reordered__no__shift_8c.html │ │ │ │ │ ├── arm__q7__to__q15__reordered__with__offset_8c.html │ │ │ │ │ ├── arm__q7__to__q15__with__offset_8c.html │ │ │ │ │ ├── arm__relu6__s8_8c.html │ │ │ │ │ ├── arm__relu__q15_8c.html │ │ │ │ │ ├── arm__relu__q7_8c.html │ │ │ │ │ ├── arm__reshape__s8_8c.html │ │ │ │ │ ├── arm__softmax__q15_8c.html │ │ │ │ │ ├── arm__softmax__q7_8c.html │ │ │ │ │ ├── arm__softmax__s16_8c.html │ │ │ │ │ ├── arm__softmax__s8_8c.html │ │ │ │ │ ├── arm__softmax__s8__s16_8c.html │ │ │ │ │ ├── arm__softmax__u8_8c.html │ │ │ │ │ ├── arm__softmax__with__batch__q7_8c.html │ │ │ │ │ ├── arm__svdf__s8_8c.html │ │ │ │ │ ├── arm__svdf__state__s16__s8_8c.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_a.html │ │ │ │ │ ├── globals_c.html │ │ │ │ │ ├── globals_d.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_e.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_f.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_func_a.html │ │ │ │ │ ├── globals_func_c.html │ │ │ │ │ ├── globals_func_d.html │ │ │ │ │ ├── globals_func_e.html │ │ │ │ │ ├── globals_func_f.html │ │ │ │ │ ├── globals_func_l.html │ │ │ │ │ ├── globals_func_m.html │ │ │ │ │ ├── globals_func_n.html │ │ │ │ │ ├── globals_func_q.html │ │ │ │ │ ├── globals_func_r.html │ │ │ │ │ ├── globals_func_s.html │ │ │ │ │ ├── globals_func_t.html │ │ │ │ │ ├── globals_l.html │ │ │ │ │ ├── globals_m.html │ │ │ │ │ ├── globals_n.html │ │ │ │ │ ├── globals_o.html │ │ │ │ │ ├── globals_p.html │ │ │ │ │ ├── globals_q.html │ │ │ │ │ ├── globals_r.html │ │ │ │ │ ├── globals_s.html │ │ │ │ │ ├── globals_t.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── globals_u.html │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ ├── group__Acti.html │ │ │ │ │ ├── group__BasicMath.html │ │ │ │ │ ├── group__Concatenation.html │ │ │ │ │ ├── group__FC.html │ │ │ │ │ ├── group__NNBasicMath.html │ │ │ │ │ ├── group__NNConv.html │ │ │ │ │ ├── group__Pooling.html │ │ │ │ │ ├── group__Reshape.html │ │ │ │ │ ├── group__SVDF.html │ │ │ │ │ ├── group__Softmax.html │ │ │ │ │ ├── group__groupNN.html │ │ │ │ │ ├── group__nndata__convert.html │ │ │ │ │ ├── history_8txt.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── modules.js │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── structarm__nn__double.html │ │ │ │ │ ├── structarm__nn__double.js │ │ │ │ │ ├── structcmsis__nn__activation.html │ │ │ │ │ ├── structcmsis__nn__activation.js │ │ │ │ │ ├── structcmsis__nn__context.html │ │ │ │ │ ├── structcmsis__nn__context.js │ │ │ │ │ ├── structcmsis__nn__conv__params.html │ │ │ │ │ ├── structcmsis__nn__conv__params.js │ │ │ │ │ ├── structcmsis__nn__dims.html │ │ │ │ │ ├── structcmsis__nn__dims.js │ │ │ │ │ ├── structcmsis__nn__dw__conv__params.html │ │ │ │ │ ├── structcmsis__nn__dw__conv__params.js │ │ │ │ │ ├── structcmsis__nn__fc__params.html │ │ │ │ │ ├── structcmsis__nn__fc__params.js │ │ │ │ │ ├── structcmsis__nn__per__channel__quant__params.html │ │ │ │ │ ├── structcmsis__nn__per__channel__quant__params.js │ │ │ │ │ ├── structcmsis__nn__per__tensor__quant__params.html │ │ │ │ │ ├── structcmsis__nn__per__tensor__quant__params.js │ │ │ │ │ ├── structcmsis__nn__pool__params.html │ │ │ │ │ ├── structcmsis__nn__pool__params.js │ │ │ │ │ ├── structcmsis__nn__softmax__lut__s16.html │ │ │ │ │ ├── structcmsis__nn__softmax__lut__s16.js │ │ │ │ │ ├── structcmsis__nn__svdf__params.html │ │ │ │ │ ├── structcmsis__nn__svdf__params.js │ │ │ │ │ ├── structcmsis__nn__tile.html │ │ │ │ │ ├── structcmsis__nn__tile.js │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── todo.html │ │ │ │ │ ├── unionarm__nn__long__long.html │ │ │ │ │ ├── unionarm__nn__long__long.js │ │ │ │ │ ├── unionarm__nnword.html │ │ │ │ │ └── unionarm__nnword.js │ │ │ │ ├── Pack/ │ │ │ │ │ └── html/ │ │ │ │ │ ├── algorithmFunc.html │ │ │ │ │ ├── bash_script.html │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── configWizard.html │ │ │ │ │ ├── coresight_setup.html │ │ │ │ │ ├── cp_Editors.html │ │ │ │ │ ├── cp_PackTutorial.html │ │ │ │ │ ├── cp_Packs.html │ │ │ │ │ ├── cp_ZIPTool.html │ │ │ │ │ ├── createPackPublish.html │ │ │ │ │ ├── createPackUtil.html │ │ │ │ │ ├── dbg_debug_sqns.html │ │ │ │ │ ├── dbg_setup_access.html │ │ │ │ │ ├── dbg_setup_tutorial.html │ │ │ │ │ ├── dbg_sqns_ds.html │ │ │ │ │ ├── dbg_sqns_ide.html │ │ │ │ │ ├── dbg_sqns_uvision.html │ │ │ │ │ ├── debug_description.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── element_dominate.html │ │ │ │ │ ├── element_keywords.html │ │ │ │ │ ├── element_releases.html │ │ │ │ │ ├── element_repository.html │ │ │ │ │ ├── element_requirements_pg.html │ │ │ │ │ ├── element_taxonomy.html │ │ │ │ │ ├── flashAlgorithm.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── packChk.html │ │ │ │ │ ├── packFormat.html │ │ │ │ │ ├── packIndexFile.html │ │ │ │ │ ├── pack_revisionHistory.html │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── pdsc_apis_pg.html │ │ │ │ │ ├── pdsc_boards_pg.html │ │ │ │ │ ├── pdsc_components_pg.html │ │ │ │ │ ├── pdsc_conditions_pg.html │ │ │ │ │ ├── pdsc_devices_pg.html │ │ │ │ │ ├── pdsc_examples_pg.html │ │ │ │ │ ├── pdsc_family_pg.html │ │ │ │ │ ├── pdsc_generators_pg.html │ │ │ │ │ ├── pdsc_package_pg.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── sdf_pg.html │ │ │ │ │ ├── search/ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ └── search.js │ │ │ │ │ └── tabs.css │ │ │ │ ├── RTOS/ │ │ │ │ │ ├── rtos.dxy │ │ │ │ │ └── src/ │ │ │ │ │ ├── RTX/ │ │ │ │ │ │ └── cmsis_os_rtx_extensions.h │ │ │ │ │ ├── cmsis_os.txt │ │ │ │ │ └── images/ │ │ │ │ │ ├── Reference_Section.vsd │ │ │ │ │ └── TimerValues.vsd │ │ │ │ ├── RTOS2/ │ │ │ │ │ ├── rtos.dxy │ │ │ │ │ ├── rtos_CM0-7.dxy │ │ │ │ │ └── src/ │ │ │ │ │ ├── cmsis_os2.txt │ │ │ │ │ ├── cmsis_os2_Event.txt │ │ │ │ │ ├── cmsis_os2_Kernel.txt │ │ │ │ │ ├── cmsis_os2_MemPool.txt │ │ │ │ │ ├── cmsis_os2_Message.txt │ │ │ │ │ ├── cmsis_os2_Migration.txt │ │ │ │ │ ├── cmsis_os2_MigrationGuide.txt │ │ │ │ │ ├── cmsis_os2_Mutex.txt │ │ │ │ │ ├── cmsis_os2_ProcessIsolation.txt │ │ │ │ │ ├── cmsis_os2_Sema.txt │ │ │ │ │ ├── cmsis_os2_Status.txt │ │ │ │ │ ├── cmsis_os2_Thread.txt │ │ │ │ │ ├── cmsis_os2_ThreadFlags.txt │ │ │ │ │ ├── cmsis_os2_Timer.txt │ │ │ │ │ ├── cmsis_os2_Tutorial.txt │ │ │ │ │ ├── cmsis_os2_Wait.txt │ │ │ │ │ ├── cmsis_os2_tick.txt │ │ │ │ │ ├── history.txt │ │ │ │ │ ├── images/ │ │ │ │ │ │ ├── API_Structure.vsd │ │ │ │ │ │ ├── MessageQueue.vsd │ │ │ │ │ │ ├── Mutex.vsd │ │ │ │ │ │ ├── Semaphores.vsd │ │ │ │ │ │ ├── TheoryOfOperation.pptx │ │ │ │ │ │ ├── ThreadStatus.vsd │ │ │ │ │ │ ├── TimerValues.vsd │ │ │ │ │ │ └── cmsis_rtos_file_structure.vsd │ │ │ │ │ ├── mainpage.txt │ │ │ │ │ ├── rtx_evr.txt │ │ │ │ │ ├── rtx_os.txt │ │ │ │ │ └── validation.txt │ │ │ │ ├── SVD/ │ │ │ │ │ ├── src/ │ │ │ │ │ │ ├── ARM_ExampleT0.h │ │ │ │ │ │ ├── ARM_ExampleT0Struct.h │ │ │ │ │ │ ├── images/ │ │ │ │ │ │ │ └── CMSIS_SVD_Schema_Gen.vsd │ │ │ │ │ │ ├── svd.txt │ │ │ │ │ │ └── svd_schema.txt │ │ │ │ │ └── svd.dxy │ │ │ │ ├── Zone/ │ │ │ │ │ ├── src/ │ │ │ │ │ │ ├── ErrorMessages.txt │ │ │ │ │ │ ├── GenDataModel.txt │ │ │ │ │ │ ├── Overview.txt │ │ │ │ │ │ ├── XML_Format.txt │ │ │ │ │ │ └── images/ │ │ │ │ │ │ ├── CMSIS_Zone.pptx │ │ │ │ │ │ ├── Zone.vsdx │ │ │ │ │ │ ├── genmodel.graphml │ │ │ │ │ │ ├── images.odp │ │ │ │ │ │ ├── soc-memorymap.graphml │ │ │ │ │ │ ├── som-decomposition.graphml │ │ │ │ │ │ ├── storagemodel.graphml │ │ │ │ │ │ └── zone-assignment.graphml │ │ │ │ │ └── zone.dxy │ │ │ │ ├── gen_doc.sh │ │ │ │ └── index.html │ │ │ ├── Driver/ │ │ │ │ ├── DriverTemplates/ │ │ │ │ │ ├── Driver_CAN.c │ │ │ │ │ ├── Driver_ETH_MAC.c │ │ │ │ │ ├── Driver_ETH_PHY.c │ │ │ │ │ ├── Driver_Flash.c │ │ │ │ │ ├── Driver_I2C.c │ │ │ │ │ ├── Driver_MCI.c │ │ │ │ │ ├── Driver_NAND.c │ │ │ │ │ ├── Driver_SAI.c │ │ │ │ │ ├── Driver_SPI.c │ │ │ │ │ ├── Driver_Storage.c │ │ │ │ │ ├── Driver_USART.c │ │ │ │ │ ├── Driver_USBD.c │ │ │ │ │ ├── Driver_USBH.c │ │ │ │ │ └── Driver_WiFi.c │ │ │ │ ├── Include/ │ │ │ │ │ ├── Driver_CAN.h │ │ │ │ │ ├── Driver_Common.h │ │ │ │ │ ├── Driver_ETH.h │ │ │ │ │ ├── Driver_ETH_MAC.h │ │ │ │ │ ├── Driver_ETH_PHY.h │ │ │ │ │ ├── Driver_Flash.h │ │ │ │ │ ├── Driver_I2C.h │ │ │ │ │ ├── Driver_MCI.h │ │ │ │ │ ├── Driver_NAND.h │ │ │ │ │ ├── Driver_SAI.h │ │ │ │ │ ├── Driver_SPI.h │ │ │ │ │ ├── Driver_Storage.h │ │ │ │ │ ├── Driver_USART.h │ │ │ │ │ ├── Driver_USB.h │ │ │ │ │ ├── Driver_USBD.h │ │ │ │ │ ├── Driver_USBH.h │ │ │ │ │ └── Driver_WiFi.h │ │ │ │ └── VIO/ │ │ │ │ ├── Include/ │ │ │ │ │ └── cmsis_vio.h │ │ │ │ ├── Source/ │ │ │ │ │ ├── vio.c │ │ │ │ │ └── vio_memory.c │ │ │ │ └── cmsis_vio.scvd │ │ │ ├── NN/ │ │ │ │ └── README.md │ │ │ ├── Pack/ │ │ │ │ └── Bash/ │ │ │ │ ├── Include/ │ │ │ │ │ └── component.h │ │ │ │ ├── License.txt │ │ │ │ ├── MyVendor.MyPack.pdsc.txt │ │ │ │ ├── README.md │ │ │ │ ├── Source/ │ │ │ │ │ └── component.c │ │ │ │ └── gen_pack.sh │ │ │ ├── RTOS/ │ │ │ │ ├── RTX/ │ │ │ │ │ ├── INC/ │ │ │ │ │ │ ├── RTX_CM_lib.h │ │ │ │ │ │ └── cmsis_os.h │ │ │ │ │ ├── LIB/ │ │ │ │ │ │ └── fetch_libs.sh │ │ │ │ │ ├── SRC/ │ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ │ ├── HAL_CM0.c │ │ │ │ │ │ │ ├── HAL_CM3.c │ │ │ │ │ │ │ ├── HAL_CM4.c │ │ │ │ │ │ │ ├── RTX_Lib_CM.uvoptx │ │ │ │ │ │ │ ├── RTX_Lib_CM.uvprojx │ │ │ │ │ │ │ └── SVC_Table.s │ │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ │ ├── HAL_CM0.S │ │ │ │ │ │ │ ├── HAL_CM3.S │ │ │ │ │ │ │ ├── HAL_CM4.S │ │ │ │ │ │ │ ├── RTX_Lib_CM.uvoptx │ │ │ │ │ │ │ ├── RTX_Lib_CM.uvprojx │ │ │ │ │ │ │ └── SVC_Table.S │ │ │ │ │ │ ├── HAL_CM.c │ │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ │ ├── HAL_CM0.s │ │ │ │ │ │ │ ├── HAL_CM3.s │ │ │ │ │ │ │ ├── HAL_CM4.s │ │ │ │ │ │ │ ├── RTX_Lib_CM.ewp │ │ │ │ │ │ │ ├── RTX_Lib_CM.eww │ │ │ │ │ │ │ └── SVC_Table.s │ │ │ │ │ │ ├── RTX_Config.h │ │ │ │ │ │ ├── rt_CMSIS.c │ │ │ │ │ │ ├── rt_Event.c │ │ │ │ │ │ ├── rt_Event.h │ │ │ │ │ │ ├── rt_HAL_CM.h │ │ │ │ │ │ ├── rt_List.c │ │ │ │ │ │ ├── rt_List.h │ │ │ │ │ │ ├── rt_Mailbox.c │ │ │ │ │ │ ├── rt_Mailbox.h │ │ │ │ │ │ ├── rt_MemBox.c │ │ │ │ │ │ ├── rt_MemBox.h │ │ │ │ │ │ ├── rt_Memory.c │ │ │ │ │ │ ├── rt_Memory.h │ │ │ │ │ │ ├── rt_Mutex.c │ │ │ │ │ │ ├── rt_Mutex.h │ │ │ │ │ │ ├── rt_Robin.c │ │ │ │ │ │ ├── rt_Robin.h │ │ │ │ │ │ ├── rt_Semaphore.c │ │ │ │ │ │ ├── rt_Semaphore.h │ │ │ │ │ │ ├── rt_System.c │ │ │ │ │ │ ├── rt_System.h │ │ │ │ │ │ ├── rt_Task.c │ │ │ │ │ │ ├── rt_Task.h │ │ │ │ │ │ ├── rt_Time.c │ │ │ │ │ │ ├── rt_Time.h │ │ │ │ │ │ ├── rt_Timer.c │ │ │ │ │ │ ├── rt_Timer.h │ │ │ │ │ │ └── rt_TypeDef.h │ │ │ │ │ ├── Templates/ │ │ │ │ │ │ └── RTX_Conf_CM.c │ │ │ │ │ └── UserCodeTemplates/ │ │ │ │ │ ├── MailQueue.c │ │ │ │ │ ├── MemPool.c │ │ │ │ │ ├── MsgQueue.c │ │ │ │ │ ├── Mutex.c │ │ │ │ │ ├── Semaphore.c │ │ │ │ │ ├── Thread.c │ │ │ │ │ ├── Timer.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── osObjects.h │ │ │ │ └── Template/ │ │ │ │ ├── CPP/ │ │ │ │ │ ├── Mail.h │ │ │ │ │ ├── MemoryPool.h │ │ │ │ │ ├── Mutex.cpp │ │ │ │ │ ├── Mutex.h │ │ │ │ │ ├── Queue.h │ │ │ │ │ ├── RtosTimer.cpp │ │ │ │ │ ├── RtosTimer.h │ │ │ │ │ ├── Semaphore.cpp │ │ │ │ │ ├── Semaphore.h │ │ │ │ │ ├── Thread.cpp │ │ │ │ │ ├── Thread.h │ │ │ │ │ └── rtos.h │ │ │ │ ├── Hist.txt │ │ │ │ ├── Template.uvopt │ │ │ │ ├── Template.uvproj │ │ │ │ ├── cmsis_os.h │ │ │ │ ├── my_objects.h │ │ │ │ ├── os_sample.c │ │ │ │ ├── os_sample1.c │ │ │ │ ├── startup_LPC177x_8x.s │ │ │ │ └── system_LPC177x_8x.c │ │ │ ├── RTOS2/ │ │ │ │ ├── Include/ │ │ │ │ │ ├── cmsis_os2.h │ │ │ │ │ └── os_tick.h │ │ │ │ ├── RTX/ │ │ │ │ │ ├── Config/ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ ├── RTX_Config.h │ │ │ │ │ │ └── handlers.c │ │ │ │ │ ├── Examples/ │ │ │ │ │ │ ├── Blinky/ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── Blinky.c │ │ │ │ │ │ │ ├── Blinky.uvguix │ │ │ │ │ │ │ ├── Blinky.uvoptx │ │ │ │ │ │ │ ├── Blinky.uvprojx │ │ │ │ │ │ │ └── RTE/ │ │ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ │ │ └── RTX_Config.h │ │ │ │ │ │ │ ├── Compiler/ │ │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM3/ │ │ │ │ │ │ │ ├── ARMCM3_ac6.sct │ │ │ │ │ │ │ ├── startup_ARMCM3.c │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── MemPool/ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── MemPool.uvguix │ │ │ │ │ │ │ ├── MemPool.uvoptx │ │ │ │ │ │ │ ├── MemPool.uvprojx │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ │ │ │ └── RTX_Config.h │ │ │ │ │ │ │ │ ├── Compiler/ │ │ │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ └── ARMCM3/ │ │ │ │ │ │ │ │ ├── ARMCM3_ac6.sct │ │ │ │ │ │ │ │ ├── startup_ARMCM3.c │ │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ ├── Migration/ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── Blinky.c │ │ │ │ │ │ │ ├── Blinky.uvguix │ │ │ │ │ │ │ ├── Blinky.uvoptx │ │ │ │ │ │ │ ├── Blinky.uvprojx │ │ │ │ │ │ │ └── RTE/ │ │ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ │ │ └── RTX_Config.h │ │ │ │ │ │ │ ├── Compiler/ │ │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ └── ARMCM3/ │ │ │ │ │ │ │ ├── ARMCM3_ac6.sct │ │ │ │ │ │ │ ├── startup_ARMCM3.c │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ ├── MsgQueue/ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── MsqQueue.uvguix │ │ │ │ │ │ │ ├── MsqQueue.uvoptx │ │ │ │ │ │ │ ├── MsqQueue.uvprojx │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ │ │ │ └── RTX_Config.h │ │ │ │ │ │ │ │ ├── Compiler/ │ │ │ │ │ │ │ │ │ └── EventRecorderConf.h │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ └── ARMCM3/ │ │ │ │ │ │ │ │ ├── ARMCM3_ac6.sct │ │ │ │ │ │ │ │ ├── startup_ARMCM3.c │ │ │ │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ │ │ │ └── main.c │ │ │ │ │ │ └── TrustZoneV8M/ │ │ │ │ │ │ ├── NoRTOS/ │ │ │ │ │ │ │ ├── ARMCM33_DSP_FP_TZ_config.txt │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── CM33_ns/ │ │ │ │ │ │ │ │ ├── CM33_ns.uvguix │ │ │ │ │ │ │ │ ├── CM33_ns.uvoptx │ │ │ │ │ │ │ │ ├── CM33_ns.uvprojx │ │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ │ │ ├── ARMCM33_AC6.sct │ │ │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ │ │ └── main_ns.c │ │ │ │ │ │ │ ├── CM33_s/ │ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ │ ├── CM33_s.uvguix │ │ │ │ │ │ │ │ ├── CM33_s.uvoptx │ │ │ │ │ │ │ │ ├── CM33_s.uvprojx │ │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ │ │ ├── ARMCM33_ac6_s.sct │ │ │ │ │ │ │ │ │ ├── partition_ARMCM33.h │ │ │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ │ │ ├── interface.c │ │ │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ │ │ └── main_s.c │ │ │ │ │ │ │ ├── Debug.ini │ │ │ │ │ │ │ ├── NoRTOS.uvmpw │ │ │ │ │ │ │ └── NoRTOS.uvmpw.uvgui │ │ │ │ │ │ ├── RTOS/ │ │ │ │ │ │ │ ├── ARMCM33_DSP_FP_TZ_config.txt │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── CM33_ns/ │ │ │ │ │ │ │ │ ├── CM33_ns.uvguix │ │ │ │ │ │ │ │ ├── CM33_ns.uvoptx │ │ │ │ │ │ │ │ ├── CM33_ns.uvprojx │ │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ │ │ │ │ └── RTX_Config.h │ │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ │ │ ├── ARMCM33_AC6.sct │ │ │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ │ │ └── main_ns.c │ │ │ │ │ │ │ ├── CM33_s/ │ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ │ ├── CM33_s.uvguix │ │ │ │ │ │ │ │ ├── CM33_s.uvoptx │ │ │ │ │ │ │ │ ├── CM33_s.uvprojx │ │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ │ │ ├── ARMCM33_ac6_s.sct │ │ │ │ │ │ │ │ │ ├── partition_ARMCM33.h │ │ │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ │ │ ├── interface.c │ │ │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ │ │ ├── main_s.c │ │ │ │ │ │ │ │ └── tz_context.c │ │ │ │ │ │ │ ├── Debug.ini │ │ │ │ │ │ │ ├── RTOS.uvmpw │ │ │ │ │ │ │ └── RTOS.uvmpw.uvgui │ │ │ │ │ │ └── RTOS_Faults/ │ │ │ │ │ │ ├── ARMCM33_DSP_FP_TZ_config.txt │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── CM33_ns/ │ │ │ │ │ │ │ ├── CM33_ns.uvguix │ │ │ │ │ │ │ ├── CM33_ns.uvoptx │ │ │ │ │ │ │ ├── CM33_ns.uvprojx │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ ├── CMSIS/ │ │ │ │ │ │ │ │ │ ├── RTX_Config.c │ │ │ │ │ │ │ │ │ └── RTX_Config.h │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ │ ├── ARMCM33_AC6.sct │ │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ │ └── main_ns.c │ │ │ │ │ │ ├── CM33_s/ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── CM33_s.uvguix │ │ │ │ │ │ │ ├── CM33_s.uvoptx │ │ │ │ │ │ │ ├── CM33_s.uvprojx │ │ │ │ │ │ │ ├── Hardfault.c │ │ │ │ │ │ │ ├── Hardfault.h │ │ │ │ │ │ │ ├── IncidentLog_s.c │ │ │ │ │ │ │ ├── IncidentLog_s.h │ │ │ │ │ │ │ ├── RTE/ │ │ │ │ │ │ │ │ └── Device/ │ │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ/ │ │ │ │ │ │ │ │ ├── ARMCM33_ac6_s.sct │ │ │ │ │ │ │ │ ├── partition_ARMCM33.h │ │ │ │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ │ │ │ ├── SysTick_s.c │ │ │ │ │ │ │ ├── SysTick_s.h │ │ │ │ │ │ │ ├── interface.c │ │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ │ ├── main_s.c │ │ │ │ │ │ │ └── tz_context.c │ │ │ │ │ │ ├── Debug.ini │ │ │ │ │ │ ├── RTOS_Faults.uvmpw │ │ │ │ │ │ └── RTOS_Faults.uvmpw.uvgui │ │ │ │ │ ├── Examples_IAR/ │ │ │ │ │ │ ├── Blinky/ │ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ │ ├── Blinky/ │ │ │ │ │ │ │ │ ├── Blinky.ewd │ │ │ │ │ │ │ │ ├── Blinky.ewp │ │ │ │ │ │ │ │ └── settings/ │ │ │ │ │ │ │ │ ├── Blinky.crun │ │ │ │ │ │ │ │ ├── Blinky.dbgdt │ │ │ │ │ │ │ │ └── Blinky.dnx │ │ │ │ │ │ │ └── Blinky.c │ │ │ │ │ │ └── MsgQueue/ │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── MsgQueue/ │ │ │ │ │ │ │ ├── MsgQueue.ewd │ │ │ │ │ │ │ ├── MsgQueue.ewp │ │ │ │ │ │ │ └── settings/ │ │ │ │ │ │ │ ├── MsgQueue.crun │ │ │ │ │ │ │ ├── MsgQueue.dbgdt │ │ │ │ │ │ │ └── MsgQueue.dnx │ │ │ │ │ │ └── main.c │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── rtx_def.h │ │ │ │ │ │ ├── rtx_evr.h │ │ │ │ │ │ └── rtx_os.h │ │ │ │ │ ├── Include1/ │ │ │ │ │ │ └── cmsis_os.h │ │ │ │ │ ├── Library/ │ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ │ └── MDK/ │ │ │ │ │ │ │ ├── Lint/ │ │ │ │ │ │ │ │ └── MISRA_C_2012_Config.lnt │ │ │ │ │ │ │ ├── RTX_CM.uvoptx │ │ │ │ │ │ │ └── RTX_CM.uvprojx │ │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ │ └── MDK/ │ │ │ │ │ │ │ ├── RTX_CM.uvoptx │ │ │ │ │ │ │ └── RTX_CM.uvprojx │ │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ │ └── IDE/ │ │ │ │ │ │ │ ├── RTE_Components.h │ │ │ │ │ │ │ ├── RTX_CM.ewp │ │ │ │ │ │ │ └── RTX_CM.eww │ │ │ │ │ │ ├── RTX_Config.h │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── cmsis_os1.c │ │ │ │ │ │ └── fetch_libs.sh │ │ │ │ │ ├── RTX5.scvd │ │ │ │ │ ├── Source/ │ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ │ ├── irq_armv6m.s │ │ │ │ │ │ │ ├── irq_armv7a.s │ │ │ │ │ │ │ └── irq_armv7m.s │ │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ │ ├── irq_armv6m.S │ │ │ │ │ │ │ ├── irq_armv7a.S │ │ │ │ │ │ │ ├── irq_armv7m.S │ │ │ │ │ │ │ ├── irq_armv8mbl.S │ │ │ │ │ │ │ └── irq_armv8mml.S │ │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ │ ├── irq_armv6m.s │ │ │ │ │ │ │ ├── irq_armv7a.s │ │ │ │ │ │ │ ├── irq_armv7m.s │ │ │ │ │ │ │ ├── irq_armv8mbl.s │ │ │ │ │ │ │ └── irq_armv8mml.s │ │ │ │ │ │ ├── rtx_core_c.h │ │ │ │ │ │ ├── rtx_core_ca.h │ │ │ │ │ │ ├── rtx_core_cm.h │ │ │ │ │ │ ├── rtx_delay.c │ │ │ │ │ │ ├── rtx_evflags.c │ │ │ │ │ │ ├── rtx_evr.c │ │ │ │ │ │ ├── rtx_kernel.c │ │ │ │ │ │ ├── rtx_lib.c │ │ │ │ │ │ ├── rtx_lib.h │ │ │ │ │ │ ├── rtx_memory.c │ │ │ │ │ │ ├── rtx_mempool.c │ │ │ │ │ │ ├── rtx_msgqueue.c │ │ │ │ │ │ ├── rtx_mutex.c │ │ │ │ │ │ ├── rtx_semaphore.c │ │ │ │ │ │ ├── rtx_system.c │ │ │ │ │ │ ├── rtx_thread.c │ │ │ │ │ │ └── rtx_timer.c │ │ │ │ │ └── Template/ │ │ │ │ │ ├── Events.c │ │ │ │ │ ├── MemPool.c │ │ │ │ │ ├── MsgQueue.c │ │ │ │ │ ├── Mutex.c │ │ │ │ │ ├── Semaphore.c │ │ │ │ │ ├── Thread.c │ │ │ │ │ ├── Timer.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── svc_user.c │ │ │ │ ├── Source/ │ │ │ │ │ ├── os_systick.c │ │ │ │ │ ├── os_tick_gtim.c │ │ │ │ │ └── os_tick_ptim.c │ │ │ │ └── Template/ │ │ │ │ ├── cmsis_os.h │ │ │ │ └── cmsis_os1.c │ │ │ └── Utilities/ │ │ │ ├── ARM_Example.h │ │ │ ├── ARM_Example.svd │ │ │ ├── CMSIS-SVD.xsd │ │ │ ├── check_header.sh │ │ │ ├── check_links.sh │ │ │ ├── fetch_devtools.sh │ │ │ └── gen_pack.sh │ │ ├── Device/ │ │ │ ├── ARM/ │ │ │ │ ├── ARMCA5/ │ │ │ │ │ ├── Config/ │ │ │ │ │ │ ├── mem_ARMCA5.h │ │ │ │ │ │ └── system_ARMCA5.h │ │ │ │ │ ├── Include/ │ │ │ │ │ │ └── ARMCA5.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── AC5/ │ │ │ │ │ │ ├── ARMCA5.sct │ │ │ │ │ │ └── startup_ARMCA5.c │ │ │ │ │ ├── AC6/ │ │ │ │ │ │ ├── ARMCA5.sct │ │ │ │ │ │ └── startup_ARMCA5.c │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── ARMCA5.ld │ │ │ │ │ │ ├── ARMCA5.sct │ │ │ │ │ │ └── startup_ARMCA5.c │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ ├── ARMCA5.icf │ │ │ │ │ │ └── startup_ARMCA5.s │ │ │ │ │ ├── mmu_ARMCA5.c │ │ │ │ │ └── system_ARMCA5.c │ │ │ │ ├── ARMCA7/ │ │ │ │ │ ├── Config/ │ │ │ │ │ │ ├── mem_ARMCA7.h │ │ │ │ │ │ └── system_ARMCA7.h │ │ │ │ │ ├── Include/ │ │ │ │ │ │ └── ARMCA7.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── AC5/ │ │ │ │ │ │ ├── ARMCA7.sct │ │ │ │ │ │ └── startup_ARMCA7.c │ │ │ │ │ ├── AC6/ │ │ │ │ │ │ ├── ARMCA7.sct │ │ │ │ │ │ └── startup_ARMCA7.c │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── ARMCA7.ld │ │ │ │ │ │ └── startup_ARMCA7.c │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ ├── ARMCA7.icf │ │ │ │ │ │ └── startup_ARMCA7.s │ │ │ │ │ ├── mmu_ARMCA7.c │ │ │ │ │ └── system_ARMCA7.c │ │ │ │ ├── ARMCA9/ │ │ │ │ │ ├── Config/ │ │ │ │ │ │ ├── mem_ARMCA9.h │ │ │ │ │ │ └── system_ARMCA9.h │ │ │ │ │ ├── Include/ │ │ │ │ │ │ └── ARMCA9.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── AC5/ │ │ │ │ │ │ ├── ARMCA9.sct │ │ │ │ │ │ └── startup_ARMCA9.c │ │ │ │ │ ├── AC6/ │ │ │ │ │ │ ├── ARMCA9.sct │ │ │ │ │ │ └── startup_ARMCA9.c │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── ARMCA9.ld │ │ │ │ │ │ └── startup_ARMCA9.c │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ ├── ARMCA9.icf │ │ │ │ │ │ └── startup_ARMCA9.s │ │ │ │ │ ├── mmu_ARMCA9.c │ │ │ │ │ └── system_ARMCA9.c │ │ │ │ ├── ARMCM0/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM0.h │ │ │ │ │ │ └── system_ARMCM0.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM0_ac5.sct │ │ │ │ │ │ ├── ARMCM0_ac6.sct │ │ │ │ │ │ └── startup_ARMCM0.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM0.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM0.s │ │ │ │ │ ├── startup_ARMCM0.c │ │ │ │ │ └── system_ARMCM0.c │ │ │ │ ├── ARMCM0plus/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM0plus.h │ │ │ │ │ │ ├── ARMCM0plus_MPU.h │ │ │ │ │ │ └── system_ARMCM0plus.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM0plus_ac5.sct │ │ │ │ │ │ ├── ARMCM0plus_ac6.sct │ │ │ │ │ │ └── startup_ARMCM0plus.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM0plus.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM0plus.s │ │ │ │ │ ├── startup_ARMCM0plus.c │ │ │ │ │ └── system_ARMCM0plus.c │ │ │ │ ├── ARMCM1/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM1.h │ │ │ │ │ │ └── system_ARMCM1.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM1_ac5.sct │ │ │ │ │ │ ├── ARMCM1_ac6.sct │ │ │ │ │ │ └── startup_ARMCM1.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM1.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM1.s │ │ │ │ │ ├── startup_ARMCM1.c │ │ │ │ │ └── system_ARMCM1.c │ │ │ │ ├── ARMCM23/ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ └── ARMv8MBL.dbgconf │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM23.h │ │ │ │ │ │ ├── ARMCM23_TZ.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMCM23.h │ │ │ │ │ │ └── system_ARMCM23.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM23_ac6.sct │ │ │ │ │ │ ├── ARMCM23_ac6_s.sct │ │ │ │ │ │ └── startup_ARMCM23.S │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM23.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM23.s │ │ │ │ │ ├── startup_ARMCM23.c │ │ │ │ │ └── system_ARMCM23.c │ │ │ │ ├── ARMCM3/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM3.h │ │ │ │ │ │ └── system_ARMCM3.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM3_ac5.sct │ │ │ │ │ │ ├── ARMCM3_ac6.sct │ │ │ │ │ │ └── startup_ARMCM3.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM3.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM3.s │ │ │ │ │ ├── startup_ARMCM3.c │ │ │ │ │ └── system_ARMCM3.c │ │ │ │ ├── ARMCM33/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM33.h │ │ │ │ │ │ ├── ARMCM33_DSP_FP.h │ │ │ │ │ │ ├── ARMCM33_DSP_FP_TZ.h │ │ │ │ │ │ ├── ARMCM33_TZ.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMCM33.h │ │ │ │ │ │ └── system_ARMCM33.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM33_ac6.sct │ │ │ │ │ │ ├── ARMCM33_ac6_s.sct │ │ │ │ │ │ └── startup_ARMCM33.S │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM33.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM33.s │ │ │ │ │ ├── startup_ARMCM33.c │ │ │ │ │ └── system_ARMCM33.c │ │ │ │ ├── ARMCM35P/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM35P.h │ │ │ │ │ │ ├── ARMCM35P_DSP_FP.h │ │ │ │ │ │ ├── ARMCM35P_DSP_FP_TZ.h │ │ │ │ │ │ ├── ARMCM35P_TZ.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMCM35P.h │ │ │ │ │ │ └── system_ARMCM35P.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM35P_ac6.sct │ │ │ │ │ │ ├── ARMCM35P_ac6_s.sct │ │ │ │ │ │ └── startup_ARMCM35P.S │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM35P.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM35P.s │ │ │ │ │ ├── startup_ARMCM35P.c │ │ │ │ │ └── system_ARMCM35P.c │ │ │ │ ├── ARMCM4/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM4.h │ │ │ │ │ │ ├── ARMCM4_FP.h │ │ │ │ │ │ └── system_ARMCM4.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM4_ac5.sct │ │ │ │ │ │ ├── ARMCM4_ac6.sct │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM4.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── startup_ARMCM4.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── ARMCM55/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM55.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMCM55.h │ │ │ │ │ │ └── system_ARMCM55.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM55_ac6.sct │ │ │ │ │ │ └── ARMCM55_ac6_s.sct │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ ├── startup_ARMCM55.c │ │ │ │ │ └── system_ARMCM55.c │ │ │ │ ├── ARMCM7/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM7.h │ │ │ │ │ │ ├── ARMCM7_DP.h │ │ │ │ │ │ ├── ARMCM7_SP.h │ │ │ │ │ │ └── system_ARMCM7.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM7_ac5.sct │ │ │ │ │ │ ├── ARMCM7_ac6.sct │ │ │ │ │ │ └── startup_ARMCM7.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMCM7.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMCM7.s │ │ │ │ │ ├── startup_ARMCM7.c │ │ │ │ │ └── system_ARMCM7.c │ │ │ │ ├── ARMCM85/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMCM85.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMCM85.h │ │ │ │ │ │ └── system_ARMCM85.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMCM85_ac6.sct │ │ │ │ │ │ └── ARMCM85_ac6_s.sct │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ ├── startup_ARMCM85.c │ │ │ │ │ └── system_ARMCM85.c │ │ │ │ ├── ARMSC000/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMSC000.h │ │ │ │ │ │ └── system_ARMSC000.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMSC000_ac5.sct │ │ │ │ │ │ ├── ARMSC000_ac6.sct │ │ │ │ │ │ └── startup_ARMSC000.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMSC000.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMSC000.s │ │ │ │ │ ├── startup_ARMSC000.c │ │ │ │ │ └── system_ARMSC000.c │ │ │ │ ├── ARMSC300/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMSC300.h │ │ │ │ │ │ └── system_ARMSC300.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMSC300_ac5.sct │ │ │ │ │ │ ├── ARMSC300_ac6.sct │ │ │ │ │ │ └── startup_ARMSC300.s │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMSC300.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMSC300.s │ │ │ │ │ ├── startup_ARMSC300.c │ │ │ │ │ └── system_ARMSC300.c │ │ │ │ ├── ARMv81MML/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMv81MML_DSP_DP_MVE_FP.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMv81MML.h │ │ │ │ │ │ └── system_ARMv81MML.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMv81MML_ac6.sct │ │ │ │ │ │ └── ARMv81MML_ac6_s.sct │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ ├── startup_ARMv81MML.c │ │ │ │ │ └── system_ARMv81MML.c │ │ │ │ ├── ARMv8MBL/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMv8MBL.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMv8MBL.h │ │ │ │ │ │ └── system_ARMv8MBL.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMv8MBL_ac6.sct │ │ │ │ │ │ ├── ARMv8MBL_ac6_s.sct │ │ │ │ │ │ └── startup_ARMv8MBL.S │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMv8MBL.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMv8MBL.s │ │ │ │ │ ├── startup_ARMv8MBL.c │ │ │ │ │ └── system_ARMv8MBL.c │ │ │ │ ├── ARMv8MML/ │ │ │ │ │ ├── Include/ │ │ │ │ │ │ ├── ARMv8MML.h │ │ │ │ │ │ ├── ARMv8MML_DP.h │ │ │ │ │ │ ├── ARMv8MML_DSP.h │ │ │ │ │ │ ├── ARMv8MML_DSP_DP.h │ │ │ │ │ │ ├── ARMv8MML_DSP_SP.h │ │ │ │ │ │ ├── ARMv8MML_SP.h │ │ │ │ │ │ ├── Template/ │ │ │ │ │ │ │ └── partition_ARMv8MML.h │ │ │ │ │ │ └── system_ARMv8MML.h │ │ │ │ │ └── Source/ │ │ │ │ │ ├── ARM/ │ │ │ │ │ │ ├── ARMv8MML_ac6.sct │ │ │ │ │ │ ├── ARMv8MML_ac6_s.sct │ │ │ │ │ │ └── startup_ARMv8MML.S │ │ │ │ │ ├── GCC/ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ └── startup_ARMv8MML.S │ │ │ │ │ ├── IAR/ │ │ │ │ │ │ └── startup_ARMv8MML.s │ │ │ │ │ ├── startup_ARMv8MML.c │ │ │ │ │ └── system_ARMv8MML.c │ │ │ │ └── SVD/ │ │ │ │ ├── ARMCM0.svd │ │ │ │ ├── ARMCM0P.svd │ │ │ │ ├── ARMCM1.svd │ │ │ │ ├── ARMCM23.svd │ │ │ │ ├── ARMCM3.svd │ │ │ │ ├── ARMCM33.svd │ │ │ │ ├── ARMCM35P.svd │ │ │ │ ├── ARMCM4.svd │ │ │ │ ├── ARMCM55.svd │ │ │ │ ├── ARMCM7.svd │ │ │ │ ├── ARMCM85.svd │ │ │ │ ├── ARMSC000.svd │ │ │ │ ├── ARMSC300.svd │ │ │ │ ├── ARMv8MBL.svd │ │ │ │ └── ARMv8MML.svd │ │ │ ├── _Template_Flash/ │ │ │ │ ├── Abstract.txt │ │ │ │ ├── FlashDev.c │ │ │ │ ├── FlashOS.h │ │ │ │ ├── FlashPrg.c │ │ │ │ ├── NewDevice.uvguix │ │ │ │ ├── NewDevice.uvoptx │ │ │ │ ├── NewDevice.uvprojx │ │ │ │ └── Target.lin │ │ │ └── _Template_Vendor/ │ │ │ ├── ReadMe.txt │ │ │ └── Vendor/ │ │ │ ├── Device/ │ │ │ │ ├── Include/ │ │ │ │ │ ├── Device.h │ │ │ │ │ ├── Template/ │ │ │ │ │ │ └── partition_Device.h │ │ │ │ │ └── system_Device.h │ │ │ │ └── Source/ │ │ │ │ ├── ARM/ │ │ │ │ │ ├── Device_ac5.sct │ │ │ │ │ ├── Device_ac6.sct │ │ │ │ │ ├── startup_Device_ac5.s │ │ │ │ │ ├── startup_Device_ac5_noSct.s │ │ │ │ │ └── startup_Device_ac6.S │ │ │ │ ├── GCC/ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ └── startup_Device.S │ │ │ │ ├── IAR/ │ │ │ │ │ └── startup_Device.s │ │ │ │ ├── startup_Device.c │ │ │ │ └── system_Device.c │ │ │ └── Device_A/ │ │ │ ├── Include/ │ │ │ │ ├── Device.h │ │ │ │ ├── mem_Device.h │ │ │ │ └── system_Device.h │ │ │ └── Source/ │ │ │ ├── ARM/ │ │ │ │ ├── Device.sct │ │ │ │ └── startup_Device.c │ │ │ ├── mmu_Device.c │ │ │ └── system_Device.c │ │ ├── Jenkinsfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── docker/ │ │ │ ├── dockerfile │ │ │ ├── dockerfile.gnu │ │ │ ├── getDependencies.sh │ │ │ ├── requirements.txt │ │ │ └── rtebuild/ │ │ │ ├── armcc.rtebuild │ │ │ ├── armclang.rtebuild │ │ │ ├── armclang_ltm.rtebuild │ │ │ ├── gcc.rtebuild │ │ │ └── toolchain.rtebuild │ │ └── linter.py │ └── printf/ │ ├── .gitattributes │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── printf.c │ ├── printf.h │ └── test/ │ ├── catch.hpp │ └── test_suite.cpp ├── firmware.ld ├── font.c ├── font.h ├── frequencies.c ├── frequencies.h ├── function.json ├── functions.c ├── functions.h ├── fw-pack.py ├── gen.py ├── genJson.py ├── h --force-with-lease origin main ├── hardware/ │ └── dp32g030/ │ ├── aes.def │ ├── crc.def │ ├── dma.def │ ├── flash.def │ ├── gpio.def │ ├── pmu.def │ ├── portcon.def │ ├── saradc.def │ ├── spi.def │ ├── syscon.def │ └── uart.def ├── helper/ │ ├── battery.c │ ├── battery.h │ ├── boot.c │ ├── boot.h │ ├── rds.c │ └── rds.h ├── init.c ├── main.c ├── misc.c ├── misc.h ├── openocd-win/ │ ├── README.md │ ├── bin/ │ │ └── openocd │ └── openocd/ │ ├── OpenULINK/ │ │ └── ulink_firmware.hex │ ├── README.md │ ├── angie/ │ │ └── angie_bitstream.bit │ ├── bin/ │ │ └── openocd │ ├── contrib/ │ │ ├── 60-openocd.rules │ │ └── libdcc/ │ │ ├── README │ │ ├── dcc_stdio.c │ │ ├── dcc_stdio.h │ │ └── example.c │ ├── distro-info/ │ │ ├── CHANGELOG.md │ │ ├── licenses/ │ │ │ ├── autoconf-2.71/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.EXCEPTION │ │ │ │ ├── COPYINGv3 │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ └── THANKS │ │ │ ├── automake-1.16.5/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── NEWS │ │ │ │ ├── NEWS-2.0 │ │ │ │ ├── README │ │ │ │ └── THANKS │ │ │ ├── hidapi-hidapi-0.14.0/ │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ └── README.md │ │ │ ├── libftdi1-1.5/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING-CMAKE-SCRIPTS │ │ │ │ ├── COPYING.GPL │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.build │ │ │ │ └── README.mingw │ │ │ ├── libiconv-1.17/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.LIB │ │ │ │ ├── DEPENDENCIES │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ └── THANKS │ │ │ ├── libtool-2.4.7/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ └── THANKS │ │ │ ├── libusb-1.0.26/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── NEWS │ │ │ │ └── README │ │ │ ├── openocd-0.12.0/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── AUTHORS.ChangeLog │ │ │ │ ├── COPYING │ │ │ │ ├── NEWS │ │ │ │ ├── NEWS-0.10.0 │ │ │ │ ├── NEWS-0.11.0 │ │ │ │ ├── NEWS-0.12.0 │ │ │ │ ├── NEWS-0.2.0 │ │ │ │ ├── NEWS-0.3.0 │ │ │ │ ├── NEWS-0.4.0 │ │ │ │ ├── NEWS-0.5.0 │ │ │ │ ├── NEWS-0.6.0 │ │ │ │ ├── NEWS-0.7.0 │ │ │ │ ├── NEWS-0.8.0 │ │ │ │ ├── NEWS-0.9.0 │ │ │ │ ├── README │ │ │ │ ├── README.Windows │ │ │ │ ├── README.macOS │ │ │ │ ├── exceptions/ │ │ │ │ │ └── eCos-exception-2.0 │ │ │ │ ├── license-rules.txt │ │ │ │ ├── preferred/ │ │ │ │ │ ├── BSD-1-Clause │ │ │ │ │ ├── BSD-2-Clause │ │ │ │ │ ├── BSD-2-Clause-Views │ │ │ │ │ ├── BSD-3-Clause │ │ │ │ │ ├── BSD-Source-Code │ │ │ │ │ ├── GFDL-1.2 │ │ │ │ │ ├── GPL-2.0 │ │ │ │ │ ├── LGPL-2.1 │ │ │ │ │ ├── MIT │ │ │ │ │ └── gfdl-1.2.texi.readme │ │ │ │ └── stand-alone/ │ │ │ │ └── GPL-3.0 │ │ │ ├── pkg-config-0.29.2/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ └── README.win32 │ │ │ └── texinfo-7.0.3/ │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── NEWS │ │ │ ├── README │ │ │ └── README-hacking │ │ └── scripts/ │ │ ├── README-OUT.md │ │ ├── VERSION │ │ ├── application.sh │ │ ├── build.sh │ │ ├── dependencies/ │ │ │ └── openocd.sh │ │ ├── templates/ │ │ │ ├── body-github-release-liquid.md │ │ │ ├── body-jekyll-release-post-part-1-liquid.md │ │ │ └── body-jekyll-release-post-part-2-liquid.md │ │ ├── test.sh │ │ ├── tests/ │ │ │ └── run.sh │ │ └── versioning.sh │ └── scripts/ │ ├── bitsbytes.tcl │ ├── board/ │ │ ├── 8devices-lima.cfg │ │ ├── actux3.cfg │ │ ├── adapteva_parallella1.cfg │ │ ├── adsp-sc584-ezbrd.cfg │ │ ├── alphascale_asm9260_ek.cfg │ │ ├── altera_sockit.cfg │ │ ├── am3517evm.cfg │ │ ├── ampere_emag8180.cfg │ │ ├── ampere_qs_mq_1s.cfg │ │ ├── ampere_qs_mq_2s.cfg │ │ ├── arm_evaluator7t.cfg │ │ ├── arm_musca_a.cfg │ │ ├── arty_s7.cfg │ │ ├── asus-rt-n16.cfg │ │ ├── asus-rt-n66u.cfg │ │ ├── at91cap7a-stk-sdram.cfg │ │ ├── at91eb40a.cfg │ │ ├── at91rm9200-dk.cfg │ │ ├── at91rm9200-ek.cfg │ │ ├── at91sam9261-ek.cfg │ │ ├── at91sam9263-ek.cfg │ │ ├── at91sam9g20-ek.cfg │ │ ├── atmel_at91sam7s-ek.cfg │ │ ├── atmel_at91sam9260-ek.cfg │ │ ├── atmel_at91sam9rl-ek.cfg │ │ ├── atmel_sam3n_ek.cfg │ │ ├── atmel_sam3s_ek.cfg │ │ ├── atmel_sam3u_ek.cfg │ │ ├── atmel_sam3x_ek.cfg │ │ ├── atmel_sam4e_ek.cfg │ │ ├── atmel_sam4l8_xplained_pro.cfg │ │ ├── atmel_sam4s_ek.cfg │ │ ├── atmel_sam4s_xplained_pro.cfg │ │ ├── atmel_samc20_xplained_pro.cfg │ │ ├── atmel_samc21_xplained_pro.cfg │ │ ├── atmel_samd10_xplained_mini.cfg │ │ ├── atmel_samd11_xplained_pro.cfg │ │ ├── atmel_samd20_xplained_pro.cfg │ │ ├── atmel_samd21_xplained_pro.cfg │ │ ├── atmel_same70_xplained.cfg │ │ ├── atmel_samg53_xplained_pro.cfg │ │ ├── atmel_samg55_xplained_pro.cfg │ │ ├── atmel_saml21_xplained_pro.cfg │ │ ├── atmel_samr21_xplained_pro.cfg │ │ ├── atmel_samv71_xplained_ultra.cfg │ │ ├── avnet_ultrazed-eg.cfg │ │ ├── balloon3-cpu.cfg │ │ ├── bcm28155_ap.cfg │ │ ├── bemicro_cycloneiii.cfg │ │ ├── bluefield.cfg │ │ ├── bt-homehubv1.cfg │ │ ├── calao-usb-a9260.cfg │ │ ├── calao-usb-a9g20-c01.cfg │ │ ├── certuspro_evaluation.cfg │ │ ├── colibri.cfg │ │ ├── crossbow_tech_imote2.cfg │ │ ├── csb337.cfg │ │ ├── csb732.cfg │ │ ├── da850evm.cfg │ │ ├── digi_connectcore_wi-9c.cfg │ │ ├── digilent_analog_discovery.cfg │ │ ├── digilent_atlys.cfg │ │ ├── digilent_nexys_video.cfg │ │ ├── digilent_zedboard.cfg │ │ ├── diolan_lpc4350-db1.cfg │ │ ├── diolan_lpc4357-db1.cfg │ │ ├── dk-tm4c129.cfg │ │ ├── dm355evm.cfg │ │ ├── dm365evm.cfg │ │ ├── dm6446evm.cfg │ │ ├── dp_busblaster_v3.cfg │ │ ├── dp_busblaster_v4.cfg │ │ ├── dptechnics_dpt-board-v1.cfg │ │ ├── ecp5_evaluation.cfg │ │ ├── efikamx.cfg │ │ ├── efm32.cfg │ │ ├── eir.cfg │ │ ├── ek-lm3s1968.cfg │ │ ├── ek-lm3s3748.cfg │ │ ├── ek-lm3s6965.cfg │ │ ├── ek-lm3s811-revb.cfg │ │ ├── ek-lm3s811.cfg │ │ ├── ek-lm3s8962.cfg │ │ ├── ek-lm3s9b9x.cfg │ │ ├── ek-lm3s9d92.cfg │ │ ├── ek-lm4f120xl.cfg │ │ ├── ek-lm4f232.cfg │ │ ├── ek-tm4c123gxl.cfg │ │ ├── ek-tm4c1294xl.cfg │ │ ├── embedded-artists_lpc2478-32.cfg │ │ ├── emcraft_imx8m-som-bsb.cfg │ │ ├── emcraft_twr-vf6-som-bsb.cfg │ │ ├── emcraft_vf6-som.cfg │ │ ├── esp32-bridge.cfg │ │ ├── esp32-ethernet-kit-3.3v.cfg │ │ ├── esp32-wrover-kit-1.8v.cfg │ │ ├── esp32-wrover-kit-3.3v.cfg │ │ ├── esp32s2-bridge.cfg │ │ ├── esp32s2-kaluga-1.cfg │ │ ├── esp32s3-bridge.cfg │ │ ├── esp32s3-builtin.cfg │ │ ├── esp32s3-ftdi.cfg │ │ ├── ethernut3.cfg │ │ ├── evb-lan9255.cfg │ │ ├── frdm-kl25z.cfg │ │ ├── frdm-kl46z.cfg │ │ ├── fsl_imx6q_sabresd.cfg │ │ ├── gatemate_eval.cfg │ │ ├── glyn_tonga2.cfg │ │ ├── gowin_runber.cfg │ │ ├── gti/ │ │ │ └── espressobin.cfg │ │ ├── gumstix-aerocore.cfg │ │ ├── hammer.cfg │ │ ├── hilscher_nxdb500sys.cfg │ │ ├── hilscher_nxeb500hmi.cfg │ │ ├── hilscher_nxhx10.cfg │ │ ├── hilscher_nxhx50.cfg │ │ ├── hilscher_nxhx500.cfg │ │ ├── hilscher_nxsb100.cfg │ │ ├── hitex_lpc1768stick.cfg │ │ ├── hitex_lpc2929.cfg │ │ ├── hitex_stm32-performancestick.cfg │ │ ├── hitex_str9-comstick.cfg │ │ ├── iar_lpc1768.cfg │ │ ├── iar_str912_sk.cfg │ │ ├── icnova_imx53_sodimm.cfg │ │ ├── icnova_sam9g45_sodimm.cfg │ │ ├── imx27ads.cfg │ │ ├── imx27lnst.cfg │ │ ├── imx28evk.cfg │ │ ├── imx31pdk.cfg │ │ ├── imx35pdk.cfg │ │ ├── imx53-m53evk.cfg │ │ ├── imx53loco.cfg │ │ ├── imx8mp-evk.cfg │ │ ├── insignal_arndale.cfg │ │ ├── kasli.cfg │ │ ├── kc100.cfg │ │ ├── kc705.cfg │ │ ├── kcu105.cfg │ │ ├── keil_mcb1700.cfg │ │ ├── keil_mcb2140.cfg │ │ ├── kindle2.cfg │ │ ├── kontron_sl28.cfg │ │ ├── kwikstik.cfg │ │ ├── la_fonera-fon2200.cfg │ │ ├── lambdaconcept_ecpix-5.cfg │ │ ├── lemaker_hikey.cfg │ │ ├── linksys-wag200g.cfg │ │ ├── linksys-wrt54gl.cfg │ │ ├── linksys_nslu2.cfg │ │ ├── lisa-l.cfg │ │ ├── logicpd_imx27.cfg │ │ ├── lpc1850_spifi_generic.cfg │ │ ├── lpc4350_spifi_generic.cfg │ │ ├── lubbock.cfg │ │ ├── marsohod.cfg │ │ ├── marsohod2.cfg │ │ ├── marsohod3.cfg │ │ ├── mbed-lpc11u24.cfg │ │ ├── mbed-lpc1768.cfg │ │ ├── mcb1700.cfg │ │ ├── microchip_explorer16.cfg │ │ ├── microchip_sama5d27_som1_kit1.cfg │ │ ├── microchip_same51_curiosity_nano.cfg │ │ ├── microchip_same54_xplained_pro.cfg │ │ ├── microchip_saml11_xplained_pro.cfg │ │ ├── mini2440.cfg │ │ ├── mini6410.cfg │ │ ├── minispartan6.cfg │ │ ├── nds32_corvettef1.cfg │ │ ├── nds32_xc7.cfg │ │ ├── netgear-dg834v3.cfg │ │ ├── netgear-wg102.cfg │ │ ├── nordic_nrf51822_mkit.cfg │ │ ├── nordic_nrf51_dk.cfg │ │ ├── nordic_nrf52_dk.cfg │ │ ├── nordic_nrf52_ftx232.cfg │ │ ├── novena-internal-fpga.cfg │ │ ├── npcx_evb.cfg │ │ ├── numato_mimas_a7.cfg │ │ ├── numato_opsis.cfg │ │ ├── nxp_frdm-k64f.cfg │ │ ├── nxp_frdm-ls1012a.cfg │ │ ├── nxp_imx7sabre.cfg │ │ ├── nxp_lpc-link2.cfg │ │ ├── nxp_mcimx8m-evk.cfg │ │ ├── nxp_rdb-ls1046a.cfg │ │ ├── nxp_rdb-ls1088a.cfg │ │ ├── olimex_LPC2378STK.cfg │ │ ├── olimex_lpc_h2148.cfg │ │ ├── olimex_sam7_ex256.cfg │ │ ├── olimex_sam7_la2.cfg │ │ ├── olimex_sam9_l9260.cfg │ │ ├── olimex_stm32_h103.cfg │ │ ├── olimex_stm32_h107.cfg │ │ ├── olimex_stm32_h405.cfg │ │ ├── olimex_stm32_p107.cfg │ │ ├── omap2420_h4.cfg │ │ ├── openrd.cfg │ │ ├── or1k_generic.cfg │ │ ├── osk5912.cfg │ │ ├── phone_se_j100i.cfg │ │ ├── phytec_lpc3250.cfg │ │ ├── pic-p32mx.cfg │ │ ├── pico-debug.cfg │ │ ├── pipistrello.cfg │ │ ├── propox_mmnet1001.cfg │ │ ├── pxa255_sst.cfg │ │ ├── quark_d2000_refboard.cfg │ │ ├── quark_x10xx_board.cfg │ │ ├── quicklogic_quickfeather.cfg │ │ ├── radiona_ulx3s.cfg │ │ ├── redbee.cfg │ │ ├── reflexces_achilles_i-dev_kit_arria10.cfg │ │ ├── renesas_dk-s7g2.cfg │ │ ├── renesas_falcon.cfg │ │ ├── renesas_gr_peach.cfg │ │ ├── renesas_porter.cfg │ │ ├── renesas_salvator-xs.cfg │ │ ├── renesas_silk.cfg │ │ ├── renesas_stout.cfg │ │ ├── rigado_bmd300_ek.cfg │ │ ├── rpi3.cfg │ │ ├── rpi4b.cfg │ │ ├── rsc-w910.cfg │ │ ├── sayma_amc.cfg │ │ ├── sheevaplug.cfg │ │ ├── sifive-e31arty.cfg │ │ ├── sifive-e51arty.cfg │ │ ├── sifive-hifive1-revb.cfg │ │ ├── sifive-hifive1.cfg │ │ ├── smdk6410.cfg │ │ ├── snps_em_sk.cfg │ │ ├── snps_em_sk_v1.cfg │ │ ├── snps_em_sk_v2.1.cfg │ │ ├── snps_em_sk_v2.2.cfg │ │ ├── snps_hsdk.cfg │ │ ├── snps_hsdk_4xd.cfg │ │ ├── spansion_sk-fm4-176l-s6e2cc.cfg │ │ ├── spansion_sk-fm4-u120-9b560.cfg │ │ ├── spear300evb.cfg │ │ ├── spear300evb_mod.cfg │ │ ├── spear310evb20.cfg │ │ ├── spear310evb20_mod.cfg │ │ ├── spear320cpu.cfg │ │ ├── spear320cpu_mod.cfg │ │ ├── st_b-l475e-iot01a.cfg │ │ ├── st_nucleo_8l152r8.cfg │ │ ├── st_nucleo_8s208rb.cfg │ │ ├── st_nucleo_f0.cfg │ │ ├── st_nucleo_f103rb.cfg │ │ ├── st_nucleo_f3.cfg │ │ ├── st_nucleo_f4.cfg │ │ ├── st_nucleo_f7.cfg │ │ ├── st_nucleo_g0.cfg │ │ ├── st_nucleo_g4.cfg │ │ ├── st_nucleo_h743zi.cfg │ │ ├── st_nucleo_h745zi.cfg │ │ ├── st_nucleo_l073rz.cfg │ │ ├── st_nucleo_l1.cfg │ │ ├── st_nucleo_l4.cfg │ │ ├── st_nucleo_l5.cfg │ │ ├── st_nucleo_wb55.cfg │ │ ├── steval-idb007v1.cfg │ │ ├── steval-idb008v1.cfg │ │ ├── steval-idb011v1.cfg │ │ ├── steval-idb012v1.cfg │ │ ├── steval_pcc010.cfg │ │ ├── stm320518_eval.cfg │ │ ├── stm320518_eval_stlink.cfg │ │ ├── stm32100b_eval.cfg │ │ ├── stm3210b_eval.cfg │ │ ├── stm3210c_eval.cfg │ │ ├── stm3210e_eval.cfg │ │ ├── stm3220g_eval.cfg │ │ ├── stm3220g_eval_stlink.cfg │ │ ├── stm3241g_eval.cfg │ │ ├── stm3241g_eval_stlink.cfg │ │ ├── stm32429i_eval.cfg │ │ ├── stm32429i_eval_stlink.cfg │ │ ├── stm32439i_eval.cfg │ │ ├── stm32439i_eval_stlink.cfg │ │ ├── stm327x6g_eval.cfg │ │ ├── stm32f0discovery.cfg │ │ ├── stm32f103c8_blue_pill.cfg │ │ ├── stm32f334discovery.cfg │ │ ├── stm32f3discovery.cfg │ │ ├── stm32f412g-disco.cfg │ │ ├── stm32f413h-disco.cfg │ │ ├── stm32f429disc1.cfg │ │ ├── stm32f429discovery.cfg │ │ ├── stm32f469discovery.cfg │ │ ├── stm32f469i-disco.cfg │ │ ├── stm32f4discovery.cfg │ │ ├── stm32f723e-disco.cfg │ │ ├── stm32f746g-disco.cfg │ │ ├── stm32f769i-disco.cfg │ │ ├── stm32f7discovery.cfg │ │ ├── stm32h735g-disco.cfg │ │ ├── stm32h745i-disco.cfg │ │ ├── stm32h747i-disco.cfg │ │ ├── stm32h750b-disco.cfg │ │ ├── stm32h7b3i-disco.cfg │ │ ├── stm32h7x3i_eval.cfg │ │ ├── stm32h7x_dual_qspi.cfg │ │ ├── stm32l0discovery.cfg │ │ ├── stm32l476g-disco.cfg │ │ ├── stm32l496g-disco.cfg │ │ ├── stm32l4discovery.cfg │ │ ├── stm32l4p5g-disco.cfg │ │ ├── stm32l4r9i-disco.cfg │ │ ├── stm32ldiscovery.cfg │ │ ├── stm32mp13x_dk.cfg │ │ ├── stm32mp15x_dk2.cfg │ │ ├── stm32vldiscovery.cfg │ │ ├── str910-eval.cfg │ │ ├── telo.cfg │ │ ├── ti_am335xevm.cfg │ │ ├── ti_am437x_idk.cfg │ │ ├── ti_am43xx_evm.cfg │ │ ├── ti_am625_swd_native.cfg │ │ ├── ti_am625evm.cfg │ │ ├── ti_am62a7evm.cfg │ │ ├── ti_am642evm.cfg │ │ ├── ti_am654evm.cfg │ │ ├── ti_beagleboard.cfg │ │ ├── ti_beagleboard_xm.cfg │ │ ├── ti_beaglebone-base.cfg │ │ ├── ti_beaglebone.cfg │ │ ├── ti_beaglebone_black.cfg │ │ ├── ti_blaze.cfg │ │ ├── ti_cc13x0_launchpad.cfg │ │ ├── ti_cc13x2_launchpad.cfg │ │ ├── ti_cc26x0_launchpad.cfg │ │ ├── ti_cc26x2_launchpad.cfg │ │ ├── ti_cc3200_launchxl.cfg │ │ ├── ti_cc3220sf_launchpad.cfg │ │ ├── ti_cc32xx_launchpad.cfg │ │ ├── ti_dk-tm4c129.cfg │ │ ├── ti_ek-tm4c123gxl.cfg │ │ ├── ti_ek-tm4c1294xl.cfg │ │ ├── ti_j7200evm.cfg │ │ ├── ti_j721e_swd_native.cfg │ │ ├── ti_j721evm.cfg │ │ ├── ti_j721s2evm.cfg │ │ ├── ti_msp432_launchpad.cfg │ │ ├── ti_pandaboard.cfg │ │ ├── ti_pandaboard_es.cfg │ │ ├── ti_tmdx570ls20susb.cfg │ │ ├── ti_tmdx570ls31usb.cfg │ │ ├── tocoding_poplar.cfg │ │ ├── topas910.cfg │ │ ├── topasa900.cfg │ │ ├── tp-link_tl-mr3020.cfg │ │ ├── tp-link_wdr4300.cfg │ │ ├── trion_t20_bga256.cfg │ │ ├── twr-k60f120m.cfg │ │ ├── twr-k60n512.cfg │ │ ├── twr-vf65gs10.cfg │ │ ├── twr-vf65gs10_cmsisdap.cfg │ │ ├── tx25_stk5.cfg │ │ ├── tx27_stk5.cfg │ │ ├── unknown_at91sam9260.cfg │ │ ├── uptech_2410.cfg │ │ ├── vd_a53x2_dap.cfg │ │ ├── vd_a53x2_jtag.cfg │ │ ├── vd_m4_dap.cfg │ │ ├── vd_m4_jtag.cfg │ │ ├── vd_m7_jtag.cfg │ │ ├── vd_pulpissimo_jtag.cfg │ │ ├── vd_swerv_jtag.cfg │ │ ├── vd_xt8_jtag.cfg │ │ ├── verdex.cfg │ │ ├── voipac.cfg │ │ ├── voltcraft_dso-3062c.cfg │ │ ├── x300t.cfg │ │ ├── xmc-2go.cfg │ │ ├── xmc1100-boot-kit.cfg │ │ ├── xmc4200-application-kit-actuator.cfg │ │ ├── xmc4300-relax.cfg │ │ ├── xmc4500-application-kit-general.cfg │ │ ├── xmc4500-application-kit-sdram.cfg │ │ ├── xmc4500-relax.cfg │ │ ├── xmc4700-relax.cfg │ │ ├── xmc4800-relax.cfg │ │ ├── xmos_xk-xac-xa8_arm.cfg │ │ ├── xtensa-kc705-ext-dap.cfg │ │ ├── xtensa-kc705-ext.cfg │ │ ├── xtensa-kc705-onboard.cfg │ │ ├── xtensa-palladium-vdebug.cfg │ │ └── xtensa-rt685-ext.cfg │ ├── chip/ │ │ ├── atmel/ │ │ │ └── at91/ │ │ │ ├── aic.tcl │ │ │ ├── at91_pio.cfg │ │ │ ├── at91_pmc.cfg │ │ │ ├── at91_rstc.cfg │ │ │ ├── at91_wdt.cfg │ │ │ ├── at91sam7x128.tcl │ │ │ ├── at91sam7x256.tcl │ │ │ ├── at91sam9261.cfg │ │ │ ├── at91sam9261_matrix.cfg │ │ │ ├── at91sam9263.cfg │ │ │ ├── at91sam9263_matrix.cfg │ │ │ ├── at91sam9_init.cfg │ │ │ ├── at91sam9_sdramc.cfg │ │ │ ├── at91sam9_smc.cfg │ │ │ ├── hardware.cfg │ │ │ ├── pmc.tcl │ │ │ ├── rtt.tcl │ │ │ ├── sam9_smc.cfg │ │ │ └── usarts.tcl │ │ ├── st/ │ │ │ ├── spear/ │ │ │ │ ├── quirk_no_srst.tcl │ │ │ │ ├── spear3xx.tcl │ │ │ │ └── spear3xx_ddr.tcl │ │ │ └── stm32/ │ │ │ ├── stm32.tcl │ │ │ ├── stm32_rcc.tcl │ │ │ └── stm32_regs.tcl │ │ └── ti/ │ │ └── lm3s/ │ │ ├── lm3s.tcl │ │ └── lm3s_regs.tcl │ ├── cpld/ │ │ ├── altera-5m570z-cpld.cfg │ │ ├── altera-epm240.cfg │ │ ├── altera-max10.cfg │ │ ├── altera-maxii.cfg │ │ ├── altera-maxv.cfg │ │ ├── jtagspi.cfg │ │ ├── lattice-lc4032ze.cfg │ │ ├── xilinx-xc3s.cfg │ │ ├── xilinx-xc4v.cfg │ │ ├── xilinx-xc4vfx_40_60_100_140.cfg │ │ ├── xilinx-xc5v.cfg │ │ ├── xilinx-xc5vfx_100_130_200.cfg │ │ ├── xilinx-xc6s.cfg │ │ ├── xilinx-xc6v.cfg │ │ ├── xilinx-xc7.cfg │ │ ├── xilinx-xc7v.cfg │ │ ├── xilinx-xc7vh580t.cfg │ │ ├── xilinx-xc7vh870t.cfg │ │ ├── xilinx-xcf-p.cfg │ │ ├── xilinx-xcf-s.cfg │ │ ├── xilinx-xcr3256.cfg │ │ └── xilinx-xcu.cfg │ ├── cpu/ │ │ ├── arc/ │ │ │ ├── common.tcl │ │ │ ├── em.tcl │ │ │ ├── hs.tcl │ │ │ └── v2.tcl │ │ └── arm/ │ │ ├── arm7tdmi.tcl │ │ ├── arm920.tcl │ │ ├── arm946.tcl │ │ ├── arm966.tcl │ │ └── cortex_m3.tcl │ ├── fpga/ │ │ ├── altera-10m50.cfg │ │ ├── altera-arriaii.cfg │ │ ├── altera-cyclone10.cfg │ │ ├── altera-cycloneiii.cfg │ │ ├── altera-cycloneiv.cfg │ │ ├── altera-cyclonev.cfg │ │ ├── altera-ep3c10.cfg │ │ ├── efinix_titanium.cfg │ │ ├── efinix_trion.cfg │ │ ├── gatemate.cfg │ │ ├── gowin_gw1n.cfg │ │ ├── lattice_certus.cfg │ │ ├── lattice_certuspro.cfg │ │ ├── lattice_ecp2.cfg │ │ ├── lattice_ecp3.cfg │ │ ├── lattice_ecp5.cfg │ │ ├── lattice_machxo3.cfg │ │ ├── xilinx-dna.cfg │ │ └── xilinx-xadc.cfg │ ├── interface/ │ │ ├── altera-usb-blaster.cfg │ │ ├── altera-usb-blaster2.cfg │ │ ├── angie.cfg │ │ ├── arm-jtag-ew.cfg │ │ ├── ast2600-gpiod.cfg │ │ ├── at91rm9200.cfg │ │ ├── beaglebone-jtag-native.cfg │ │ ├── beaglebone-swd-native.cfg │ │ ├── buspirate.cfg │ │ ├── chameleon.cfg │ │ ├── cmsis-dap.cfg │ │ ├── dln-2-gpiod.cfg │ │ ├── dummy.cfg │ │ ├── esp_usb_bridge.cfg │ │ ├── esp_usb_jtag.cfg │ │ ├── estick.cfg │ │ ├── flashlink.cfg │ │ ├── ft232r/ │ │ │ └── radiona_ulx3s.cfg │ │ ├── ft232r.cfg │ │ ├── ftdi/ │ │ │ ├── 100ask-openjtag.cfg │ │ │ ├── ashling-opella-ld-jtag.cfg │ │ │ ├── ashling-opella-ld-swd.cfg │ │ │ ├── axm0432.cfg │ │ │ ├── c232hm.cfg │ │ │ ├── cortino.cfg │ │ │ ├── digilent-hs1.cfg │ │ │ ├── digilent-hs2.cfg │ │ │ ├── digilent_jtag_hs3.cfg │ │ │ ├── digilent_jtag_smt2.cfg │ │ │ ├── digilent_jtag_smt2_nc.cfg │ │ │ ├── dlp-usb1232h.cfg │ │ │ ├── dp_busblaster.cfg │ │ │ ├── dp_busblaster_kt-link.cfg │ │ │ ├── esp32_devkitj_v1.cfg │ │ │ ├── esp32s2_kaluga_v1.cfg │ │ │ ├── flossjtag-noeeprom.cfg │ │ │ ├── flossjtag.cfg │ │ │ ├── flyswatter.cfg │ │ │ ├── flyswatter2.cfg │ │ │ ├── ft232h-module-swd.cfg │ │ │ ├── gw16042.cfg │ │ │ ├── hie-jtag.cfg │ │ │ ├── hilscher_nxhx10_etm.cfg │ │ │ ├── hilscher_nxhx500_etm.cfg │ │ │ ├── hilscher_nxhx500_re.cfg │ │ │ ├── hilscher_nxhx50_etm.cfg │ │ │ ├── hilscher_nxhx50_re.cfg │ │ │ ├── hitex_lpc1768stick.cfg │ │ │ ├── hitex_str9-comstick.cfg │ │ │ ├── icebear.cfg │ │ │ ├── imx8mp-evk.cfg │ │ │ ├── incircuit-icprog.cfg │ │ │ ├── iotlab-usb.cfg │ │ │ ├── isodebug.cfg │ │ │ ├── jtag-lock-pick_tiny_2.cfg │ │ │ ├── jtagkey.cfg │ │ │ ├── jtagkey2.cfg │ │ │ ├── jtagkey2p.cfg │ │ │ ├── kt-link.cfg │ │ │ ├── lambdaconcept_ecpix-5.cfg │ │ │ ├── lisa-l.cfg │ │ │ ├── luminary-icdi.cfg │ │ │ ├── luminary-lm3s811.cfg │ │ │ ├── luminary.cfg │ │ │ ├── m53evk.cfg │ │ │ ├── mbftdi.cfg │ │ │ ├── minimodule-swd.cfg │ │ │ ├── minimodule.cfg │ │ │ ├── minispartan6.cfg │ │ │ ├── miniwiggler.cfg │ │ │ ├── neodb.cfg │ │ │ ├── ngxtech.cfg │ │ │ ├── olimex-arm-jtag-swd.cfg │ │ │ ├── olimex-arm-usb-ocd-h.cfg │ │ │ ├── olimex-arm-usb-ocd.cfg │ │ │ ├── olimex-arm-usb-tiny-h.cfg │ │ │ ├── olimex-jtag-tiny.cfg │ │ │ ├── oocdlink.cfg │ │ │ ├── opendous_ftdi.cfg │ │ │ ├── openocd-usb-hs.cfg │ │ │ ├── openocd-usb.cfg │ │ │ ├── openrd.cfg │ │ │ ├── pipistrello.cfg │ │ │ ├── pls_spc5.cfg │ │ │ ├── redbee-econotag.cfg │ │ │ ├── redbee-usb.cfg │ │ │ ├── rowley-cc-arm-swd.cfg │ │ │ ├── sheevaplug.cfg │ │ │ ├── signalyzer-lite.cfg │ │ │ ├── signalyzer.cfg │ │ │ ├── sipeed-rv-debugger.cfg │ │ │ ├── snps_sdp.cfg │ │ │ ├── steppenprobe.cfg │ │ │ ├── stm32-stick.cfg │ │ │ ├── swd-resistor-hack.cfg │ │ │ ├── ti-icdi.cfg │ │ │ ├── tigard.cfg │ │ │ ├── tumpa-lite.cfg │ │ │ ├── tumpa.cfg │ │ │ ├── turtelizer2-revB.cfg │ │ │ ├── turtelizer2-revC.cfg │ │ │ ├── um232h.cfg │ │ │ ├── vpaclink.cfg │ │ │ ├── xds100v2.cfg │ │ │ ├── xds100v3.cfg │ │ │ └── xt_kc705_ml605.cfg │ │ ├── imx-native.cfg │ │ ├── jlink.cfg │ │ ├── jtag_dpi.cfg │ │ ├── jtag_hat_rpi2.cfg │ │ ├── jtag_vpi.cfg │ │ ├── kitprog.cfg │ │ ├── nulink.cfg │ │ ├── opendous.cfg │ │ ├── openjtag.cfg │ │ ├── osbdm.cfg │ │ ├── parport.cfg │ │ ├── parport_dlc5.cfg │ │ ├── raspberrypi-gpio-connector.cfg │ │ ├── raspberrypi-native.cfg │ │ ├── raspberrypi2-native.cfg │ │ ├── rlink.cfg │ │ ├── rshim.cfg │ │ ├── stlink-dap.cfg │ │ ├── stlink-v1.cfg │ │ ├── stlink-v2-1.cfg │ │ ├── stlink-v2.cfg │ │ ├── stlink.cfg │ │ ├── sysfsgpio-raspberrypi.cfg │ │ ├── ti-icdi.cfg │ │ ├── ulink.cfg │ │ ├── usb-jtag.cfg │ │ ├── usbprog.cfg │ │ ├── vdebug.cfg │ │ ├── vsllink.cfg │ │ └── xds110.cfg │ ├── mem_helper.tcl │ ├── memory.tcl │ ├── mmr_helpers.tcl │ ├── target/ │ │ ├── 1986ве1т.cfg │ │ ├── adsp-sc58x.cfg │ │ ├── aduc702x.cfg │ │ ├── aducm360.cfg │ │ ├── allwinner_v3s.cfg │ │ ├── alphascale_asm9260t.cfg │ │ ├── altera_fpgasoc.cfg │ │ ├── altera_fpgasoc_arria10.cfg │ │ ├── am335x.cfg │ │ ├── am437x.cfg │ │ ├── amdm37x.cfg │ │ ├── ampere_emag.cfg │ │ ├── ampere_qs_mq.cfg │ │ ├── ar71xx.cfg │ │ ├── arm_corelink_sse200.cfg │ │ ├── armada370.cfg │ │ ├── at32ap7000.cfg │ │ ├── at91r40008.cfg │ │ ├── at91rm9200.cfg │ │ ├── at91sam3XXX.cfg │ │ ├── at91sam3ax_4x.cfg │ │ ├── at91sam3ax_8x.cfg │ │ ├── at91sam3ax_xx.cfg │ │ ├── at91sam3nXX.cfg │ │ ├── at91sam3sXX.cfg │ │ ├── at91sam3u1c.cfg │ │ ├── at91sam3u1e.cfg │ │ ├── at91sam3u2c.cfg │ │ ├── at91sam3u2e.cfg │ │ ├── at91sam3u4c.cfg │ │ ├── at91sam3u4e.cfg │ │ ├── at91sam3uxx.cfg │ │ ├── at91sam4XXX.cfg │ │ ├── at91sam4c32x.cfg │ │ ├── at91sam4cXXX.cfg │ │ ├── at91sam4lXX.cfg │ │ ├── at91sam4sXX.cfg │ │ ├── at91sam4sd32x.cfg │ │ ├── at91sam7a2.cfg │ │ ├── at91sam7se512.cfg │ │ ├── at91sam7sx.cfg │ │ ├── at91sam7x256.cfg │ │ ├── at91sam7x512.cfg │ │ ├── at91sam9.cfg │ │ ├── at91sam9260.cfg │ │ ├── at91sam9260_ext_RAM_ext_flash.cfg │ │ ├── at91sam9261.cfg │ │ ├── at91sam9263.cfg │ │ ├── at91sam9g10.cfg │ │ ├── at91sam9g20.cfg │ │ ├── at91sam9g45.cfg │ │ ├── at91sam9rl.cfg │ │ ├── at91sama5d2.cfg │ │ ├── at91samdXX.cfg │ │ ├── at91samg5x.cfg │ │ ├── atheros_ar2313.cfg │ │ ├── atheros_ar2315.cfg │ │ ├── atheros_ar9331.cfg │ │ ├── atheros_ar9344.cfg │ │ ├── atmega128.cfg │ │ ├── atmega128rfa1.cfg │ │ ├── atmega32u4.cfg │ │ ├── atsame5x.cfg │ │ ├── atsaml1x.cfg │ │ ├── atsamv.cfg │ │ ├── avr32.cfg │ │ ├── bcm2711.cfg │ │ ├── bcm281xx.cfg │ │ ├── bcm2835.cfg │ │ ├── bcm2836.cfg │ │ ├── bcm2837.cfg │ │ ├── bcm4706.cfg │ │ ├── bcm4718.cfg │ │ ├── bcm47xx.cfg │ │ ├── bcm5352e.cfg │ │ ├── bcm6348.cfg │ │ ├── bluefield.cfg │ │ ├── bluenrg-x.cfg │ │ ├── c100.cfg │ │ ├── c100config.tcl │ │ ├── c100helper.tcl │ │ ├── c100regs.tcl │ │ ├── cc2538.cfg │ │ ├── cs351x.cfg │ │ ├── davinci.cfg │ │ ├── dragonite.cfg │ │ ├── dsp56321.cfg │ │ ├── dsp568013.cfg │ │ ├── dsp568037.cfg │ │ ├── efm32.cfg │ │ ├── em357.cfg │ │ ├── em358.cfg │ │ ├── eos_s3.cfg │ │ ├── epc9301.cfg │ │ ├── esi32xx.cfg │ │ ├── esp32.cfg │ │ ├── esp32s2.cfg │ │ ├── esp32s3.cfg │ │ ├── esp_common.cfg │ │ ├── exynos5250.cfg │ │ ├── faux.cfg │ │ ├── feroceon.cfg │ │ ├── fm3.cfg │ │ ├── fm4.cfg │ │ ├── fm4_mb9bf.cfg │ │ ├── fm4_s6e2cc.cfg │ │ ├── gd32e23x.cfg │ │ ├── gd32vf103.cfg │ │ ├── gp326xxxa.cfg │ │ ├── hi3798.cfg │ │ ├── hi6220.cfg │ │ ├── hilscher_netx10.cfg │ │ ├── hilscher_netx50.cfg │ │ ├── hilscher_netx500.cfg │ │ ├── icepick.cfg │ │ ├── imx.cfg │ │ ├── imx21.cfg │ │ ├── imx25.cfg │ │ ├── imx27.cfg │ │ ├── imx28.cfg │ │ ├── imx31.cfg │ │ ├── imx35.cfg │ │ ├── imx51.cfg │ │ ├── imx53.cfg │ │ ├── imx6.cfg │ │ ├── imx6sx.cfg │ │ ├── imx6ul.cfg │ │ ├── imx7.cfg │ │ ├── imx7ulp.cfg │ │ ├── imx8m.cfg │ │ ├── imx8qm.cfg │ │ ├── infineon/ │ │ │ └── tle987x.cfg │ │ ├── is5114.cfg │ │ ├── ixp42x.cfg │ │ ├── k1921vk01t.cfg │ │ ├── k40.cfg │ │ ├── k60.cfg │ │ ├── ke0x.cfg │ │ ├── ke1xf.cfg │ │ ├── ke1xz.cfg │ │ ├── kl25.cfg │ │ ├── kl46.cfg │ │ ├── klx.cfg │ │ ├── ks869x.cfg │ │ ├── kx.cfg │ │ ├── lpc11xx.cfg │ │ ├── lpc12xx.cfg │ │ ├── lpc13xx.cfg │ │ ├── lpc17xx.cfg │ │ ├── lpc1850.cfg │ │ ├── lpc1xxx.cfg │ │ ├── lpc2103.cfg │ │ ├── lpc2124.cfg │ │ ├── lpc2129.cfg │ │ ├── lpc2148.cfg │ │ ├── lpc2294.cfg │ │ ├── lpc2378.cfg │ │ ├── lpc2460.cfg │ │ ├── lpc2478.cfg │ │ ├── lpc2900.cfg │ │ ├── lpc2xxx.cfg │ │ ├── lpc3131.cfg │ │ ├── lpc3250.cfg │ │ ├── lpc40xx.cfg │ │ ├── lpc4350.cfg │ │ ├── lpc4357.cfg │ │ ├── lpc4370.cfg │ │ ├── lpc84x.cfg │ │ ├── lpc8nxx.cfg │ │ ├── lpc8xx.cfg │ │ ├── ls1012a.cfg │ │ ├── ls1028a.cfg │ │ ├── ls1046a.cfg │ │ ├── ls1088a.cfg │ │ ├── lsch3_common.cfg │ │ ├── marvell/ │ │ │ ├── 88f3710.cfg │ │ │ ├── 88f3720.cfg │ │ │ └── 88f37x0.cfg │ │ ├── max32620.cfg │ │ ├── max32625.cfg │ │ ├── max3263x.cfg │ │ ├── mc13224v.cfg │ │ ├── mdr32f9q2i.cfg │ │ ├── nds32v5.cfg │ │ ├── ngultra.cfg │ │ ├── nhs31xx.cfg │ │ ├── npcx.cfg │ │ ├── nrf51.cfg │ │ ├── nrf52.cfg │ │ ├── nuc910.cfg │ │ ├── numicro.cfg │ │ ├── numicro_m4.cfg │ │ ├── omap2420.cfg │ │ ├── omap3530.cfg │ │ ├── omap4430.cfg │ │ ├── omap4460.cfg │ │ ├── omap5912.cfg │ │ ├── omapl138.cfg │ │ ├── or1k.cfg │ │ ├── pic32mx.cfg │ │ ├── psoc4.cfg │ │ ├── psoc5lp.cfg │ │ ├── psoc6.cfg │ │ ├── pxa255.cfg │ │ ├── pxa270.cfg │ │ ├── pxa3xx.cfg │ │ ├── qn908x.cfg │ │ ├── qualcomm_qca4531.cfg │ │ ├── quark_d20xx.cfg │ │ ├── quark_x10xx.cfg │ │ ├── readme.txt │ │ ├── renesas_r7s72100.cfg │ │ ├── renesas_rcar_gen2.cfg │ │ ├── renesas_rcar_gen3.cfg │ │ ├── renesas_rcar_reset_common.cfg │ │ ├── renesas_rz_five.cfg │ │ ├── renesas_rz_g2.cfg │ │ ├── renesas_s7g2.cfg │ │ ├── rk3308.cfg │ │ ├── rk3399.cfg │ │ ├── rp2040.cfg │ │ ├── rsl10.cfg │ │ ├── rtl872xd.cfg │ │ ├── samsung_s3c2410.cfg │ │ ├── samsung_s3c2440.cfg │ │ ├── samsung_s3c2450.cfg │ │ ├── samsung_s3c4510.cfg │ │ ├── samsung_s3c6410.cfg │ │ ├── sharp_lh79532.cfg │ │ ├── sim3x.cfg │ │ ├── smp8634.cfg │ │ ├── snps_em_sk_fpga.cfg │ │ ├── snps_hsdk.cfg │ │ ├── snps_hsdk_4xd.cfg │ │ ├── spear3xx.cfg │ │ ├── stellaris.cfg │ │ ├── stm32c0x.cfg │ │ ├── stm32f0x.cfg │ │ ├── stm32f1x.cfg │ │ ├── stm32f2x.cfg │ │ ├── stm32f3x.cfg │ │ ├── stm32f4x.cfg │ │ ├── stm32f7x.cfg │ │ ├── stm32g0x.cfg │ │ ├── stm32g4x.cfg │ │ ├── stm32h7x.cfg │ │ ├── stm32h7x_dual_bank.cfg │ │ ├── stm32l0.cfg │ │ ├── stm32l0_dual_bank.cfg │ │ ├── stm32l1.cfg │ │ ├── stm32l1x_dual_bank.cfg │ │ ├── stm32l4x.cfg │ │ ├── stm32l5x.cfg │ │ ├── stm32mp13x.cfg │ │ ├── stm32mp15x.cfg │ │ ├── stm32u5x.cfg │ │ ├── stm32w108xx.cfg │ │ ├── stm32wbx.cfg │ │ ├── stm32wlx.cfg │ │ ├── stm32x5x_common.cfg │ │ ├── stm32xl.cfg │ │ ├── stm8l.cfg │ │ ├── stm8l151x2.cfg │ │ ├── stm8l151x3.cfg │ │ ├── stm8l152.cfg │ │ ├── stm8l15xx4.cfg │ │ ├── stm8l15xx6.cfg │ │ ├── stm8l15xx8.cfg │ │ ├── stm8s.cfg │ │ ├── stm8s003.cfg │ │ ├── stm8s103.cfg │ │ ├── stm8s105.cfg │ │ ├── str710.cfg │ │ ├── str730.cfg │ │ ├── str750.cfg │ │ ├── str912.cfg │ │ ├── swj-dp.tcl │ │ ├── swm050.cfg │ │ ├── test_reset_syntax_error.cfg │ │ ├── test_syntax_error.cfg │ │ ├── ti-ar7.cfg │ │ ├── ti-cjtag.cfg │ │ ├── ti_calypso.cfg │ │ ├── ti_cc13x0.cfg │ │ ├── ti_cc13x2.cfg │ │ ├── ti_cc26x0.cfg │ │ ├── ti_cc26x2.cfg │ │ ├── ti_cc3220sf.cfg │ │ ├── ti_cc32xx.cfg │ │ ├── ti_dm355.cfg │ │ ├── ti_dm365.cfg │ │ ├── ti_dm6446.cfg │ │ ├── ti_k3.cfg │ │ ├── ti_msp432.cfg │ │ ├── ti_rm4x.cfg │ │ ├── ti_tms570.cfg │ │ ├── ti_tms570lc43xx.cfg │ │ ├── ti_tms570ls20xxx.cfg │ │ ├── ti_tms570ls3137.cfg │ │ ├── tmpa900.cfg │ │ ├── tmpa910.cfg │ │ ├── tnetc4401.cfg │ │ ├── u8500.cfg │ │ ├── vd_aarch64.cfg │ │ ├── vd_cortex_m.cfg │ │ ├── vd_riscv.cfg │ │ ├── vybrid_vf6xx.cfg │ │ ├── xilinx_zynqmp.cfg │ │ ├── xmc1xxx.cfg │ │ ├── xmc4xxx.cfg │ │ ├── xmos_xs1-xau8a-10_arm.cfg │ │ ├── xtensa-core-esp32.cfg │ │ ├── xtensa-core-esp32s2.cfg │ │ ├── xtensa-core-esp32s3.cfg │ │ ├── xtensa-core-nxp_rt600.cfg │ │ ├── xtensa-core-xt8.cfg │ │ ├── xtensa.cfg │ │ ├── zynq_7000.cfg │ │ └── к1879xб1я.cfg │ ├── test/ │ │ ├── selftest.cfg │ │ └── syntax1.cfg │ └── tools/ │ ├── firmware-recovery.tcl │ ├── memtest.tcl │ └── test_cpu_speed.tcl ├── printf_config.h ├── radio.c ├── radio.h ├── scheduler.c ├── settings.c ├── settings.h ├── sram-overlay.c ├── sram-overlay.h ├── start.S ├── ui/ │ ├── aircopy.c │ ├── aircopy.h │ ├── battery.c │ ├── battery.h │ ├── fmradio.c │ ├── fmradio.h │ ├── helper.c │ ├── helper.h │ ├── inputbox.c │ ├── inputbox.h │ ├── lock.c │ ├── lock.h │ ├── main.c │ ├── main.h │ ├── menu.c │ ├── menu.h │ ├── messenger.c │ ├── messenger.h │ ├── scanner.c │ ├── scanner.h │ ├── status.c │ ├── status.h │ ├── ui.c │ ├── ui.h │ ├── welcome.c │ └── welcome.h ├── utils/ │ ├── clean.bat │ ├── main.cpp │ ├── misc.bpf │ ├── misc.bpr │ ├── misc.res │ ├── uv-k5_small.fon │ └── uv-k5_small_bold.fon ├── uv-k5font/ │ ├── chinese_array.txt │ ├── chinese_map.txt │ ├── font-pixel-made/ │ │ ├── ark-pixel-10px-monospaced.ttc │ │ ├── ark-pixel-10px-proportional.ttc │ │ ├── ark-pixel-12px-monospaced.ttc │ │ ├── ark-pixel-12px-proportional.ttc │ │ ├── chinese.txt │ │ ├── font.py │ │ ├── pic.py │ │ └── text.py │ ├── font.cpp │ ├── font.h │ ├── font.xlsx │ ├── font_new/ │ │ ├── chinese_array.txt │ │ ├── font.cpp │ │ ├── font.h │ │ └── main.cpp │ ├── main.cpp │ ├── name.txt │ ├── name_out.txt │ ├── name_out_fina.txt │ ├── name_tmp.txt │ └── uv-k5font_full/ │ ├── chinese_array.txt │ ├── font.cpp │ ├── font.h │ ├── font.xlsx │ ├── gb2312_f.txt │ ├── main.cpp │ ├── name.txt │ ├── name_out.txt │ ├── name_out_fina.txt │ └── name_tmp.txt ├── version.c ├── version.h ├── win_make.bat ├── 写频脚本/ │ ├── picture.py │ └── uvk5_cn.py └── 输入法/ ├── PINYIN.cpp ├── PINYIN.h ├── font.c ├── font.h └── main.cpp