├── .gitattributes ├── .github └── workflows │ └── cwd.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── am_fix.c ├── am_fix.h ├── app ├── action.c ├── action.h ├── aircopy.c ├── aircopy.h ├── app.c ├── app.h ├── appmenu.c ├── appmenu.h ├── ceccommon.c ├── ceccommon.h ├── chFrScanner.c ├── chFrScanner.h ├── dtmf.c ├── dtmf.h ├── finput.c ├── finput.h ├── fm.c ├── fm.h ├── fmsmall.c ├── fmsmall.h ├── generic.c ├── generic.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── messenger.c ├── messenger.h ├── nunucommon.c ├── nunucommon.h ├── scanner.c ├── scanner.h ├── spectrum.c ├── spectrum.h ├── spectrumbackup.c ├── uart.c └── uart.h ├── apps ├── scanlist.c └── scanlist.h ├── audio.c ├── audio.h ├── bitmaps.c ├── bitmaps.h ├── board.c ├── board.h ├── bp.rb ├── bsp └── dp32g030 │ ├── aes.h │ ├── crc.h │ ├── dma.h │ ├── flash.h │ ├── gpio.h │ ├── irq.h │ ├── pmu.h │ ├── portcon.h │ ├── saradc.h │ ├── spi.h │ ├── syscon.h │ └── uart.h ├── compile-with-docker.bat ├── compile-with-docker.sh ├── compiled-firmware └── firmware.ld ├── dcs.c ├── dcs.h ├── 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 ├── bk4819old.c ├── crc.c ├── crc.h ├── eeprom.c ├── eeprom.h ├── flash.c ├── flash.h ├── gpio.c ├── gpio.h ├── i2c.c ├── i2c.h ├── keyboard.c ├── keyboard.h ├── spi.c ├── spi.h ├── st7565.c ├── st7565.h ├── system.c ├── system.h ├── systick.c ├── systick.h ├── 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 │ │ │ │ │ ├── CMSIS-Toolbox.png │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── CmdLineBuild.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── build_revisionHistory.html │ │ │ │ │ ├── cbuild.html │ │ │ │ │ ├── cbuild_install.html │ │ │ │ │ ├── cbuild_uv.html │ │ │ │ │ ├── cbuildgen.html │ │ │ │ │ ├── ccmerge.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmake.html │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── cp_init.html │ │ │ │ │ ├── cp_install.html │ │ │ │ │ ├── cprjFormat_pg.html │ │ │ │ │ ├── cprj_types.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── make.html │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── projectDescriptionSchema.html │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── search │ │ │ │ │ ├── close.png │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ └── search_r.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ └── 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_CORE_Files.png │ │ │ │ │ ├── CMSIS_CORE_Files_USER.png │ │ │ │ │ ├── CMSIS_TZ_files.png │ │ │ │ │ ├── CMSIS_V3_V5.pptx │ │ │ │ │ ├── MemoryMap_NS.png │ │ │ │ │ ├── MemoryMap_S.png │ │ │ │ │ ├── Registers.png │ │ │ │ │ ├── SimpleUseCase.png │ │ │ │ │ └── TZ_context.png │ │ │ ├── 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_Files.png │ │ │ │ │ ├── CMSIS_CORE_A_Files_user.png │ │ │ │ │ └── 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_Debug_Unit.png │ │ │ │ │ ├── CMSIS_DAP_Debug_Unit_ISO.png │ │ │ │ │ ├── CMSIS_DAP_INTERFACE.png │ │ │ │ │ ├── CMSIS_DAP_INTERFACE2.png │ │ │ │ │ ├── CMSIS_DAP_SWStack.png │ │ │ │ │ ├── CMSIS_DAP_SWStack.pptx │ │ │ │ │ ├── MDK_DAP_FW_V1.png │ │ │ │ │ ├── MDK_Device.png │ │ │ │ │ ├── MDK_Flash.png │ │ │ │ │ ├── MDK_USB.png │ │ │ │ │ ├── MDK_USB_CDC.png │ │ │ │ │ ├── MDK_USB_Custom.png │ │ │ │ │ ├── MDK_USB_Custom_WinUSBGIUD.png │ │ │ │ │ ├── MDK_USB_HID.png │ │ │ │ │ ├── MDK_Validation.png │ │ │ │ │ ├── RTE.png │ │ │ │ │ └── SWD_Sequence.png │ │ │ ├── DSP │ │ │ │ └── html │ │ │ │ │ ├── BasicMathFunctionsF16_8c.html │ │ │ │ │ ├── BasicMathFunctions_8c.html │ │ │ │ │ ├── BayesFunctionsF16_8c.html │ │ │ │ │ ├── BayesFunctions_8c.html │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── dotProduct.gif │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── none_8h.html │ │ │ │ │ ├── open.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── close.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── transform__functions_8h.html │ │ │ │ │ ├── transform__functions__f16_8h.html │ │ │ │ │ ├── unionany32x2__t.html │ │ │ │ │ ├── unionany32x4__t.html │ │ │ │ │ └── utils_8h.html │ │ │ ├── Doxygen_Templates │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ ├── DoxygenLayout_forUser.xml │ │ │ │ ├── check.png │ │ │ │ ├── cmsis.css │ │ │ │ ├── cmsis_dap_header.html │ │ │ │ ├── cmsis_footer.html │ │ │ │ ├── cmsis_footer.js │ │ │ │ ├── cmsis_header.html │ │ │ │ ├── navtree.css │ │ │ │ ├── printComponentTabs.js │ │ │ │ ├── search.css │ │ │ │ ├── tab_topnav.png │ │ │ │ └── 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.png │ │ │ │ │ ├── CAN_Bit_Timing.vsd │ │ │ │ │ ├── CAN_Node.png │ │ │ │ │ ├── CAN_Node.vsd │ │ │ │ │ ├── ComponentSelection.png │ │ │ │ │ ├── EthernetSchematic.png │ │ │ │ │ ├── EthernetSchematic.vsd │ │ │ │ │ ├── I2C_BlockDiagram.png │ │ │ │ │ ├── I2C_BlockDiagram.vsd │ │ │ │ │ ├── NAND_PageLayout.png │ │ │ │ │ ├── NAND_PageLayout.vsd │ │ │ │ │ ├── NAND_Schematics.png │ │ │ │ │ ├── NAND_Schematics.vsd │ │ │ │ │ ├── NAND_SpareArea.png │ │ │ │ │ ├── NAND_SpareArea.vsd │ │ │ │ │ ├── NOR_Schematics.png │ │ │ │ │ ├── NOR_Schematics.vsd │ │ │ │ │ ├── Non_blocking_transmit_small.png │ │ │ │ │ ├── PDSC_Example.png │ │ │ │ │ ├── SAI_Schematics.png │ │ │ │ │ ├── SAI_Schematics.vsd │ │ │ │ │ ├── SAI_TimingDiagrams.vsd │ │ │ │ │ ├── SD_1BitBusMode.png │ │ │ │ │ ├── SD_1BitBusMode.vsd │ │ │ │ │ ├── SD_4BitBusMode.png │ │ │ │ │ ├── SD_4BitBusMode.vsd │ │ │ │ │ ├── SPI_BusMode.png │ │ │ │ │ ├── SPI_BusMode.vsd │ │ │ │ │ ├── SPI_Master1Slaves.png │ │ │ │ │ ├── SPI_Master1Slaves.vsd │ │ │ │ │ ├── SPI_Master2Slaves.png │ │ │ │ │ ├── SPI_Master2Slaves.vsd │ │ │ │ │ ├── SPI_Master3Slaves.png │ │ │ │ │ ├── SPI_Master3Slaves.vsd │ │ │ │ │ ├── SoftwarePacks.png │ │ │ │ │ ├── Storage.vsd │ │ │ │ │ ├── USB_Schematics.png │ │ │ │ │ ├── USB_Schematics.vsd │ │ │ │ │ ├── WiFi.png │ │ │ │ │ ├── driver.png │ │ │ │ │ ├── driver.pptx │ │ │ │ │ ├── driver_sai_i2s.png │ │ │ │ │ ├── driver_sai_lsb.png │ │ │ │ │ ├── driver_sai_msb.png │ │ │ │ │ ├── driver_sai_pcm.png │ │ │ │ │ ├── driver_sai_user.png │ │ │ │ │ ├── image001.png │ │ │ │ │ ├── image002.png │ │ │ │ │ ├── image003.png │ │ │ │ │ ├── image004.png │ │ │ │ │ ├── image005.png │ │ │ │ │ ├── image006.png │ │ │ │ │ ├── storage_sw_stack.png │ │ │ │ │ ├── vioComponentViewer.png │ │ │ │ │ └── vioRationale.png │ │ │ ├── General │ │ │ │ ├── general.dxy │ │ │ │ └── src │ │ │ │ │ ├── images │ │ │ │ │ └── Overview.png │ │ │ │ │ └── introduction.txt │ │ │ ├── How2Doc.txt │ │ │ ├── NN │ │ │ │ └── html │ │ │ │ │ ├── ActivationFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── BasicMathFunctions_2CMakeLists_8txt.html │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── todo.html │ │ │ │ │ ├── unionarm__nn__long__long.html │ │ │ │ │ ├── unionarm__nn__long__long.js │ │ │ │ │ ├── unionarm__nnword.html │ │ │ │ │ └── unionarm__nnword.js │ │ │ ├── Pack │ │ │ │ └── html │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── algorithmFunc.html │ │ │ │ │ ├── bash_script.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── 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 │ │ │ │ │ ├── close.png │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ └── search_r.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ └── tabs.css │ │ │ ├── RTOS │ │ │ │ ├── rtos.dxy │ │ │ │ └── src │ │ │ │ │ ├── RTX │ │ │ │ │ └── cmsis_os_rtx_extensions.h │ │ │ │ │ ├── cmsis_os.txt │ │ │ │ │ └── images │ │ │ │ │ ├── API_Structure.png │ │ │ │ │ ├── CMSIS_Logo_Final.jpg │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ │ ├── CMSIS_V3_small.png │ │ │ │ │ ├── MailQueue.png │ │ │ │ │ ├── MessageQueue.png │ │ │ │ │ ├── Mutex.png │ │ │ │ │ ├── RTX_Structure.png │ │ │ │ │ ├── Reference_Section.vsd │ │ │ │ │ ├── Semaphore.png │ │ │ │ │ ├── ThreadStatus.png │ │ │ │ │ ├── Timer.png │ │ │ │ │ ├── TimerValues.png │ │ │ │ │ ├── TimerValues.vsd │ │ │ │ │ ├── add_item.png │ │ │ │ │ ├── config_wizard.png │ │ │ │ │ ├── manage_rte_output.png │ │ │ │ │ ├── own_lib_projwin.png │ │ │ │ │ ├── project_window.png │ │ │ │ │ ├── simple_signal.png │ │ │ │ │ └── stack_usage_watermark.png │ │ │ ├── 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.png │ │ │ │ │ ├── API_Structure.vsd │ │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ │ ├── KernelStackUsage.png │ │ │ │ │ ├── MailQueue.png │ │ │ │ │ ├── MemAllocGlob.png │ │ │ │ │ ├── MemAllocSpec.png │ │ │ │ │ ├── MemAllocStat.png │ │ │ │ │ ├── MessageQueue.png │ │ │ │ │ ├── MessageQueue.vsd │ │ │ │ │ ├── Mutex.png │ │ │ │ │ ├── Mutex.vsd │ │ │ │ │ ├── PC-Lint.png │ │ │ │ │ ├── RTX5_Migrate1.PNG │ │ │ │ │ ├── Semaphore.png │ │ │ │ │ ├── Semaphores.vsd │ │ │ │ │ ├── TheoryOfOperation.pptx │ │ │ │ │ ├── ThreadStatus.png │ │ │ │ │ ├── ThreadStatus.vsd │ │ │ │ │ ├── Timer.png │ │ │ │ │ ├── TimerValues.png │ │ │ │ │ ├── TimerValues.vsd │ │ │ │ │ ├── add_item.png │ │ │ │ │ ├── cmsis_rtos_file_structure.vsd │ │ │ │ │ ├── config_wizard.png │ │ │ │ │ ├── config_wizard_eventFlags.png │ │ │ │ │ ├── config_wizard_evtrec.png │ │ │ │ │ ├── config_wizard_evtrecGeneration.png │ │ │ │ │ ├── config_wizard_evtrecGlobEvtFiltSetup.png │ │ │ │ │ ├── config_wizard_evtrecGlobIni.png │ │ │ │ │ ├── config_wizard_evtrecRTOSEvtFilterSetup.png │ │ │ │ │ ├── config_wizard_memPool.png │ │ │ │ │ ├── config_wizard_msgQueue.png │ │ │ │ │ ├── config_wizard_mutex.png │ │ │ │ │ ├── config_wizard_semaphore.png │ │ │ │ │ ├── config_wizard_system.png │ │ │ │ │ ├── config_wizard_threads.png │ │ │ │ │ ├── config_wizard_timer.png │ │ │ │ │ ├── event_recorder_rte.png │ │ │ │ │ ├── manage_rte_cortex-a.png │ │ │ │ │ ├── manage_rte_output.png │ │ │ │ │ ├── mempool.png │ │ │ │ │ ├── mutex_states.png │ │ │ │ │ ├── own_lib_projwin.png │ │ │ │ │ ├── project_window.png │ │ │ │ │ ├── rtos_components.png │ │ │ │ │ ├── rtos_mpu.png │ │ │ │ │ ├── scheduling.png │ │ │ │ │ ├── semaphore_states.png │ │ │ │ │ ├── simple_signal.png │ │ │ │ │ └── thread_watchdogs.png │ │ │ │ │ ├── mainpage.txt │ │ │ │ │ ├── rtx_evr.txt │ │ │ │ │ ├── rtx_os.txt │ │ │ │ │ └── validation.txt │ │ │ ├── SVD │ │ │ │ ├── src │ │ │ │ │ ├── ARM_ExampleT0.h │ │ │ │ │ ├── ARM_ExampleT0Struct.h │ │ │ │ │ ├── images │ │ │ │ │ │ ├── CMSIS_SVD_Schema_Gen.png │ │ │ │ │ │ ├── CMSIS_SVD_Schema_Gen.vsd │ │ │ │ │ │ └── SystemViewer_Generated.PNG │ │ │ │ │ ├── svd.txt │ │ │ │ │ └── svd_schema.txt │ │ │ │ └── svd.dxy │ │ │ ├── Zone │ │ │ │ ├── src │ │ │ │ │ ├── ErrorMessages.txt │ │ │ │ │ ├── GenDataModel.txt │ │ │ │ │ ├── Overview.txt │ │ │ │ │ ├── XML_Format.txt │ │ │ │ │ └── images │ │ │ │ │ │ ├── AddMemoryBlock.png │ │ │ │ │ │ ├── AddNewZoneButton.png │ │ │ │ │ │ ├── Buttons.png │ │ │ │ │ │ ├── CM33_0Azone.png │ │ │ │ │ │ ├── CMSISPacksPreferences.png │ │ │ │ │ │ ├── CMSIS_Zone.pptx │ │ │ │ │ │ ├── CoreResAsgn.png │ │ │ │ │ │ ├── DelMemoryRegion.png │ │ │ │ │ │ ├── EclipseRestart.png │ │ │ │ │ │ ├── EclipseStart.png │ │ │ │ │ │ ├── GUI.png │ │ │ │ │ │ ├── GenCodeButton.png │ │ │ │ │ │ ├── IRAM1_1Display.png │ │ │ │ │ │ ├── InstallPlugIns.png │ │ │ │ │ │ ├── MCB400_zones.png │ │ │ │ │ │ ├── MyProjAZoneOpen.png │ │ │ │ │ │ ├── NewMemoryBlockWiz.png │ │ │ │ │ │ ├── NewProjWiz.png │ │ │ │ │ │ ├── NewZoneCM33_0.png │ │ │ │ │ │ ├── NewZoneSec.png │ │ │ │ │ │ ├── OpenPackPerspective.png │ │ │ │ │ │ ├── PackMngrButton.png │ │ │ │ │ │ ├── Partitioning_Hardware.png │ │ │ │ │ │ ├── Partitioning_Workflow.png │ │ │ │ │ │ ├── ProjName.png │ │ │ │ │ │ ├── ProjectExplorerWindow.png │ │ │ │ │ │ ├── SAML11_zones.png │ │ │ │ │ │ ├── STM32L5_zones.png │ │ │ │ │ │ ├── SaveButton.png │ │ │ │ │ │ ├── SelectDevice.png │ │ │ │ │ │ ├── SelectDeviceFrom.png │ │ │ │ │ │ ├── SetProjectName.png │ │ │ │ │ │ ├── SpecifyRzoneFile.png │ │ │ │ │ │ ├── Zone.vsdx │ │ │ │ │ │ ├── blinky_window.png │ │ │ │ │ │ ├── context_menu.png │ │ │ │ │ │ ├── context_menu_conf_and_prop.png │ │ │ │ │ │ ├── dma_channel_config.png │ │ │ │ │ │ ├── dma_gpio_config.png │ │ │ │ │ │ ├── gen_output.png │ │ │ │ │ │ ├── generator.png │ │ │ │ │ │ ├── genmodel.graphml │ │ │ │ │ │ ├── gpio_pins_config.png │ │ │ │ │ │ ├── hello_world_output.png │ │ │ │ │ │ ├── hello_world_proj_window.png │ │ │ │ │ │ ├── images.odp │ │ │ │ │ │ ├── import_from_file.png │ │ │ │ │ │ ├── import_projects.png │ │ │ │ │ │ ├── import_wizard.png │ │ │ │ │ │ ├── lpc55_resource_map.png │ │ │ │ │ │ ├── lpc55_system_startup.png │ │ │ │ │ │ ├── lpc55_zones.png │ │ │ │ │ │ ├── m2351_proj_window.png │ │ │ │ │ │ ├── m2351_zones.png │ │ │ │ │ │ ├── mpu.png │ │ │ │ │ │ ├── multicore.png │ │ │ │ │ │ ├── muscaA1_zones.png │ │ │ │ │ │ ├── muscaS1_zones.png │ │ │ │ │ │ ├── new_project.png │ │ │ │ │ │ ├── partition_h_l5.png │ │ │ │ │ │ ├── peripheral_properties.png │ │ │ │ │ │ ├── res_prop.png │ │ │ │ │ │ ├── resource_map.png │ │ │ │ │ │ ├── soc-memorymap.graphml │ │ │ │ │ │ ├── som-decomposition.graphml │ │ │ │ │ │ ├── storagemodel.graphml │ │ │ │ │ │ ├── trustzone.png │ │ │ │ │ │ ├── window_preferences.png │ │ │ │ │ │ ├── zone-assignment.graphml │ │ │ │ │ │ ├── zone_map.png │ │ │ │ │ │ └── zone_project.png │ │ │ │ └── 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 │ │ │ ├── CMSIS_RTOS_Tutorial.pdf │ │ │ ├── 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.c │ │ │ │ │ │ └── Blinky │ │ │ │ │ │ │ ├── Blinky.ewd │ │ │ │ │ │ │ ├── Blinky.ewp │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ ├── Blinky.crun │ │ │ │ │ │ │ ├── Blinky.dbgdt │ │ │ │ │ │ │ └── Blinky.dnx │ │ │ │ │ └── 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 │ ├── CMSIS_Review_Meeting_2020.pdf │ ├── 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 │ ├── Scalable Software Stack.pdf │ ├── docker │ │ ├── dockerfile │ │ ├── dockerfile.gnu │ │ ├── getDependencies.sh │ │ ├── requirements.txt │ │ └── rtebuild │ │ │ ├── armcc.rtebuild │ │ │ ├── armclang.rtebuild │ │ │ ├── armclang_ltm.rtebuild │ │ │ ├── gcc.rtebuild │ │ │ └── toolchain.rtebuild │ └── linter.py ├── chacha │ ├── chacha.c │ └── chacha.h └── printf │ ├── .gitattributes │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── printf.c │ ├── printf.h │ └── test │ ├── catch.hpp │ └── test_suite.cpp ├── firmware.ld ├── font-big-digits.py ├── font.c ├── font.h ├── frequencies.c ├── frequencies.h ├── functions.c ├── functions.h ├── 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 ├── crypto.c ├── crypto.h ├── measurements.c └── measurements.h ├── init.c ├── libuvk5.py ├── main.c ├── media ├── codespace1.png └── codespace2.png ├── misc.c ├── misc.h ├── printf_config.h ├── radio.c ├── radio.h ├── regmon.py ├── scheduler.c ├── settings.c ├── settings.h ├── sram-overlay.c ├── sram-overlay.h ├── start.S ├── ui ├── aircopy.c ├── aircopy.h ├── appmenu.c ├── appmenu.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 ├── rssi.c ├── rssi.h ├── scanner.c ├── scanner.h ├── status.c ├── status.h ├── ui.c ├── ui.h ├── welcome.c └── welcome.h ├── utils ├── fw-pack.py └── k5prog │ ├── cygwin1.dll │ ├── k5prog │ └── k5prog.exe ├── version.c └── version.h /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | *.bin 4 | firmware 5 | firmware.bin 6 | firmware.packed.bin 7 | link-overlay.S 8 | sram-overlay 9 | sram-overlay.bin 10 | __pycache__/ 11 | .vscode 12 | 13 | .DS_Store 14 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "external/CMSIS_5"] 2 | path = external/CMSIS_5 3 | url = https://github.com/ARM-software/CMSIS_5 4 | ignore = dirty 5 | 6 | [submodule "external/printf"] 7 | path = external/printf 8 | url = https://github.com/mpaland/printf 9 | ignore = dirty 10 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM --platform=amd64 archlinux:latest 2 | RUN pacman -Syyu base-devel --noconfirm 3 | RUN pacman -Syyu arm-none-eabi-gcc --noconfirm 4 | RUN pacman -Syyu arm-none-eabi-newlib --noconfirm 5 | RUN pacman -Syyu git --noconfirm 6 | RUN pacman -Syyu python-pip --noconfirm 7 | RUN pacman -Syyu python-crcmod --noconfirm 8 | WORKDIR /app 9 | COPY . . 10 | 11 | RUN git submodule update --init --recursive 12 | #RUN make && cp firmware* compiled-firmware/ -------------------------------------------------------------------------------- /app/appmenu.h: -------------------------------------------------------------------------------- 1 | #ifndef APPMENU_H 2 | #define APPMENU_H 3 | 4 | #include "../driver/keyboard.h" 5 | #include "../ui/ui.h" 6 | #include "../misc.h" 7 | void APPMENU_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld); 8 | 9 | #endif /* end of include guard: APPMENU_H */ -------------------------------------------------------------------------------- /app/finput.h: -------------------------------------------------------------------------------- 1 | #ifndef FINPUT_H 2 | 3 | #define FINPUT_H 4 | 5 | #include "../driver/keyboard.h" 6 | #include 7 | 8 | extern const uint8_t FREQ_INPUT_LENGTH; 9 | extern char freqInputString[]; 10 | extern uint8_t freqInputIndex; 11 | extern uint32_t tempFreq; 12 | 13 | void UpdateFreqInput(KEY_Code_t key); 14 | void ResetFreqInput(); 15 | void FreqInput(); 16 | 17 | #endif /* end of include guard: FINPUT_H */ 18 | 19 | -------------------------------------------------------------------------------- /app/nunucommon.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef APP_COMMON_H 3 | #define APP_COMMON_H 4 | 5 | #include "functions.h" 6 | #include "settings.h" 7 | #include "ui/ui.h" 8 | 9 | void COMMON_KeypadLockToggle(); 10 | void COMMON_SwitchVFOs(); 11 | void COMMON_SwitchVFOMode(); 12 | void COMMON_SwitchToVFOMode(); 13 | void COMMON_SwitchToChannelMode(); 14 | 15 | #endif -------------------------------------------------------------------------------- /apps/scanlist.h: -------------------------------------------------------------------------------- 1 | #ifndef SCANLIST_H 2 | #define SCANLIST_H 3 | 4 | #include "../driver/keyboard.h" 5 | #include "../driver/st7565.h" 6 | #include "../external/printf/printf.h" 7 | #include "../ui/helper.h" 8 | #include 9 | 10 | void SCANLIST_key(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld); 11 | void SCANLIST_update(void); 12 | void SCANLIST_render(void); 13 | 14 | #endif /* end of include guard: SCANLIST_H */ 15 | -------------------------------------------------------------------------------- /bitmaps.h: -------------------------------------------------------------------------------- 1 | #ifndef BITMAP_H 2 | #define BITMAP_H 3 | 4 | #include 5 | 6 | extern const uint8_t BITMAP_CurrentIndicator[8]; 7 | 8 | extern const uint8_t BITMAP_VFO_Default[8]; 9 | extern const uint8_t BITMAP_VFO_NotDefault[8]; 10 | 11 | #ifdef ENABLE_BATTERY_CHARGING 12 | extern const uint8_t BITMAP_SettingsBattCharging[]; 13 | #endif 14 | #if defined(ENABLE_LOGO) 15 | extern const uint8_t BITMAP_WELCOME[1028]; 16 | #endif 17 | #endif 18 | -------------------------------------------------------------------------------- /compile-with-docker.bat: -------------------------------------------------------------------------------- 1 | docker build -t uvk5 . 2 | docker run --rm -v %CD%/compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app && make clean && make && cp firmware* compiled-firmware/" -------------------------------------------------------------------------------- /compile-with-docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | docker build -t uvk5 . 3 | docker run --rm -v ${PWD}/compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app && make clean && make && cp firmware* compiled-firmware/" -------------------------------------------------------------------------------- /external/CMSIS_5/.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | # Explicitly declare text files you want to always be normalized and converted 4 | # to native line endings on checkout. 5 | *.c text 6 | *.h text 7 | *.txt text 8 | *.xsd text 9 | *.pdsc text 10 | *.svd text 11 | *.bat text 12 | # Declare files that will always have CRLF line endings on checkout. 13 | *.uvproj text eol=crlf 14 | *.uvproj text eol=crlf 15 | # Denote all files that are truly binary and should not be modified. 16 | *.png binary 17 | *.jpg binary 18 | # Script files 19 | *.py text eol=lf 20 | *.sh text eol=lf 21 | -------------------------------------------------------------------------------- /external/CMSIS_5/.github/fileheader.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "fileheader", 5 | "severity": "error", 6 | "pattern": [ 7 | { 8 | "regexp": "^(.*):(\\d+):(.*)$", 9 | "file": 1, 10 | "line": 2, 11 | "message": 3 12 | } 13 | ] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /external/CMSIS_5/.github/linkchecker.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "fileheader", 5 | "severity": "error", 6 | "pattern": [ 7 | { 8 | "regexp": "^(.*):(\\d+);(.*);(.*)$", 9 | "file": 1, 10 | "line": 2, 11 | "message": 4 12 | } 13 | ] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /external/CMSIS_5/.github/xmllint.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "xmllint", 5 | "severity": "error", 6 | "pattern": [ 7 | { 8 | "regexp": "^(.*):(\\d+):(.*)$", 9 | "file": 1, 10 | "line": 2, 11 | "message": 3 12 | } 13 | ] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /external/CMSIS_5/.gitignore: -------------------------------------------------------------------------------- 1 | *.breadcrumb 2 | *.junit 3 | **/__pycache__ 4 | Local_Release/ 5 | CMSIS/Documentation/ 6 | CMSIS/RTOS2/RTX/Library/ARM/MDK/RTX_CM.uvguix.* 7 | CMSIS/CoreValidation/Project/*.zip 8 | CMSIS/CoreValidation/Project/*.junit 9 | CMSIS/CoreValidation/Project/Validation.*/ 10 | CMSIS/CoreValidation/Project/Bootloader.*/ 11 | *.uvguix.* 12 | *.uvmpw.uvgui.* 13 | *.zip 14 | docker/dependenciesFiles 15 | CMSIS/RTOS/RTX/LIB/**/*.a 16 | CMSIS/RTOS/RTX/LIB/**/*.lib 17 | CMSIS/RTOS2/RTX/Library/**/*.a 18 | CMSIS/RTOS2/RTX/Library/**/*.lib 19 | output 20 | .DS_Store 21 | internal.cp310-win_amd64.pyd 22 | CMSIS/Utilities/Darwin64 23 | CMSIS/Utilities/Linux64 24 | CMSIS/Utilities/Win32 25 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/App/Bootloader_Cortex-M/App.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: App 5 | # name: CMSIS-Core_Validation (Bootloader) 6 | description: Validation of CMSIS-Core implementation (Bootloader part) 7 | 8 | # packs: 9 | # - pack: ARM::CMSIS 10 | 11 | groups: 12 | - group: Source Files 13 | files: 14 | - file: ./bootloader.c 15 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0/RTE/Device/ARMCM0/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0/RTE/Device/ARMCM0/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0plus/RTE/Device/ARMCM0P/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0plus/RTE/Device/ARMCM0P/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0plus/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM23/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM23NS/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM23S/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM23S_BL/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM3/RTE/Device/ARMCM3/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM3/RTE/Device/ARMCM3/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM3/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33/RTE/Device/ARMCM33_DSP_FP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33/RTE/Device/ARMCM33_DSP_FP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33NS/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33NS/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33NS/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S_BL/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S_BL/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35P/RTE/Device/ARMCM35P_DSP_FP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35P/RTE/Device/ARMCM35P_DSP_FP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PNS/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PNS/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PS/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PS/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PS_BL/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PS_BL/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4/RTE/Device/ARMCM4/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4/RTE/Device/ARMCM4/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4FP/RTE/Device/ARMCM4_FP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4FP/RTE/Device/ARMCM4_FP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55NS/RTE/Device/ARMCM55/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55NS/RTE/Device/ARMCM55/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S/RTE/Device/ARMCM55/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S/RTE/Device/ARMCM55/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S_BL/RTE/Device/ARMCM55/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S_BL/RTE/Device/ARMCM55/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7/RTE/Device/ARMCM7/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7/RTE/Device/ARMCM7/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7/Target.clayer.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/Open-CMSIS-Pack/devtools/schemas/projmgr/1.3.0/tools/projmgr/schemas/clayer.schema.json 2 | 3 | layer: 4 | # type: Target 5 | description: Target setup 6 | 7 | # packs: 8 | # - pack: ARM::CMSIS 9 | 10 | components: 11 | # [Cvendor::] Cclass [&Cbundle] :Cgroup [:Csub] [&Cvariant] [@[>=]Cversion] 12 | - component: ARM::CMSIS:CORE 13 | - component: Device:Startup&C Startup 14 | 15 | misc: 16 | - for-compiler: IAR 17 | Link: [--config generic_cortex.icf] 18 | 19 | groups: 20 | - group: VHT/FVP 21 | files: 22 | - file: ./model_config.txt 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7DP/RTE/Device/ARMCM7_DP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7DP/RTE/Device/ARMCM7_DP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7SP/RTE/Device/ARMCM7_SP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7SP/RTE/Device/ARMCM7_SP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0 -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0 -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0 -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Project/cpacklist.txt: -------------------------------------------------------------------------------- 1 | ARM.CMSIS.5.9.0 2 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Project/requirements.txt: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Python requirements for build.py script 4 | # 5 | python-matrix-runner~=1.0 6 | lxml~=4.8 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DSP/README.md: -------------------------------------------------------------------------------- 1 | # CMSIS-DSP 2 | 3 | ![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/ARM-software/CMSIS-DSP?include_prereleases) ![GitHub](https://img.shields.io/github/license/ARM-software/CMSIS-DSP) 4 | 5 | This CMSIS component has been moved into its own realm, please find it at [ARM-software/CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP). 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS-Toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS-Toolbox.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/cbuild_uv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirect to the corresponding Open-CMSIS-Pack page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click here or try to find corresponding topic described in Open-CMSIS-Pack resources. 12 | 13 | 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ccmerge.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirect to the corresponding Open-CMSIS-Pack page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click here or try to find corresponding topic described in Open-CMSIS-Pack resources. 12 | 13 | 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/cmsis_footer.js: -------------------------------------------------------------------------------- 1 | function writeFooter() { 2 | document.write('Generated on Wed Apr 13 2022 14:13:49 for CMSIS-Pack Version 1.7.2 by Arm Ltd. All rights reserved.'); 3 | }; 4 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/cp_init.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirect to the corresponding Open-CMSIS-Pack page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click here or try to find corresponding topic described in Open-CMSIS-Pack resources. 12 | 13 | 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2blank.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2cl.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2doc.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderopen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2lastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2link.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mo.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2node.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2ns.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2plastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2pnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2splitbar.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2vertline.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/make.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Redirect to the corresponding Open-CMSIS-Pack page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click here or try to find corresponding topic described in Open-CMSIS-Pack resources. 12 | 13 | 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/close.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_l.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_m.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_r.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/Ref_MVE.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \defgroup mve_functions MVE Functions 3 | \brief Functions that relate to the MVE (Cortex-M Vector Extensions) Unit. 4 | \details 5 | Some Cortex-M processors include an optional MVE unit. 6 | 7 | @{ 8 | */ 9 | 10 | /** 11 | \brief Get the MVE type. 12 | \details Returns the MVE type. 13 | \returns 14 | - \b 0: No Vector Extension (MVE) 15 | - \b 1: Integer Vector Extension (MVE-I) 16 | - \b 2: Floating-point Vector Extension (MVE-F) 17 | */ 18 | __STATIC_INLINE uint32_t SCB_GetMVEType(void); 19 | 20 | /** 21 | @} 22 | */ 23 | 24 | 25 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/ARMv8-M_images.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/ARMv8-M_images.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files_USER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files_USER.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_TZ_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_TZ_files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_V3_V5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_V3_V5.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/MemoryMap_NS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/MemoryMap_NS.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/MemoryMap_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/MemoryMap_S.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/Registers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/Registers.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/SimpleUseCase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/SimpleUseCase.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/TZ_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/TZ_context.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/cmsis_compiler.txt: -------------------------------------------------------------------------------- 1 | /**************************************************************************//** 2 | * @file cmsis_compiler.txt 3 | * @brief CMSIS compiler specific macros, functions, instructions 4 | * @version V1.00 5 | * @date 22. Feb 2017 6 | ******************************************************************************/ 7 | 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files_user.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_Core_A.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_Core_A.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP2.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit_ISO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit_ISO.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE2.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_DAP_FW_V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_DAP_FW_V1.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Device.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Flash.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_CDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_CDC.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom_WinUSBGIUD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom_WinUSBGIUD.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_HID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_HID.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Validation.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/RTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/RTE.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/SWD_Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/SWD_Sequence.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/dotProduct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/dotProduct.gif -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/footer.js: -------------------------------------------------------------------------------- 1 | function writeHeader() { 2 | document.write('Version 1.10.1'); 3 | }; 4 | 5 | function writeFooter() { 6 | document.write('Generated on Tue Jun 28 2022 11:55:45 for CMSIS-DSP 1.10.1. Copyright © 2022 Arm Limited (or its affiliates). All rights reserved.'); 7 | }; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/all_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['use_5fstatic_5finit',['USE_STATIC_INIT',['../arm__class__marks__example__f32_8c.html#a821d6c5973940580f5a045e7cf64b7f2',1,'arm_class_marks_example_f32.c']]], 4 | ['utils_2eh',['utils.h',['../utils_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/all_19.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structarm__spline__instance__f32.html#aec265976ff59be5ac710a5f5c687e6df',1,'arm_spline_instance_f32']]], 4 | ['y_5fmax',['y_max',['../namespacetrain.html#a2fdce76b6173edbe4f183bbd8d4a0902',1,'train']]], 5 | ['y_5fmin',['y_min',['../namespacetrain.html#a8acb919d8ee20dd78e9e742be8a0f9b2',1,'train']]], 6 | ['y_5fpred',['y_pred',['../namespacetrain.html#ad2e9d52015b13dae8ce07c27bc7e41cc',1,'train']]], 7 | ['y_5ftrain',['Y_train',['../namespacetrain.html#af988a660ac2436410991de94f93f8122',1,'train']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/all_1a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z',['Z',['../namespacetrain.html#a7d8de51dbd2a144b4adb4dc15f614ade',1,'train']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/all_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['high_20precision_20q31_20biquad_20cascade_20filter',['High Precision Q31 Biquad Cascade Filter',['../group__BiquadCascadeDF1__32x64.html',1,'']]], 4 | ['half_5fq15',['HALF_Q15',['../arm__levinson__durbin__q31_8c.html#af53eb1f80ad06646990e67560ab2a8b0',1,'arm_levinson_durbin_q31.c']]], 5 | ['half_5fq31',['HALF_Q31',['../arm__levinson__durbin__q31_8c.html#a84b2434cbc9524cea6f4487aa94d5bfa',1,'arm_levinson_durbin_q31.c']]], 6 | ['history_2etxt',['history.txt',['../history_8txt.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jensen_2dshannon_20distance',['Jensen-Shannon distance',['../group__JensenShannon.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/close.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['use_5fstatic_5finit',['USE_STATIC_INIT',['../arm__class__marks__example__f32_8c.html#a821d6c5973940580f5a045e7cf64b7f2',1,'arm_class_marks_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['vector_5fdimension',['VECTOR_DIMENSION',['../arm__bayes__example__f32_8c.html#a98d2e2076140b796ee1cb5f3e77248a7',1,'VECTOR_DIMENSION(): arm_bayes_example_f32.c'],['../arm__svm__example__f32_8c.html#a98d2e2076140b796ee1cb5f3e77248a7',1,'VECTOR_DIMENSION(): arm_svm_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xspacing',['XSPACING',['../arm__linear__interp__example__f32_8c.html#a0ecae49cebd837aac53411c8f877503d',1,'arm_linear_interp_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['block_5fsize',['BLOCK_SIZE',['../arm__fir__example__f32_8c.html#ad51ded0bbd705f02f73fc60c0b721ced',1,'arm_fir_example_f32.c']]], 4 | ['blocksize',['BLOCKSIZE',['../arm__graphic__equalizer__example__q31_8c.html#afcf795f5a96fd55561abe69f56224630',1,'BLOCKSIZE(): arm_graphic_equalizer_example_q31.c'],['../arm__signal__converge__example__f32_8c.html#afcf795f5a96fd55561abe69f56224630',1,'BLOCKSIZE(): arm_signal_converge_example_f32.c']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cmplx_5fdim',['CMPLX_DIM',['../arm__math__types_8h.html#ac978fc1d187e8f01c0a3aa7b76e28529',1,'arm_math_types.h']]], 4 | ['controller_5fq31_5fshift',['CONTROLLER_Q31_SHIFT',['../controller__functions_8h.html#aaff6d2358c4ada8de838a279254ab550',1,'controller_functions.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['elem',['ELEM',['../matrix__utils_8h.html#ad57c3933860c3112ab5099050d93d53a',1,'matrix_utils.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['groupofrows',['GROUPOFROWS',['../arm__mat__mult__f32_8c.html#a0dff45762fce58a802e32eea4c5afb62',1,'arm_mat_mult_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['half_5fq15',['HALF_Q15',['../arm__levinson__durbin__q31_8c.html#af53eb1f80ad06646990e67560ab2a8b0',1,'arm_levinson_durbin_q31.c']]], 4 | ['half_5fq31',['HALF_Q31',['../arm__levinson__durbin__q31_8c.html#a84b2434cbc9524cea6f4487aa94d5bfa',1,'arm_levinson_durbin_q31.c']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['index_5fmask',['INDEX_MASK',['../utils_8h.html#a29f839928f4752b73c8858d6dbb55294',1,'utils.h']]], 4 | ['input_5fspacing',['INPUT_SPACING',['../controller__functions_8h.html#a1339e9abc11a3870e0c04f822a62166a',1,'controller_functions.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/defines_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['one_5fq15',['ONE_Q15',['../arm__levinson__durbin__q31_8c.html#a8a57fbdad94ffd18e5c5f15ad1fa1e57',1,'arm_levinson_durbin_q31.c']]], 4 | ['one_5fq31',['ONE_Q31',['../arm__levinson__durbin__q31_8c.html#abcb1d16f4b35d69afd3f997ad792e600',1,'arm_levinson_durbin_q31.c']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['distance_5ffunctions_2eh',['distance_functions.h',['../distance__functions_8h.html',1,'']]], 4 | ['distance_5ffunctions_5ff16_2eh',['distance_functions_f16.h',['../distance__functions__f16_8h.html',1,'']]], 5 | ['distancefunctions_2ec',['DistanceFunctions.c',['../DistanceFunctions_8c.html',1,'']]], 6 | ['distancefunctionsf16_2ec',['DistanceFunctionsF16.c',['../DistanceFunctionsF16_8c.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cmakelists_2etxt',['CMakeLists.txt',['../Examples_2ARM_2CMakeLists_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['history_2etxt',['history.txt',['../history_8txt.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['interpolation_5ffunctions_2eh',['interpolation_functions.h',['../interpolation__functions_8h.html',1,'']]], 4 | ['interpolation_5ffunctions_5ff16_2eh',['interpolation_functions_f16.h',['../interpolation__functions__f16_8h.html',1,'']]], 5 | ['interpolationfunctions_2ec',['InterpolationFunctions.c',['../InterpolationFunctions_8c.html',1,'']]], 6 | ['interpolationfunctionsf16_2ec',['InterpolationFunctionsF16.c',['../InterpolationFunctionsF16_8c.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['matrix_5ffunctions_2eh',['matrix_functions.h',['../matrix__functions_8h.html',1,'']]], 4 | ['matrix_5ffunctions_5ff16_2eh',['matrix_functions_f16.h',['../matrix__functions__f16_8h.html',1,'']]], 5 | ['matrix_5futils_2eh',['matrix_utils.h',['../matrix__utils_8h.html',1,'']]], 6 | ['matrixfunctions_2ec',['MatrixFunctions.c',['../MatrixFunctions_8c.html',1,'']]], 7 | ['matrixfunctionsf16_2ec',['MatrixFunctionsF16.c',['../MatrixFunctionsF16_8c.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['none_2eh',['none.h',['../none_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quaternion_5fmath_5ffunctions_2eh',['quaternion_math_functions.h',['../quaternion__math__functions_8h.html',1,'']]], 4 | ['quaternionmathfunctions_2ec',['QuaternionMathFunctions.c',['../QuaternionMathFunctions_8c.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['transform_5ffunctions_2eh',['transform_functions.h',['../transform__functions_8h.html',1,'']]], 4 | ['transform_5ffunctions_5ff16_2eh',['transform_functions_f16.h',['../transform__functions__f16_8h.html',1,'']]], 5 | ['transformfunctions_2ec',['TransformFunctions.c',['../TransformFunctions_8c.html',1,'']]], 6 | ['transformfunctionsf16_2ec',['TransformFunctionsF16.c',['../TransformFunctionsF16_8c.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/files_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['utils_2eh',['utils.h',['../utils_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['divide',['divide',['../arm__levinson__durbin__q31_8c.html#a23311be79a9c610acae9e3fae494bda1',1,'arm_levinson_durbin_q31.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['getinput',['getinput',['../arm__signal__converge__example__f32_8c.html#afd2975c4763ec935771e6f63bfe7758b',1,'arm_signal_converge_example_f32.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['if',['if',['../Source_2CMakeLists_8txt.html#a2f377352b17e126f542d6083f72197f4',1,'CMakeLists.txt']]], 4 | ['include',['include',['../Examples_2ARM_2CMakeLists_8txt.html#aae0662a24fd8c56d9539485f6a32bab2',1,'CMakeLists.txt']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['logf16_5fscalar',['logf16_scalar',['../arm__vlog__f16_8c.html#a1739b04e8d208e95be6d02abdc0112cd',1,'arm_vlog_f16.c']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['option',['option',['../Source_2CMakeLists_8txt.html#ad82b567732e957962e0ecc86cdb4c2d2',1,'CMakeLists.txt']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['read_5fq15x2',['read_q15x2',['../arm__math__memory_8h.html#ae084f8384b189a05eca804768a5f6bc0',1,'arm_math_memory.h']]], 4 | ['read_5fq7x4',['read_q7x4',['../arm__math__memory_8h.html#ad3e51d0f58cbf025bf633f158ce5e69c',1,'arm_math_memory.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['stage_5frfft_5ff16',['stage_rfft_f16',['../arm__rfft__fast__f16_8c.html#aaf06795e0dcb16aaeca0d6fe4efba3dc',1,'arm_rfft_fast_f16.c']]], 4 | ['stage_5frfft_5ff32',['stage_rfft_f32',['../arm__rfft__fast__f32_8c.html#a2f74435c5e0b3ea1ca2335e9119be7cc',1,'arm_rfft_fast_f32.c']]], 5 | ['stage_5frfft_5ff64',['stage_rfft_f64',['../arm__rfft__fast__f64_8c.html#a5d3882b22c295a074ac33cc7b6ee9212',1,'arm_rfft_fast_f64.c']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['target_5flink_5flibraries',['target_link_libraries',['../Examples_2ARM_2CMakeLists_8txt.html#a5cceb95497726046173354c1e9be5a6f',1,'CMakeLists.txt']]], 4 | ['test_5fsignal_5fconverge',['test_signal_converge',['../arm__signal__converge__example__f32_8c.html#a8f521e839d4fad24a4f12a18dfeae5d4',1,'arm_signal_converge_example_f32.c']]], 5 | ['test_5fsignal_5fconverge_5fexample',['test_signal_converge_example',['../arm__signal__converge__example__f32_8c.html#ac786d43cbc17bb09738447034ff8e22e',1,'arm_signal_converge_example_f32.c']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/functions_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['write_5fq15x2',['write_q15x2',['../arm__math__memory_8h.html#a1c6d46f43d41c6ca1b7d6a0d8ed95036',1,'arm_math_memory.h']]], 4 | ['write_5fq15x2_5fia',['write_q15x2_ia',['../arm__math__memory_8h.html#a576a0e2a4667277b42c478dfda753dc6',1,'arm_math_memory.h']]], 5 | ['write_5fq7x4_5fia',['write_q7x4_ia',['../arm__math__memory_8h.html#a05bde59a4c7dd866d0a2e3e6fcac17bd',1,'arm_math_memory.h']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['absolute_20maximum',['Absolute Maximum',['../group__AbsMax.html',1,'']]], 4 | ['absolute_20minimum',['Absolute Minimum',['../group__AbsMin.html',1,'']]], 5 | ['arctan2',['ArcTan2',['../group__atan2.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['rbf_20svm',['RBF SVM',['../group__rbfsvm.html',1,'']]], 4 | ['real_20fft_20functions',['Real FFT Functions',['../group__RealFFT.html',1,'']]], 5 | ['real_20fft_20tables',['Real FFT Tables',['../group__RealFFT__Table.html',1,'']]], 6 | ['root_20mean_20square_20_28rms_29',['Root mean square (RMS)',['../group__RMS.html',1,'']]], 7 | ['rotation_20to_20quaternion',['Rotation to Quaternion',['../group__RotQuat.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_12.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['transform_20functions',['Transform Functions',['../group__groupTransforms.html',1,'']]], 4 | ['typecasting',['Typecasting',['../group__typecast.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['weighted_20sum',['Weighted Sum',['../group__weightedsum.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['dct_20type_20iv_20functions',['DCT Type IV Functions',['../group__DCT4__IDCT4.html',1,'']]], 4 | ['dct_20type_20iv_20tables',['DCT Type IV Tables',['../group__DCT4__IDCT4__Table.html',1,'']]], 5 | ['dot_20product_20example',['Dot Product Example',['../group__DotproductExample.html',1,'']]], 6 | ['distance_20functions',['Distance functions',['../group__groupDistance.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['elementwise_20clipping',['Elementwise clipping',['../group__BasicClip.html',1,'']]], 4 | ['entropy',['Entropy',['../group__Entropy.html',1,'']]], 5 | ['euclidean_20distance',['Euclidean distance',['../group__Euclidean.html',1,'']]], 6 | ['examples',['Examples',['../group__groupExamples.html',1,'']]], 7 | ['elementwise_20quaternion_20product',['Elementwise Quaternion Product',['../group__QuatProdVect.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['graphic_20audio_20equalizer_20example',['Graphic Audio Equalizer Example',['../group__GEQ5Band.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['high_20precision_20q31_20biquad_20cascade_20filter',['High Precision Q31 Biquad Cascade Filter',['../group__BiquadCascadeDF1__32x64.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['interpolation_20functions',['Interpolation Functions',['../group__groupInterpolation.html',1,'']]], 4 | ['infinite_20impulse_20response_20_28iir_29_20lattice_20filters',['Infinite Impulse Response (IIR) Lattice Filters',['../group__IIR__Lattice.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jensen_2dshannon_20distance',['Jensen-Shannon distance',['../group__JensenShannon.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['kullback_2dleibler_20divergence',['Kullback-Leibler divergence',['../group__Kullback-Leibler.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['levinson_20durbin_20algorithm',['Levinson Durbin Algorithm',['../group__LD.html',1,'']]], 4 | ['linear_20interpolate_20example',['Linear Interpolate Example',['../group__LinearInterpExample.html',1,'']]], 5 | ['linear_20interpolation',['Linear Interpolation',['../group__LinearInterpolate.html',1,'']]], 6 | ['linear_20svm',['Linear SVM',['../group__linearsvm.html',1,'']]], 7 | ['least_20mean_20square_20_28lms_29_20filters',['Least Mean Square (LMS) Filters',['../group__LMS.html',1,'']]], 8 | ['logsumexp',['LogSumExp',['../group__LogSumExp.html',1,'']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['normalized_20lms_20filters',['Normalized LMS Filters',['../group__LMS__NORM.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/groups_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['partial_20convolution',['Partial Convolution',['../group__PartialConv.html',1,'']]], 4 | ['pid_20motor_20control',['PID Motor Control',['../group__PID.html',1,'']]], 5 | ['polynomial_20svm',['Polynomial SVM',['../group__polysvm.html',1,'']]], 6 | ['power',['Power',['../group__power.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/namespaces_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['train',['train',['../namespacetrain.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cmsis_20dsp_20software_20library',['CMSIS DSP Software Library',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/pages_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['revision_20history',['Revision History',['../ChangeLog_pg.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_l.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_m.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_r.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/variables_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structarm__spline__instance__f32.html#aec265976ff59be5ac710a5f5c687e6df',1,'arm_spline_instance_f32']]], 4 | ['y_5fmax',['y_max',['../namespacetrain.html#a2fdce76b6173edbe4f183bbd8d4a0902',1,'train']]], 5 | ['y_5fmin',['y_min',['../namespacetrain.html#a8acb919d8ee20dd78e9e742be8a0f9b2',1,'train']]], 6 | ['y_5fpred',['y_pred',['../namespacetrain.html#ad2e9d52015b13dae8ce07c27bc7e41cc',1,'train']]], 7 | ['y_5ftrain',['Y_train',['../namespacetrain.html#af988a660ac2436410991de94f93f8122',1,'train']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/variables_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z',['Z',['../namespacetrain.html#a7d8de51dbd2a144b4adb4dc15f614ade',1,'train']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/check.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/cmsis_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/cmsis_footer.js: -------------------------------------------------------------------------------- 1 | function writeFooter() { 2 | document.write('Generated on {datetime} for {projectName} {projectNumber} by Arm Ltd. All rights reserved.'); 3 | }; 4 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Bit_Timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Bit_Timing.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Bit_Timing.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Bit_Timing.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Node.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Node.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Node.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/ComponentSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/ComponentSelection.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/I2C_BlockDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/I2C_BlockDiagram.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/I2C_BlockDiagram.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/I2C_BlockDiagram.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_PageLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_PageLayout.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_PageLayout.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_PageLayout.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_Schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_Schematics.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_Schematics.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_SpareArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_SpareArea.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_SpareArea.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_SpareArea.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NOR_Schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NOR_Schematics.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NOR_Schematics.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NOR_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Non_blocking_transmit_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Non_blocking_transmit_small.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/PDSC_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/PDSC_Example.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_Schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_Schematics.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_Schematics.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_TimingDiagrams.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_TimingDiagrams.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_1BitBusMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_1BitBusMode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_1BitBusMode.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_1BitBusMode.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_4BitBusMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_4BitBusMode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_4BitBusMode.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_4BitBusMode.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_BusMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_BusMode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_BusMode.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_BusMode.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master1Slaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master1Slaves.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master1Slaves.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master1Slaves.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master2Slaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master2Slaves.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master2Slaves.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master2Slaves.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master3Slaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master3Slaves.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master3Slaves.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master3Slaves.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SoftwarePacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SoftwarePacks.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Storage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Storage.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/USB_Schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/USB_Schematics.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/USB_Schematics.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/USB_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/WiFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/WiFi.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_i2s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_i2s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_lsb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_lsb.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_msb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_msb.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_pcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_pcm.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_user.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image001.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image002.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image003.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image004.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image005.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image006.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/storage_sw_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/storage_sw_stack.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioComponentViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioComponentViewer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioRationale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioRationale.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/General/src/images/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/General/src/images/Overview.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/cmsis_footer.js: -------------------------------------------------------------------------------- 1 | function writeFooter() { 2 | document.write('Generated on Mon Dec 5 2022 07:22:56 for CMSIS-NN Version 4.0.0 by Arm Ltd. All rights reserved.'); 3 | }; 4 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2blank.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2cl.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2doc.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderopen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2lastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2link.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mo.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2node.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2ns.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2plastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2pnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2splitbar.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2vertline.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/modules.js: -------------------------------------------------------------------------------- 1 | var modules = 2 | [ 3 | [ "Neural Network Functions", "group__groupNN.html", "group__groupNN" ], 4 | [ "Neural Network Data Conversion Functions", "group__nndata__convert.html", "group__nndata__convert" ], 5 | [ "Basic Math Functions for Neural Network Computation", "group__NNBasicMath.html", "group__NNBasicMath" ] 6 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structarm__nn__double.js: -------------------------------------------------------------------------------- 1 | var structarm__nn__double = 2 | [ 3 | [ "high", "structarm__nn__double.html#a66939b6b5007a77c843d260b431e68ac", null ], 4 | [ "low", "structarm__nn__double.html#a9a087dfc1ed77e9f00ac7411a5827c82", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__activation.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__activation = 2 | [ 3 | [ "max", "structcmsis__nn__activation.html#a5fefc67d8979f6a9efe36330b9ba81cf", null ], 4 | [ "min", "structcmsis__nn__activation.html#a88a2ecd4bda8cd5f339c826df578585a", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__context.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__context = 2 | [ 3 | [ "buf", "structcmsis__nn__context.html#a3e613ad30f12df59853a1b3565212702", null ], 4 | [ "size", "structcmsis__nn__context.html#a7ad7f9757c6f2623e65306924367e82a", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__conv__params.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__conv__params = 2 | [ 3 | [ "activation", "structcmsis__nn__conv__params.html#a37811f827c8b46689a0627b54043650c", null ], 4 | [ "dilation", "structcmsis__nn__conv__params.html#a2b324f59f5ac0ec98f885a1a28514e75", null ], 5 | [ "input_offset", "structcmsis__nn__conv__params.html#ac284274c0aa03b1a0bcc0a93b275eadd", null ], 6 | [ "output_offset", "structcmsis__nn__conv__params.html#aa917be27492df19f6382df8d1d78870a", null ], 7 | [ "padding", "structcmsis__nn__conv__params.html#a0dd7826503a39d346ab260fa042ea525", null ], 8 | [ "stride", "structcmsis__nn__conv__params.html#a9ccfc682bff157a5e951b2ffba6d672c", null ] 9 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__dims.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__dims = 2 | [ 3 | [ "c", "structcmsis__nn__dims.html#ac9c268ab90554ab8ea2c3d76ecf1ed6c", null ], 4 | [ "h", "structcmsis__nn__dims.html#a471946ee336572a5a96eeb0894e6005a", null ], 5 | [ "n", "structcmsis__nn__dims.html#a907a0be31e2e3de73df89b1327724555", null ], 6 | [ "w", "structcmsis__nn__dims.html#a30b8961cc2f84ff79c399c31ff3563c0", null ] 7 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__fc__params.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__fc__params = 2 | [ 3 | [ "activation", "structcmsis__nn__fc__params.html#ac4c27a0819335364ec291bac9043cd07", null ], 4 | [ "filter_offset", "structcmsis__nn__fc__params.html#a73c44b038fbb561281e27d58bb18b9a0", null ], 5 | [ "input_offset", "structcmsis__nn__fc__params.html#a9d6902def53781c44a0a74dbc305629a", null ], 6 | [ "output_offset", "structcmsis__nn__fc__params.html#a9287b2e5770e0b6c72f88ebc3245f51a", null ] 7 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__per__channel__quant__params.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__per__channel__quant__params = 2 | [ 3 | [ "multiplier", "structcmsis__nn__per__channel__quant__params.html#a33b4a56acc8ffaa077f7db31b001e5bd", null ], 4 | [ "shift", "structcmsis__nn__per__channel__quant__params.html#a281dfde55f7a87b39a4a2c2c0362c813", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__per__tensor__quant__params.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__per__tensor__quant__params = 2 | [ 3 | [ "multiplier", "structcmsis__nn__per__tensor__quant__params.html#a4edb6cf363e3d30ad7e5166275629548", null ], 4 | [ "shift", "structcmsis__nn__per__tensor__quant__params.html#a944f9c7b4f01355406b0a2ec9d578b87", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__pool__params.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__pool__params = 2 | [ 3 | [ "activation", "structcmsis__nn__pool__params.html#a5d98c2ed7ab19a021a07175764e95a26", null ], 4 | [ "padding", "structcmsis__nn__pool__params.html#aba41d8fba7aca6871e7a67f0e6c63346", null ], 5 | [ "stride", "structcmsis__nn__pool__params.html#a64a4ccb624b7c12ca3e9f3532da58b3a", null ] 6 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__softmax__lut__s16.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__softmax__lut__s16 = 2 | [ 3 | [ "exp_lut", "structcmsis__nn__softmax__lut__s16.html#a0efa8f93962010b589115d62bc8b1492", null ], 4 | [ "one_by_one_lut", "structcmsis__nn__softmax__lut__s16.html#a7bbf8c62fe03de10c44fb29ee97934c6", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__svdf__params.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__svdf__params = 2 | [ 3 | [ "input_activation", "structcmsis__nn__svdf__params.html#af9bee3ba507e5226a264097a6a6e78ed", null ], 4 | [ "input_offset", "structcmsis__nn__svdf__params.html#a4afe1cfeca461ebb42dab876e3b5c31e", null ], 5 | [ "output_activation", "structcmsis__nn__svdf__params.html#aab0d36ffecc3ccc296e3dd6149c8f37b", null ], 6 | [ "output_offset", "structcmsis__nn__svdf__params.html#a62b484efb24bae6a05be502a18168257", null ], 7 | [ "rank", "structcmsis__nn__svdf__params.html#a2334fd8228d3989dc34abd2bc36ca032", null ] 8 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/structcmsis__nn__tile.js: -------------------------------------------------------------------------------- 1 | var structcmsis__nn__tile = 2 | [ 3 | [ "h", "structcmsis__nn__tile.html#a13c54be71aa552c2bc76d12032a3d092", null ], 4 | [ "w", "structcmsis__nn__tile.html#a9f99b4e1164c76f4ed6b32648d454283", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/unionarm__nn__long__long.js: -------------------------------------------------------------------------------- 1 | var unionarm__nn__long__long = 2 | [ 3 | [ "long_long", "unionarm__nn__long__long.html#a4dbadc95589c36dcfdb4ec2f21bd2a72", null ], 4 | [ "word", "unionarm__nn__long__long.html#a911c83d212457726d888e0c845a01155", null ] 5 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/unionarm__nnword.js: -------------------------------------------------------------------------------- 1 | var unionarm__nnword = 2 | [ 3 | [ "bytes", "unionarm__nnword.html#ac7cff6480a8e29d95f29b73cb1267249", null ], 4 | [ "half_words", "unionarm__nnword.html#a9b5e49e4e2c4b7203e07b305386bb2ba", null ], 5 | [ "word", "unionarm__nnword.html#a35c7b2ae25e35e0ddcd9ec0a1a6f8d18", null ] 6 | ]; -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/cmsis_footer.js: -------------------------------------------------------------------------------- 1 | function writeFooter() { 2 | document.write('Generated on Wed Apr 13 2022 14:13:49 for CMSIS-Pack Version 1.7.2 by Arm Ltd. All rights reserved.'); 3 | }; 4 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/close.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_l.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_m.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_r.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/API_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/API_Structure.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_Logo_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_Logo_Final.jpg -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_RTOS_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_RTOS_Files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_V3_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_V3_small.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MailQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MessageQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MessageQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Mutex.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/RTX_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/RTX_Structure.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Reference_Section.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Reference_Section.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Semaphore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/ThreadStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/ThreadStatus.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Timer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/add_item.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/config_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/config_wizard.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/manage_rte_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/manage_rte_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/own_lib_projwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/own_lib_projwin.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/project_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/project_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/simple_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/simple_signal.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/stack_usage_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/stack_usage_watermark.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/API_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/API_Structure.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/API_Structure.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/API_Structure.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/CMSIS_RTOS_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/CMSIS_RTOS_Files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/KernelStackUsage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/KernelStackUsage.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MailQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocGlob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocGlob.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocSpec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocSpec.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocStat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocStat.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/PC-Lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/PC-Lint.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/RTX5_Migrate1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/RTX5_Migrate1.PNG -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphores.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphores.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TheoryOfOperation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TheoryOfOperation.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Timer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/add_item.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/cmsis_rtos_file_structure.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/cmsis_rtos_file_structure.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_eventFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_eventFlags.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrec.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGeneration.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobEvtFiltSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobEvtFiltSetup.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobIni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobIni.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecRTOSEvtFilterSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecRTOSEvtFilterSetup.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_memPool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_memPool.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_msgQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_msgQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_mutex.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_semaphore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_system.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_threads.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_timer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/event_recorder_rte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/event_recorder_rte.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_cortex-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_cortex-a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mempool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mempool.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mutex_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mutex_states.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/own_lib_projwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/own_lib_projwin.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/project_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/project_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/rtos_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/rtos_components.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/rtos_mpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/rtos_mpu.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/scheduling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/scheduling.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/semaphore_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/semaphore_states.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/simple_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/simple_signal.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/thread_watchdogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/thread_watchdogs.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/CMSIS_SVD_Schema_Gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/CMSIS_SVD_Schema_Gen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/CMSIS_SVD_Schema_Gen.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/CMSIS_SVD_Schema_Gen.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/SystemViewer_Generated.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/SystemViewer_Generated.PNG -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddMemoryBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddMemoryBlock.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddNewZoneButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddNewZoneButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Buttons.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CM33_0Azone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CM33_0Azone.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSISPacksPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSISPacksPreferences.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSIS_Zone.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSIS_Zone.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CoreResAsgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CoreResAsgn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/DelMemoryRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/DelMemoryRegion.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseRestart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseRestart.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseStart.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GUI.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GenCodeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GenCodeButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/IRAM1_1Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/IRAM1_1Display.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/InstallPlugIns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/InstallPlugIns.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MCB400_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MCB400_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MyProjAZoneOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MyProjAZoneOpen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewMemoryBlockWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewMemoryBlockWiz.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewProjWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewProjWiz.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneCM33_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneCM33_0.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneSec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneSec.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/OpenPackPerspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/OpenPackPerspective.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/PackMngrButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/PackMngrButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Partitioning_Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Partitioning_Hardware.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Partitioning_Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Partitioning_Workflow.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjName.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjectExplorerWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjectExplorerWindow.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SAML11_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SAML11_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/STM32L5_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/STM32L5_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SaveButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SaveButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDevice.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDeviceFrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDeviceFrom.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SetProjectName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SetProjectName.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SpecifyRzoneFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SpecifyRzoneFile.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Zone.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Zone.vsdx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/blinky_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/blinky_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu_conf_and_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu_conf_and_prop.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_channel_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_channel_config.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_gpio_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_gpio_config.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gen_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gen_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/generator.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gpio_pins_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gpio_pins_config.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_proj_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_proj_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/images.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/images.odp -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_from_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_from_file.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_projects.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_wizard.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_resource_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_resource_map.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_system_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_system_startup.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_proj_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_proj_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/mpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/mpu.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/multicore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/multicore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/muscaA1_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/muscaA1_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/muscaS1_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/muscaS1_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/new_project.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/partition_h_l5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/partition_h_l5.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/peripheral_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/peripheral_properties.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/res_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/res_prop.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/resource_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/resource_map.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/trustzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/trustzone.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/window_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/window_preferences.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_map.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_project.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/index.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Redirect to the CMSIS main page after 0 seconds 5 | 6 | 7 | 8 | 9 | 10 | 11 | If the automatic redirection is failing, click open CMSIS Documentation. 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/NN/README.md: -------------------------------------------------------------------------------- 1 | # CMSIS-NN 2 | 3 | ![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/ARM-software/CMSIS-NN?include_prereleases) ![GitHub](https://img.shields.io/github/license/ARM-software/CMSIS-NN) 4 | 5 | This CMSIS component has been moved into its own realm, please find it at [ARM-software/CMSIS-NN](https://github.com/ARM-software/CMSIS-NN). 6 | Users of pre-TFLM quantization API's can use the [5.9.0](https://github.com/ARM-software/CMSIS_5/releases/tag/5.9.0) release of CMSIS_5 for that. 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/Pack/Bash/Include/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/Pack/Bash/Include/component.h -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/Pack/Bash/License.txt: -------------------------------------------------------------------------------- 1 | Placeholder for license. 2 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/Pack/Bash/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for ReadMe. 2 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/Pack/Bash/Source/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/Pack/Bash/Source/component.c -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/CMSIS_RTOS_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/RTOS/CMSIS_RTOS_Tutorial.pdf -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/CPP/Semaphore.cpp: -------------------------------------------------------------------------------- 1 | #include "Semaphore.h" 2 | 3 | #include 4 | //#include "error.h" 5 | 6 | namespace rtos { 7 | 8 | Semaphore::Semaphore(int32_t count) { 9 | #ifdef CMSIS_OS_RTX 10 | memset(_semaphore_data, 0, sizeof(_semaphore_data)); 11 | _osSemaphoreDef.semaphore = _semaphore_data; 12 | #endif 13 | _osSemaphoreId = osSemaphoreCreate(&_osSemaphoreDef, count); 14 | } 15 | 16 | int32_t Semaphore::wait(uint32_t millisec) { 17 | return osSemaphoreWait(_osSemaphoreId, millisec); 18 | } 19 | 20 | osStatus Semaphore::release(void) { 21 | return osSemaphoreRelease(_osSemaphoreId); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/CPP/rtos.h: -------------------------------------------------------------------------------- 1 | /* mbed Microcontroller Library 2 | * Copyright (c) 2006-2012 ARM Limited. All rights reserved. 3 | */ 4 | #ifndef RTOS_H 5 | #define RTOS_H 6 | 7 | #include "Thread.h" 8 | #include "Mutex.h" 9 | #include "RtosTimer.h" 10 | #include "Semaphore.h" 11 | #include "Mail.h" 12 | #include "MemoryPool.h" 13 | #include "Queue.h" 14 | 15 | using namespace rtos; 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/Hist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/RTOS/Template/Hist.txt -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/my_objects.h: -------------------------------------------------------------------------------- 1 | #include "cmsis_os.h" // CMSIS RTOS header file 2 | 3 | extern void thread_sample (void const *argument); // prototype 4 | 5 | typedef struct a { 6 | char y[100]; 7 | } a_element; 8 | 9 | osThreadDef (thread_sample, osPriorityBelowNormal, 2, 100); 10 | 11 | osPoolDef(MyPool, 10, struct a); 12 | osMessageQDef(MyMessage, 10, a_element *); 13 | osMailQDef(MyMail, 10, a_element); 14 | 15 | 16 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/system_LPC177x_8x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/RTOS/Template/system_LPC177x_8x.c -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/MemPool/Abstract.txt: -------------------------------------------------------------------------------- 1 | The MemPool project is a simple RTX Kernel based example 2 | for a simulated Cortex-M3 device 3 | 4 | Example functionality: 5 | - Clock Settings: 6 | - XTAL = 12 MHz 7 | - Core = 12 MHz 8 | 9 | The simple RTX Kernel based example shows how to use a 10 | memory pool for dynamic object allocation. 11 | 12 | The MemPool example program is available for one target: 13 | 14 | Simulation: configured for a simulated on-chip Flash 15 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/MsgQueue/Abstract.txt: -------------------------------------------------------------------------------- 1 | The MsgQueue project is a simple RTX Kernel based example 2 | for a simulated Cortex-M3 device 3 | 4 | Example functionality: 5 | - Clock Settings: 6 | - XTAL = 12 MHz 7 | - Core = 12 MHz 8 | 9 | The simple RTX Kernel based example shows how to use a 10 | message queue to send data from one thread to another. 11 | The message receiver thread prints the message contents 12 | to the debug output window. 13 | 14 | The MsgQueue example program is available for one target: 15 | 16 | Simulation: configured for a simulated on-chip Flash 17 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/NoRTOS/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/NoRTOS/Abstract.txt -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/NoRTOS/Debug.ini: -------------------------------------------------------------------------------- 1 | LOAD "..\\CM33_ns\\Objects\\CM33_ns.axf" incremental 2 | LOAD "..\\CM33_s\\Objects\\CM33_s.axf" incremental 3 | RESET 4 | g, \\CM33_s\main_s\main -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS/Abstract.txt -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS/Debug.ini: -------------------------------------------------------------------------------- 1 | LOAD "..\\CM33_ns\\Objects\\CM33_ns.axf" incremental 2 | LOAD "..\\CM33_s\\Objects\\CM33_s.axf" incremental 3 | RESET 4 | g, \\CM33_s\main_s\main -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS_Faults/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS_Faults/Abstract.txt -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS_Faults/CM33_s/Abstract.txt: -------------------------------------------------------------------------------- 1 | This ARM Cortex-M33 Security Test example project shows how the ARMv8-M 2 | architecture reacts to potential security attacks. It uses CMSIS-Core and 3 | CMSIS-RTOS2 (Keil RTX5). 4 | 5 | To execute a test case, enter in the uVision Debugger command window 6 | >TestCase= 7 | where is a test case number (0..4). 8 | 9 | After a test case has been executed, the security attack gets recorded in 10 | the IncidentLog and the application is reset. The struct IncidentLogCopy 11 | can be viewed in a watch window and shows the past four recorded incidents. -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS_Faults/CM33_s/Hardfault.h: -------------------------------------------------------------------------------- 1 | #ifndef _HARDFAULT_H 2 | #define _HARDFAULT_H 3 | 4 | 5 | void PerformReset( void ) ; 6 | 7 | 8 | #endif /* !_HARDFAULT_H */ 9 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS_Faults/Debug.ini: -------------------------------------------------------------------------------- 1 | LOAD "..\\CM33_ns\\Objects\\CM33_ns.axf" incremental 2 | LOAD "..\\CM33_s\\Objects\\CM33_s.axf" incremental 3 | RESET 4 | g, \\CM33_s\main_s\main -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples_IAR/Blinky/Blinky/settings/Blinky.crun: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | 6 | * 7 | * 8 | * 9 | 0 10 | 1 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/Abstract.txt: -------------------------------------------------------------------------------- 1 | The MsgQueue project is a simple RTX Kernel based example 2 | for a simulated Cortex-M3 device 3 | 4 | Example functionality: 5 | - Clock Settings: 6 | - XTAL = 12 MHz 7 | - Core = 12 MHz 8 | 9 | The simple RTX Kernel based example shows how to use a 10 | message queue to send data from one thread to another. 11 | The message receiver thread prints the message contents 12 | to the debug output window. 13 | 14 | The MsgQueue example program is available for one target: 15 | 16 | Simulation: configured for a simulated on-chip Flash 17 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples_IAR/MsgQueue/MsgQueue/settings/MsgQueue.crun: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | 6 | * 7 | * 8 | * 9 | 0 10 | 1 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Library/IAR/IDE/RTE_Components.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Auto generated Run-Time-Environment Component Configuration File 4 | * *** Do not modify ! *** 5 | * 6 | * Project: 'RTX_CM' 7 | */ 8 | 9 | #ifndef RTE_COMPONENTS_H 10 | #define RTE_COMPONENTS_H 11 | 12 | 13 | #endif /* RTE_COMPONENTS_H */ 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS_Review_Meeting_2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/CMSIS_Review_Meeting_2020.pdf -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM0/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM0/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM1/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM1/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM23/Debug/ARMv8MBL.dbgconf: -------------------------------------------------------------------------------- 1 | // <<< Use Configuration Wizard in Context Menu >>> 2 | 3 | // Fixed Debug Authentication 4 | // Use a fixed value for Debug Authentication. Only secure debug authentication configurable. 5 | DAuthFixed = 0x1; 6 | 7 | // Secure Invasive Debug 8 | // Secure Non-Invasive Debug 9 | DAuthConfig = 0xF; 10 | 11 | // 12 | 13 | // <<< end of configuration section >>> -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM23/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM23/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM3/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM3/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM33/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM33/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM35P/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM35P/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM4/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM4/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM55/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM55/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM7/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM85/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMCM85/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMSC000/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMSC000/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMSC300/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMSC300/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMv81MML/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMv81MML/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMv8MBL/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMv8MBL/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMv8MML/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/ARM/ARMv8MML/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/_Template_Flash/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/_Template_Flash/Abstract.txt -------------------------------------------------------------------------------- /external/CMSIS_5/Device/_Template_Flash/Target.lin: -------------------------------------------------------------------------------- 1 | ; Linker Control File (scatter-loading) 2 | ; 3 | 4 | PRG 0 PI ; Programming Functions 5 | { 6 | PrgCode +0 ; Code 7 | { 8 | * (+RO) 9 | } 10 | PrgData +0 ; Data 11 | { 12 | * (+RW,+ZI) 13 | } 14 | } 15 | 16 | DSCR +0 ; Device Description 17 | { 18 | DevDscr +0 19 | { 20 | FlashDev.o 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /external/CMSIS_5/Device/_Template_Vendor/Vendor/Device/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Device/_Template_Vendor/Vendor/Device/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Scalable Software Stack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/external/CMSIS_5/Scalable Software Stack.pdf -------------------------------------------------------------------------------- /external/CMSIS_5/docker/requirements.txt: -------------------------------------------------------------------------------- 1 | gcovr~=4.2 2 | junit-xml~=1.9 3 | jira~=2.0 4 | junitparser~=1.4 5 | Jinja2~=2.11 6 | python-matrix-runner~=1.0 7 | -------------------------------------------------------------------------------- /external/CMSIS_5/docker/rtebuild/toolchain.rtebuild: -------------------------------------------------------------------------------- 1 | packdir: ${home}/.rtebuild/PACK 2 | import: 3 | - armcc.rtebuild 4 | - armclang.rtebuild 5 | - armclang_ltm.rtebuild 6 | - gcc.rtebuild 7 | -------------------------------------------------------------------------------- /external/printf/.gitattributes: -------------------------------------------------------------------------------- 1 | # ignore test path 2 | test/* linguist-vendored 3 | -------------------------------------------------------------------------------- /external/printf/codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "test" # ignore the test folder 3 | -------------------------------------------------------------------------------- /helper/measurements.h: -------------------------------------------------------------------------------- 1 | #ifndef MEASUREMENTS_H 2 | #define MEASUREMENTS_H 3 | 4 | #include "../misc.h" 5 | #include 6 | 7 | static const uint8_t U8RssiMap[] = { 8 | 141, 135, 129, 123, 117, 111, 105, 99, 93, 83, 73, 63, 9 | }; 10 | 11 | extern const int8_t dBmCorrTable[7]; 12 | int Clamp(int v, int min, int max); 13 | int ConvertDomain(int aValue, int aMin, int aMax, int bMin, int bMax); 14 | uint8_t Rssi2PX(uint16_t rssi, uint8_t pxMin, uint8_t pxMax); 15 | uint8_t DBm2S(int dbm); 16 | int Rssi2DBm(uint16_t rssi); 17 | int Mid(uint16_t *array, uint8_t n); 18 | 19 | #endif /* end of include guard: MEASUREMENTS_H */ 20 | 21 | -------------------------------------------------------------------------------- /media/codespace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/media/codespace1.png -------------------------------------------------------------------------------- /media/codespace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/media/codespace2.png -------------------------------------------------------------------------------- /printf_config.h: -------------------------------------------------------------------------------- 1 | #define PRINTF_DISABLE_SUPPORT_LONG_LONG 2 | #define PRINTF_DISABLE_SUPPORT_EXPONENTIAL 3 | #define PRINTF_DISABLE_SUPPORT_PTRDIFF_T 4 | #define PRINTF_DISABLE_SUPPORT_FLOAT 5 | -------------------------------------------------------------------------------- /regmon.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from time import sleep 4 | from libuvk5 import uvk5 5 | 6 | 7 | PORT = '/dev/ttyUSB0' 8 | 9 | vals = [ 10 | 0x1f80, 11 | 0x2f50, 12 | 0x9f30, 13 | 0x3f48, 14 | 0xaf28, 15 | 0x4f44, 16 | 0xbf24, 17 | 0x5f42, 18 | 0xcf22, 19 | 0x6f41, 20 | 0xdf21, 21 | ] 22 | 23 | with uvk5(PORT) as s: 24 | s.connect() 25 | s.get_fw_version() 26 | i=0; 27 | while True: 28 | val = (i % 1000) *100 29 | print(val) 30 | s.set_reg(0x3D, val) 31 | print('---') 32 | i+=1 33 | 34 | sleep(2) 35 | 36 | -------------------------------------------------------------------------------- /ui/appmenu.h: -------------------------------------------------------------------------------- 1 | #ifndef APPMENU_H 2 | #define APPMENU_H 3 | 4 | #include "../driver/st7565.h" 5 | #include "../external/printf/printf.h" 6 | #include "../frequencies.h" 7 | #include "../misc.h" 8 | #include "helper.h" 9 | #include 10 | 11 | void UI_DisplayAppMenu(); 12 | 13 | #endif /* end of include guard: APPMENU_H */ -------------------------------------------------------------------------------- /ui/messenger.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef UI_MSG_H 3 | #define UI_MSG_H 4 | 5 | #ifdef ENABLE_MESSENGER 6 | void UI_DisplayMSG(void); 7 | #endif 8 | 9 | #endif 10 | 11 | -------------------------------------------------------------------------------- /utils/k5prog/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/utils/k5prog/cygwin1.dll -------------------------------------------------------------------------------- /utils/k5prog/k5prog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/utils/k5prog/k5prog -------------------------------------------------------------------------------- /utils/k5prog/k5prog.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm81/MCFW_UV-K5_Open_Source_Firmware/f6489bb727ca27ecec5371f3f953c5cedb05323a/utils/k5prog/k5prog.exe -------------------------------------------------------------------------------- /version.c: -------------------------------------------------------------------------------- 1 | const char Version[] = "MCFW-" GIT_HASH; 2 | const char UART_Version[45] = 3 | "UV-K5 Firmware, Open Edition, MCFW-" GIT_HASH "\r\n"; 4 | --------------------------------------------------------------------------------