├── external ├── CMSIS_5 │ ├── CMSIS │ │ ├── Pack │ │ │ └── Bash │ │ │ │ ├── Include │ │ │ │ └── component.h │ │ │ │ ├── Source │ │ │ │ └── component.c │ │ │ │ ├── License.txt │ │ │ │ └── README.md │ │ ├── RTOS2 │ │ │ └── RTX │ │ │ │ ├── Examples │ │ │ │ ├── TrustZoneV8M │ │ │ │ │ ├── RTOS │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── Debug.ini │ │ │ │ │ │ └── CM33_s │ │ │ │ │ │ │ └── Abstract.txt │ │ │ │ │ ├── NoRTOS │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── Debug.ini │ │ │ │ │ │ └── CM33_s │ │ │ │ │ │ │ └── Abstract.txt │ │ │ │ │ └── RTOS_Faults │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── CM33_s │ │ │ │ │ │ ├── Hardfault.h │ │ │ │ │ │ └── Abstract.txt │ │ │ │ │ │ └── Debug.ini │ │ │ │ ├── MemPool │ │ │ │ │ └── Abstract.txt │ │ │ │ └── MsgQueue │ │ │ │ │ └── Abstract.txt │ │ │ │ ├── Library │ │ │ │ └── IAR │ │ │ │ │ └── IDE │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── Examples_IAR │ │ │ │ ├── Blinky │ │ │ │ └── Blinky │ │ │ │ │ └── settings │ │ │ │ │ └── Blinky.crun │ │ │ │ └── MsgQueue │ │ │ │ ├── MsgQueue │ │ │ │ └── settings │ │ │ │ │ └── MsgQueue.crun │ │ │ │ └── Abstract.txt │ │ ├── CoreValidation │ │ │ ├── Project │ │ │ │ ├── cpacklist.txt │ │ │ │ └── requirements.txt │ │ │ └── Layer │ │ │ │ ├── Target │ │ │ │ ├── CM0 │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM0 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM3 │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM3 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM4 │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM4 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM7 │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM7 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM55NS │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM55 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM55S │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM55 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM85NS │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM85 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ └── gcc_arm.ld.base@1.0.0 │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM85S │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM85 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ └── gcc_arm.ld.base@1.0.0 │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM0plus │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM0P │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM4FP │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM4_FP │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM55S_BL │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM55 │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM7DP │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM7_DP │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM7SP │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM7_SP │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM85S_BL │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM85 │ │ │ │ │ │ │ ├── gcc_arm.ld │ │ │ │ │ │ │ └── gcc_arm.ld.base@1.0.0 │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM33 │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM33_DSP_FP │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM35P │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM33NS │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM33S │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM33S_BL │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM33_DSP_FP_TZ │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM35PNS │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP_TZ │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM35PS │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP_TZ │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM35PS_BL │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── ARMCM35P_DSP_FP_TZ │ │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM23 │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM23NS │ │ │ │ │ └── Target.clayer.yml │ │ │ │ ├── CM23S │ │ │ │ │ └── Target.clayer.yml │ │ │ │ └── CM23S_BL │ │ │ │ │ └── Target.clayer.yml │ │ │ │ └── App │ │ │ │ └── Bootloader_Cortex-M │ │ │ │ └── App.clayer.yml │ │ ├── DoxyGen │ │ │ ├── DSP │ │ │ │ └── html │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── search │ │ │ │ │ ├── files_9.js │ │ │ │ │ ├── files_d.js │ │ │ │ │ ├── namespaces_0.js │ │ │ │ │ ├── files_6.js │ │ │ │ │ ├── pages_1.js │ │ │ │ │ ├── groups_14.js │ │ │ │ │ ├── pages_2.js │ │ │ │ │ ├── all_1a.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── files_4.js │ │ │ │ │ ├── pages_0.js │ │ │ │ │ ├── variables_15.js │ │ │ │ │ ├── all_a.js │ │ │ │ │ ├── groups_d.js │ │ │ │ │ ├── defines_5.js │ │ │ │ │ ├── groups_9.js │ │ │ │ │ ├── groups_6.js │ │ │ │ │ ├── groups_a.js │ │ │ │ │ ├── functions_8.js │ │ │ │ │ ├── defines_7.js │ │ │ │ │ ├── functions_6.js │ │ │ │ │ ├── functions_3.js │ │ │ │ │ ├── defines_15.js │ │ │ │ │ ├── groups_7.js │ │ │ │ │ ├── functions_4.js │ │ │ │ │ ├── defines_13.js │ │ │ │ │ ├── groups_12.js │ │ │ │ │ ├── all_15.js │ │ │ │ │ ├── groups_0.js │ │ │ │ │ ├── files_a.js │ │ │ │ │ ├── functions_5.js │ │ │ │ │ ├── defines_9.js │ │ │ │ │ ├── functions_9.js │ │ │ │ │ ├── groups_8.js │ │ │ │ │ ├── defines_8.js │ │ │ │ │ ├── defines_d.js │ │ │ │ │ ├── defines_3.js │ │ │ │ │ ├── defines_14.js │ │ │ │ │ ├── groups_e.js │ │ │ │ │ ├── groups_3.js │ │ │ │ │ ├── functions_c.js │ │ │ │ │ ├── files_3.js │ │ │ │ │ ├── files_c.js │ │ │ │ │ ├── functions_a.js │ │ │ │ │ ├── groups_4.js │ │ │ │ │ ├── groups_10.js │ │ │ │ │ ├── defines_2.js │ │ │ │ │ ├── files_7.js │ │ │ │ │ ├── files_8.js │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── all_8.js │ │ │ │ │ ├── all_19.js │ │ │ │ │ ├── variables_14.js │ │ │ │ │ ├── functions_b.js │ │ │ │ │ └── groups_b.js │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── dotProduct.gif │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ └── footer.js │ │ │ ├── Build │ │ │ │ └── html │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── CMSIS-Toolbox.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── search │ │ │ │ │ ├── close.png │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ └── nomatches.html │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── ccmerge.html │ │ │ │ │ ├── cp_init.html │ │ │ │ │ ├── make.html │ │ │ │ │ └── cbuild_uv.html │ │ │ ├── Pack │ │ │ │ └── html │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── search │ │ │ │ │ ├── close.png │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ └── nomatches.html │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ └── cmsis_footer.js │ │ │ ├── NN │ │ │ │ └── html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── cmsis_footer.js │ │ │ │ │ ├── structcmsis__nn__tile.js │ │ │ │ │ ├── structarm__nn__double.js │ │ │ │ │ ├── structcmsis__nn__context.js │ │ │ │ │ ├── unionarm__nn__long__long.js │ │ │ │ │ ├── structcmsis__nn__activation.js │ │ │ │ │ ├── structcmsis__nn__softmax__lut__s16.js │ │ │ │ │ ├── unionarm__nnword.js │ │ │ │ │ ├── structcmsis__nn__per__tensor__quant__params.js │ │ │ │ │ ├── structcmsis__nn__per__channel__quant__params.js │ │ │ │ │ ├── modules.js │ │ │ │ │ ├── structcmsis__nn__pool__params.js │ │ │ │ │ ├── structcmsis__nn__dims.js │ │ │ │ │ ├── structcmsis__nn__fc__params.js │ │ │ │ │ ├── structcmsis__nn__svdf__params.js │ │ │ │ │ └── structcmsis__nn__conv__params.js │ │ │ ├── DAP │ │ │ │ ├── CMSIS_DAP.pptx │ │ │ │ ├── CMSIS_DAP2.pptx │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ ├── RTE.png │ │ │ │ │ ├── MDK_USB.png │ │ │ │ │ ├── MDK_Flash.png │ │ │ │ │ ├── MDK_Device.png │ │ │ │ │ ├── MDK_USB_CDC.png │ │ │ │ │ ├── MDK_USB_HID.png │ │ │ │ │ ├── SWD_Sequence.png │ │ │ │ │ ├── MDK_DAP_FW_V1.png │ │ │ │ │ ├── MDK_USB_Custom.png │ │ │ │ │ ├── MDK_Validation.png │ │ │ │ │ ├── CMSIS_DAP_SWStack.png │ │ │ │ │ ├── CMSIS_DAP_INTERFACE.png │ │ │ │ │ ├── CMSIS_DAP_SWStack.pptx │ │ │ │ │ ├── CMSIS_DAP_Debug_Unit.png │ │ │ │ │ ├── CMSIS_DAP_INTERFACE2.png │ │ │ │ │ ├── CMSIS_DAP_Debug_Unit_ISO.png │ │ │ │ │ └── MDK_USB_Custom_WinUSBGIUD.png │ │ │ ├── Zone │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ ├── GUI.png │ │ │ │ │ ├── mpu.png │ │ │ │ │ ├── Zone.vsdx │ │ │ │ │ ├── images.odp │ │ │ │ │ ├── Buttons.png │ │ │ │ │ ├── ProjName.png │ │ │ │ │ ├── res_prop.png │ │ │ │ │ ├── zone_map.png │ │ │ │ │ ├── CM33_0Azone.png │ │ │ │ │ ├── CMSIS_Zone.pptx │ │ │ │ │ ├── CoreResAsgn.png │ │ │ │ │ ├── NewProjWiz.png │ │ │ │ │ ├── NewZoneSec.png │ │ │ │ │ ├── SaveButton.png │ │ │ │ │ ├── gen_output.png │ │ │ │ │ ├── generator.png │ │ │ │ │ ├── lpc55_zones.png │ │ │ │ │ ├── m2351_zones.png │ │ │ │ │ ├── multicore.png │ │ │ │ │ ├── new_project.png │ │ │ │ │ ├── trustzone.png │ │ │ │ │ ├── EclipseStart.png │ │ │ │ │ ├── GenCodeButton.png │ │ │ │ │ ├── MCB400_zones.png │ │ │ │ │ ├── NewZoneCM33_0.png │ │ │ │ │ ├── SAML11_zones.png │ │ │ │ │ ├── STM32L5_zones.png │ │ │ │ │ ├── SelectDevice.png │ │ │ │ │ ├── blinky_window.png │ │ │ │ │ ├── context_menu.png │ │ │ │ │ ├── import_wizard.png │ │ │ │ │ ├── muscaA1_zones.png │ │ │ │ │ ├── muscaS1_zones.png │ │ │ │ │ ├── resource_map.png │ │ │ │ │ ├── zone_project.png │ │ │ │ │ ├── AddMemoryBlock.png │ │ │ │ │ ├── AddNewZoneButton.png │ │ │ │ │ ├── DelMemoryRegion.png │ │ │ │ │ ├── EclipseRestart.png │ │ │ │ │ ├── IRAM1_1Display.png │ │ │ │ │ ├── InstallPlugIns.png │ │ │ │ │ ├── MyProjAZoneOpen.png │ │ │ │ │ ├── PackMngrButton.png │ │ │ │ │ ├── SelectDeviceFrom.png │ │ │ │ │ ├── SetProjectName.png │ │ │ │ │ ├── SpecifyRzoneFile.png │ │ │ │ │ ├── dma_gpio_config.png │ │ │ │ │ ├── gpio_pins_config.png │ │ │ │ │ ├── import_from_file.png │ │ │ │ │ ├── import_projects.png │ │ │ │ │ ├── partition_h_l5.png │ │ │ │ │ ├── NewMemoryBlockWiz.png │ │ │ │ │ ├── dma_channel_config.png │ │ │ │ │ ├── hello_world_output.png │ │ │ │ │ ├── lpc55_resource_map.png │ │ │ │ │ ├── m2351_proj_window.png │ │ │ │ │ ├── window_preferences.png │ │ │ │ │ ├── CMSISPacksPreferences.png │ │ │ │ │ ├── OpenPackPerspective.png │ │ │ │ │ ├── Partitioning_Hardware.png │ │ │ │ │ ├── Partitioning_Workflow.png │ │ │ │ │ ├── ProjectExplorerWindow.png │ │ │ │ │ ├── lpc55_system_startup.png │ │ │ │ │ ├── peripheral_properties.png │ │ │ │ │ ├── hello_world_proj_window.png │ │ │ │ │ └── context_menu_conf_and_prop.png │ │ │ ├── Driver │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ ├── WiFi.png │ │ │ │ │ ├── driver.png │ │ │ │ │ ├── CAN_Node.png │ │ │ │ │ ├── CAN_Node.vsd │ │ │ │ │ ├── Storage.vsd │ │ │ │ │ ├── driver.pptx │ │ │ │ │ ├── image001.png │ │ │ │ │ ├── image002.png │ │ │ │ │ ├── image003.png │ │ │ │ │ ├── image004.png │ │ │ │ │ ├── image005.png │ │ │ │ │ ├── image006.png │ │ │ │ │ ├── SPI_BusMode.png │ │ │ │ │ ├── SPI_BusMode.vsd │ │ │ │ │ ├── CAN_Bit_Timing.png │ │ │ │ │ ├── CAN_Bit_Timing.vsd │ │ │ │ │ ├── NAND_SpareArea.png │ │ │ │ │ ├── NAND_SpareArea.vsd │ │ │ │ │ ├── NOR_Schematics.png │ │ │ │ │ ├── NOR_Schematics.vsd │ │ │ │ │ ├── PDSC_Example.png │ │ │ │ │ ├── SAI_Schematics.png │ │ │ │ │ ├── SAI_Schematics.vsd │ │ │ │ │ ├── SD_1BitBusMode.png │ │ │ │ │ ├── SD_1BitBusMode.vsd │ │ │ │ │ ├── SD_4BitBusMode.png │ │ │ │ │ ├── SD_4BitBusMode.vsd │ │ │ │ │ ├── SoftwarePacks.png │ │ │ │ │ ├── USB_Schematics.png │ │ │ │ │ ├── USB_Schematics.vsd │ │ │ │ │ ├── driver_sai_i2s.png │ │ │ │ │ ├── driver_sai_lsb.png │ │ │ │ │ ├── driver_sai_msb.png │ │ │ │ │ ├── driver_sai_pcm.png │ │ │ │ │ ├── vioRationale.png │ │ │ │ │ ├── I2C_BlockDiagram.png │ │ │ │ │ ├── I2C_BlockDiagram.vsd │ │ │ │ │ ├── NAND_PageLayout.png │ │ │ │ │ ├── NAND_PageLayout.vsd │ │ │ │ │ ├── NAND_Schematics.png │ │ │ │ │ ├── NAND_Schematics.vsd │ │ │ │ │ ├── driver_sai_user.png │ │ │ │ │ ├── storage_sw_stack.png │ │ │ │ │ ├── ComponentSelection.png │ │ │ │ │ ├── EthernetSchematic.png │ │ │ │ │ ├── EthernetSchematic.vsd │ │ │ │ │ ├── SAI_TimingDiagrams.vsd │ │ │ │ │ ├── SPI_Master1Slaves.png │ │ │ │ │ ├── SPI_Master1Slaves.vsd │ │ │ │ │ ├── SPI_Master2Slaves.png │ │ │ │ │ ├── SPI_Master2Slaves.vsd │ │ │ │ │ ├── SPI_Master3Slaves.png │ │ │ │ │ ├── SPI_Master3Slaves.vsd │ │ │ │ │ ├── vioComponentViewer.png │ │ │ │ │ └── Non_blocking_transmit_small.png │ │ │ ├── RTOS │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ ├── Mutex.png │ │ │ │ │ ├── Timer.png │ │ │ │ │ ├── add_item.png │ │ │ │ │ ├── MailQueue.png │ │ │ │ │ ├── Semaphore.png │ │ │ │ │ ├── TimerValues.png │ │ │ │ │ ├── TimerValues.vsd │ │ │ │ │ ├── API_Structure.png │ │ │ │ │ ├── MessageQueue.png │ │ │ │ │ ├── RTX_Structure.png │ │ │ │ │ ├── ThreadStatus.png │ │ │ │ │ ├── config_wizard.png │ │ │ │ │ ├── simple_signal.png │ │ │ │ │ ├── CMSIS_Logo_Final.jpg │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ │ ├── CMSIS_V3_small.png │ │ │ │ │ ├── own_lib_projwin.png │ │ │ │ │ ├── project_window.png │ │ │ │ │ ├── Reference_Section.vsd │ │ │ │ │ ├── manage_rte_output.png │ │ │ │ │ └── stack_usage_watermark.png │ │ │ ├── RTOS2 │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ ├── Mutex.png │ │ │ │ │ ├── Mutex.vsd │ │ │ │ │ ├── Timer.png │ │ │ │ │ ├── PC-Lint.png │ │ │ │ │ ├── mempool.png │ │ │ │ │ ├── MailQueue.png │ │ │ │ │ ├── Semaphore.png │ │ │ │ │ ├── Semaphores.vsd │ │ │ │ │ ├── add_item.png │ │ │ │ │ ├── rtos_mpu.png │ │ │ │ │ ├── scheduling.png │ │ │ │ │ ├── MemAllocGlob.png │ │ │ │ │ ├── MemAllocSpec.png │ │ │ │ │ ├── MemAllocStat.png │ │ │ │ │ ├── MessageQueue.png │ │ │ │ │ ├── MessageQueue.vsd │ │ │ │ │ ├── ThreadStatus.png │ │ │ │ │ ├── ThreadStatus.vsd │ │ │ │ │ ├── TimerValues.png │ │ │ │ │ ├── TimerValues.vsd │ │ │ │ │ ├── mutex_states.png │ │ │ │ │ ├── API_Structure.png │ │ │ │ │ ├── API_Structure.vsd │ │ │ │ │ ├── RTX5_Migrate1.PNG │ │ │ │ │ ├── config_wizard.png │ │ │ │ │ ├── own_lib_projwin.png │ │ │ │ │ ├── project_window.png │ │ │ │ │ ├── rtos_components.png │ │ │ │ │ ├── simple_signal.png │ │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ │ ├── KernelStackUsage.png │ │ │ │ │ ├── manage_rte_output.png │ │ │ │ │ ├── semaphore_states.png │ │ │ │ │ ├── thread_watchdogs.png │ │ │ │ │ ├── TheoryOfOperation.pptx │ │ │ │ │ ├── config_wizard_evtrec.png │ │ │ │ │ ├── config_wizard_mutex.png │ │ │ │ │ ├── config_wizard_system.png │ │ │ │ │ ├── config_wizard_timer.png │ │ │ │ │ ├── event_recorder_rte.png │ │ │ │ │ ├── manage_rte_cortex-a.png │ │ │ │ │ ├── config_wizard_memPool.png │ │ │ │ │ ├── config_wizard_msgQueue.png │ │ │ │ │ ├── config_wizard_threads.png │ │ │ │ │ ├── cmsis_rtos_file_structure.vsd │ │ │ │ │ ├── config_wizard_eventFlags.png │ │ │ │ │ ├── config_wizard_semaphore.png │ │ │ │ │ ├── config_wizard_evtrecGlobIni.png │ │ │ │ │ ├── config_wizard_evtrecGeneration.png │ │ │ │ │ ├── config_wizard_evtrecGlobEvtFiltSetup.png │ │ │ │ │ └── config_wizard_evtrecRTOSEvtFilterSetup.png │ │ │ ├── Doxygen_Templates │ │ │ │ ├── check.png │ │ │ │ ├── tab_topnav.png │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ ├── cmsis_footer.js │ │ │ │ └── cmsis_footer.html │ │ │ ├── Core │ │ │ │ └── src │ │ │ │ │ ├── images │ │ │ │ │ ├── MemoryMap_S.png │ │ │ │ │ ├── Registers.png │ │ │ │ │ ├── TZ_context.png │ │ │ │ │ ├── CMSIS_V3_V5.pptx │ │ │ │ │ ├── MemoryMap_NS.png │ │ │ │ │ ├── SimpleUseCase.png │ │ │ │ │ ├── ARMv8-M_images.pptx │ │ │ │ │ ├── CMSIS_CORE_Files.png │ │ │ │ │ ├── CMSIS_TZ_files.png │ │ │ │ │ └── CMSIS_CORE_Files_USER.png │ │ │ │ │ └── Ref_MVE.txt │ │ │ ├── General │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ └── Overview.png │ │ │ ├── Core_A │ │ │ │ └── src │ │ │ │ │ ├── images │ │ │ │ │ ├── CMSIS_Core_A.pptx │ │ │ │ │ ├── CMSIS_CORE_A_Files.png │ │ │ │ │ └── CMSIS_CORE_A_Files_user.png │ │ │ │ │ └── cmsis_compiler.txt │ │ │ ├── SVD │ │ │ │ └── src │ │ │ │ │ └── images │ │ │ │ │ ├── CMSIS_SVD_Schema_Gen.png │ │ │ │ │ ├── CMSIS_SVD_Schema_Gen.vsd │ │ │ │ │ └── SystemViewer_Generated.PNG │ │ │ └── index.html │ │ ├── RTOS │ │ │ ├── Template │ │ │ │ ├── Hist.txt │ │ │ │ ├── system_LPC177x_8x.c │ │ │ │ ├── CPP │ │ │ │ │ ├── rtos.h │ │ │ │ │ └── Semaphore.cpp │ │ │ │ └── my_objects.h │ │ │ └── CMSIS_RTOS_Tutorial.pdf │ │ ├── DSP │ │ │ └── README.md │ │ ├── DAP │ │ │ └── Firmware │ │ │ │ ├── Examples │ │ │ │ ├── LPC-Link2 │ │ │ │ │ └── README.md │ │ │ │ └── MCU-LINK │ │ │ │ │ └── DebugConfig │ │ │ │ │ └── MCU-Link_LPC55S69JBD64_cm33_core0.dbgconf │ │ │ │ └── Validation │ │ │ │ └── MDK5 │ │ │ │ └── RTE │ │ │ │ └── _CMSIS_DAP │ │ │ │ └── RTE_Components.h │ │ └── NN │ │ │ └── README.md │ ├── Scalable Software Stack.pdf │ ├── CMSIS_Review_Meeting_2020.pdf │ ├── docker │ │ ├── requirements.txt │ │ └── rtebuild │ │ │ └── toolchain.rtebuild │ ├── Device │ │ ├── _Template_Flash │ │ │ ├── Abstract.txt │ │ │ └── Target.lin │ │ ├── ARM │ │ │ ├── ARMCM0 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM1 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM23 │ │ │ │ ├── Source │ │ │ │ │ └── GCC │ │ │ │ │ │ └── gcc_arm.ld │ │ │ │ └── Debug │ │ │ │ │ └── ARMv8MBL.dbgconf │ │ │ ├── ARMCM3 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM33 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM4 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM55 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM7 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM85 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMCM35P │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMSC000 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMSC300 │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMv81MML │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMv8MBL │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ ├── ARMv8MML │ │ │ │ └── Source │ │ │ │ │ └── GCC │ │ │ │ │ └── gcc_arm.ld │ │ │ └── ARMCM0plus │ │ │ │ └── Source │ │ │ │ └── GCC │ │ │ │ └── gcc_arm.ld │ │ └── _Template_Vendor │ │ │ └── Vendor │ │ │ └── Device │ │ │ └── Source │ │ │ └── GCC │ │ │ └── gcc_arm.ld │ ├── .github │ │ ├── fileheader.json │ │ ├── linkchecker.json │ │ └── xmllint.json │ ├── .gitattributes │ └── .gitignore └── printf │ ├── .gitattributes │ └── codecov.yml ├── utils ├── misc.exe ├── misc.res ├── uv-k5_small.fon ├── uv-k5_small_bold.fon ├── misc.bpf └── clean.bat ├── images ├── AM_fix.mp4 ├── batcal.jpg ├── image1.png ├── image2.png ├── image3.png ├── main.jpg ├── audiobar.jpg ├── rssibar.jpg ├── spectrum.jpg ├── codespace1.png └── codespace2.png ├── printf_config.h ├── .gitignore ├── compile-with-docker.sh ├── compile-with-docker.bat ├── app ├── flashlight.h ├── common.h └── chFrScanner.h ├── version.c ├── Dockerfile ├── Doxyfile └── driver └── gpio.c /external/CMSIS_5/CMSIS/Pack/Bash/Include/component.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/Pack/Bash/Source/component.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/RTOS2/RTX/Examples/TrustZoneV8M/RTOS/Abstract.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/NoRTOS/Abstract.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Project/cpacklist.txt: -------------------------------------------------------------------------------- 1 | ARM.CMSIS.5.9.0 2 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS_Faults/Abstract.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /utils/misc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/utils/misc.exe -------------------------------------------------------------------------------- /utils/misc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/utils/misc.res -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /images/AM_fix.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/AM_fix.mp4 -------------------------------------------------------------------------------- /images/batcal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/batcal.jpg -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/image1.png -------------------------------------------------------------------------------- /images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/image2.png -------------------------------------------------------------------------------- /images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/image3.png -------------------------------------------------------------------------------- /images/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/main.jpg -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/navtreeindex0.js: -------------------------------------------------------------------------------- 1 | var NAVTREEINDEX0 = 2 | { 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /images/audiobar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/audiobar.jpg -------------------------------------------------------------------------------- /images/rssibar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/rssibar.jpg -------------------------------------------------------------------------------- /images/spectrum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/spectrum.jpg -------------------------------------------------------------------------------- /images/codespace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/codespace1.png -------------------------------------------------------------------------------- /images/codespace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/images/codespace2.png -------------------------------------------------------------------------------- /utils/uv-k5_small.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/utils/uv-k5_small.fon -------------------------------------------------------------------------------- /utils/uv-k5_small_bold.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/utils/uv-k5_small_bold.fon -------------------------------------------------------------------------------- /utils/misc.bpf: -------------------------------------------------------------------------------- 1 | This file is used by the project manager only and should be treated like the project file 2 | 3 | main 4 | -------------------------------------------------------------------------------- /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_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/namespaces_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['train',['train',['../namespacetrain.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/Scalable Software Stack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Scalable Software Stack.pdf -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/Hist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/RTOS/Template/Hist.txt -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS_Review_Meeting_2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS_Review_Meeting_2020.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/CMSIS/DoxyGen/DAP/CMSIS_DAP.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/open.png -------------------------------------------------------------------------------- /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/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2cl.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mo.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2ns.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/bc_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/bdwn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2cl.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mo.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2ns.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/open.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/CMSIS_DAP2.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/doxygen.png -------------------------------------------------------------------------------- /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/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2blank.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2doc.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2link.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2node.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2pnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/closed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_f.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_g.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/nav_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_b.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_h.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_s.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/CMSIS_RTOS_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/RTOS/CMSIS_RTOS_Tutorial.pdf -------------------------------------------------------------------------------- /external/CMSIS_5/Device/_Template_Flash/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/_Template_Flash/Abstract.txt -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/doxygen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2doc.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2link.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2node.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/sync_on.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/RTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/RTE.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/dotProduct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/dotProduct.gif -------------------------------------------------------------------------------- /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/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/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/sync_off.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GUI.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/mpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/mpu.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2blank.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2pnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB.png -------------------------------------------------------------------------------- /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/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/close.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/WiFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/WiFi.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderopen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2lastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2plastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2splitbar.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2vertline.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/close.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Mutex.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Timer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Mutex.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Timer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Zone.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Zone.vsdx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/images.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/images.odp -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS/Template/system_LPC177x_8x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/RTOS/Template/system_LPC177x_8x.c -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM0/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMCM0/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM1/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMCM1/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM23/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMCM33/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM4/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMCM85/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS-Toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS-Toolbox.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2lastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2plastnode.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2splitbar.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2vertline.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/close.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Flash.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/search/search_r.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/check.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/NN/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/add_item.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/PC-Lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/PC-Lint.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mempool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mempool.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Buttons.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjName.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/res_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/res_prop.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_map.png -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM35P/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMCM35P/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMSC000/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMv8MML/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/ftv2folderopen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Build/html/search/search_r.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/MemoryMap_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/Registers.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/TZ_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/TZ_context.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Device.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_CDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_CDC.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_HID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_HID.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/SWD_Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DSP/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /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/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/variables_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z',['Z',['../namespacetrain.html#a7d8de51dbd2a144b4adb4dc15f614ade',1,'train']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Node.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Storage.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Storage.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image001.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image002.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image003.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image004.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image005.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/image006.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/General/src/images/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/General/src/images/Overview.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Pack/html/search/search_r.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MailQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Semaphore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/TimerValues.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MailQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphores.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/Semaphores.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/add_item.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/rtos_mpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/scheduling.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CM33_0Azone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CM33_0Azone.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSIS_Zone.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CoreResAsgn.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewProjWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewProjWiz.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneSec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneSec.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SaveButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SaveButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gen_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/generator.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/multicore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/multicore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/new_project.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/trustzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/trustzone.png -------------------------------------------------------------------------------- /external/CMSIS_5/Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/ARM/ARMCM0plus/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /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/DoxyGen/Core/src/images/CMSIS_V3_V5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/MemoryMap_NS.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/SimpleUseCase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/SimpleUseCase.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_DAP_FW_V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_DAP_FW_V1.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_Validation.png -------------------------------------------------------------------------------- /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/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/Doxygen_Templates/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/tab_topnav.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_BusMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_BusMode.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/API_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/API_Structure.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MessageQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/MessageQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/RTX_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/RTX_Structure.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/ThreadStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/ThreadStatus.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/config_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/config_wizard.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/simple_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/simple_signal.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocGlob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocGlob.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocSpec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocSpec.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocStat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MemAllocStat.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/MessageQueue.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/ThreadStatus.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TimerValues.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mutex_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/mutex_states.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseStart.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GenCodeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/GenCodeButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MCB400_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MCB400_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneCM33_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewZoneCM33_0.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SAML11_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/STM32L5_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDevice.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/blinky_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_wizard.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/muscaA1_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/muscaS1_zones.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/resource_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/resource_map.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/zone_project.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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.d 2 | *.o 3 | firmware 4 | /firmware.packed.bin 5 | /firmware.bin 6 | /compiled-firmware 7 | .cache 8 | compile_commands.json 9 | .vscode 10 | /docs 11 | k5_eeprom.raw 12 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/ARMv8-M_images.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_TZ_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_TZ_files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_Core_A.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_Core_A.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.png -------------------------------------------------------------------------------- /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/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/Driver/src/images/CAN_Bit_Timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/CAN_Bit_Timing.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_SpareArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NOR_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/PDSC_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_1BitBusMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SD_4BitBusMode.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SoftwarePacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SoftwarePacks.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/USB_Schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/USB_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_i2s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_pcm.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioRationale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioRationale.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_Logo_Final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/CMSIS_V3_small.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/own_lib_projwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/project_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/API_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/API_Structure.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/RTX5_Migrate1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/RTX5_Migrate1.PNG -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/own_lib_projwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/rtos_components.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/simple_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/simple_signal.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddMemoryBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddMemoryBlock.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddNewZoneButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/AddNewZoneButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/DelMemoryRegion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/DelMemoryRegion.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseRestart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/EclipseRestart.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/IRAM1_1Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/InstallPlugIns.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MyProjAZoneOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/MyProjAZoneOpen.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/PackMngrButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/PackMngrButton.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDeviceFrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SelectDeviceFrom.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SetProjectName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SetProjectName.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SpecifyRzoneFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/SpecifyRzoneFile.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_gpio_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_gpio_config.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gpio_pins_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/gpio_pins_config.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_from_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/import_projects.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/partition_h_l5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/partition_h_l5.png -------------------------------------------------------------------------------- /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/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_SWStack.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/CMSIS_Logo_Final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Doxygen_Templates/CMSIS_Logo_Final.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/I2C_BlockDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/NAND_Schematics.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/driver_sai_user.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/storage_sw_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/storage_sw_stack.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Reference_Section.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/Reference_Section.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/manage_rte_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/manage_rte_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/CMSIS_RTOS_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/KernelStackUsage.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/semaphore_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/semaphore_states.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/thread_watchdogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/thread_watchdogs.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewMemoryBlockWiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/NewMemoryBlockWiz.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_channel_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/dma_channel_config.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_output.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_resource_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_resource_map.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_proj_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/m2351_proj_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/window_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/window_preferences.png -------------------------------------------------------------------------------- /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 && cp firmware* compiled-firmware/" 4 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files_USER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core/src/images/CMSIS_CORE_Files_USER.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_INTERFACE2.png -------------------------------------------------------------------------------- /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_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/Driver/src/images/ComponentSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/ComponentSelection.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/EthernetSchematic.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_TimingDiagrams.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SAI_TimingDiagrams.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master1Slaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/SPI_Master3Slaves.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioComponentViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/vioComponentViewer.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/stack_usage_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS/src/images/stack_usage_watermark.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TheoryOfOperation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/TheoryOfOperation.pptx -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrec.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_mutex.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_system.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/manage_rte_cortex-a.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/CMSIS_SVD_Schema_Gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/SVD/src/images/SystemViewer_Generated.PNG -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSISPacksPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/CMSISPacksPreferences.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/OpenPackPerspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/OpenPackPerspective.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Partitioning_Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/Partitioning_Workflow.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjectExplorerWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/ProjectExplorerWindow.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_system_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/lpc55_system_startup.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/peripheral_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/peripheral_properties.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit_ISO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/CMSIS_DAP_Debug_Unit_ISO.png -------------------------------------------------------------------------------- /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/RTOS2/src/images/config_wizard_memPool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_msgQueue.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_threads.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_proj_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/hello_world_proj_window.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Core_A/src/images/CMSIS_CORE_A_Files_user.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom_WinUSBGIUD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/DAP/src/images/MDK_USB_Custom_WinUSBGIUD.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/RTOS2/src/images/cmsis_rtos_file_structure.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/cmsis_rtos_file_structure.vsd -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_eventFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_eventFlags.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_semaphore.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu_conf_and_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Zone/src/images/context_menu_conf_and_prop.png -------------------------------------------------------------------------------- /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/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/Device/_Template_Vendor/Vendor/Device/Source/GCC/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/Device/_Template_Vendor/Vendor/Device/Source/GCC/gcc_arm.ld -------------------------------------------------------------------------------- /compile-with-docker.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | docker build -t uvk5 . 3 | docker run --rm -v %CD%\compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app && make clean && make && cp firmware* compiled-firmware/" 4 | pause -------------------------------------------------------------------------------- /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/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/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/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/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/RTOS2/src/images/config_wizard_evtrecGlobIni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobIni.png -------------------------------------------------------------------------------- /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/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/Driver/src/images/Non_blocking_transmit_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/Driver/src/images/Non_blocking_transmit_small.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGeneration.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0/RTE/Device/ARMCM0/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0/RTE/Device/ARMCM0/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM3/RTE/Device/ARMCM3/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM3/RTE/Device/ARMCM3/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4/RTE/Device/ARMCM4/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4/RTE/Device/ARMCM4/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7/RTE/Device/ARMCM7/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7/RTE/Device/ARMCM7/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55NS/RTE/Device/ARMCM55/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S/RTE/Device/ARMCM55/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0plus/RTE/Device/ARMCM0P/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM0plus/RTE/Device/ARMCM0P/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4FP/RTE/Device/ARMCM4_FP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM4FP/RTE/Device/ARMCM4_FP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S_BL/RTE/Device/ARMCM55/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM55S_BL/RTE/Device/ARMCM55/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7DP/RTE/Device/ARMCM7_DP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM7SP/RTE/Device/ARMCM7_SP/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobEvtFiltSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecGlobEvtFiltSetup.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33/RTE/Device/ARMCM33_DSP_FP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33/RTE/Device/ARMCM33_DSP_FP/gcc_arm.ld -------------------------------------------------------------------------------- /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/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/RTOS2/src/images/config_wizard_evtrecRTOSEvtFilterSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/DoxyGen/RTOS2/src/images/config_wizard_evtrecRTOSEvtFilterSetup.png -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35P/RTE/Device/ARMCM35P_DSP_FP/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35P/RTE/Device/ARMCM35P_DSP_FP/gcc_arm.ld -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/flashlight.h: -------------------------------------------------------------------------------- 1 | #ifndef APP_FLASHLIGHT_H 2 | #define APP_FLASHLIGHT_H 3 | 4 | #ifdef ENABLE_FLASHLIGHT 5 | 6 | #include 7 | 8 | void FlashlightTimeSlice(void); 9 | void ACTION_FlashLight(void); 10 | 11 | #endif 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33NS/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33NS/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM33S/RTE/Device/ARMCM33_DSP_FP_TZ/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0 -------------------------------------------------------------------------------- /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/CoreValidation/Layer/Target/CM33S_BL/RTE/Device/ARMCM33_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/CM35PNS/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM35PS/RTE/Device/ARMCM35P_DSP_FP_TZ/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/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85NS/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0 -------------------------------------------------------------------------------- /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/CoreValidation/Layer/Target/CM35PS_BL/RTE/Device/ARMCM35P_DSP_FP_TZ/gcc_arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/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/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hean01/uv-k5-firmware-custom/main/external/CMSIS_5/CMSIS/CoreValidation/Layer/Target/CM85S_BL/RTE/Device/ARMCM85/gcc_arm.ld.base@1.0.0 -------------------------------------------------------------------------------- /app/common.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 | 13 | #endif -------------------------------------------------------------------------------- /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/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__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 | ]; -------------------------------------------------------------------------------- /version.c: -------------------------------------------------------------------------------- 1 | 2 | #ifdef VERSION_STRING 3 | #define VER " "VERSION_STRING 4 | #else 5 | #define VER "" 6 | #endif 7 | 8 | 9 | const char Version[] = AUTHOR_STRING VER; 10 | const char UART_Version[] = "UV-K5 Firmware, Open Edition, " AUTHOR_STRING VER "\r\n"; 11 | 12 | -------------------------------------------------------------------------------- /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/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/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/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/.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/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/.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/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/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/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/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/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/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/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/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/.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/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_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/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/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__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/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/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/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/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/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/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/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/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/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 | ]; -------------------------------------------------------------------------------- /utils/clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del /S /Q *.~* 4 | del /S /Q *.map 5 | del /S /Q *.tds 6 | del /S /Q *.obj 7 | del /S /Q *.db 8 | del /S /Q *.ilc 9 | del /S /Q *.ild 10 | del /S /Q *.ilf 11 | del /S /Q *.ils 12 | del /S /Q *.dcu 13 | del /S /Q *.dsk 14 | 15 | rd /S /Q Debug 16 | rd /S /Q Release 17 | rd /S /Q ipch 18 | 19 | del /S gain_table.c 20 | del /S uv-k5_small.c 21 | del /S uv-k5_small_bold.c 22 | 23 | ::pause 24 | @echo on 25 | -------------------------------------------------------------------------------- /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 >>> -------------------------------------------------------------------------------- /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/ 13 | -------------------------------------------------------------------------------- /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/DAP/Firmware/Examples/LPC-Link2/README.md: -------------------------------------------------------------------------------- 1 | CMSIS-DAP v2 firmware for NXP LPC-Link2 debug probe. 2 | 3 | CMSIS-DAP v2 uses USB bulk endpoints for the communication with the host PC and is therefore faster. 4 | Optionally, support for streaming SWO trace is provided via an additional USB endpoint. 5 | 6 | Following targets are available: 7 | - LPC-Link2: stand-alone debug probe 8 | - LPC-Link2 on-board: on-board debug probe (LPC55S69-EVK, MIMXRT1064-EVK, ...) 9 | -------------------------------------------------------------------------------- /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/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/DAP/Firmware/Validation/MDK5/RTE/_CMSIS_DAP/RTE_Components.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Auto generated Run-Time-Environment Configuration File 4 | * *** Do not modify ! *** 5 | * 6 | * Project: 'Validation' 7 | * Target: 'CMSIS_DAP' 8 | */ 9 | 10 | #ifndef RTE_COMPONENTS_H 11 | #define RTE_COMPONENTS_H 12 | 13 | 14 | /* 15 | * Define the Device Header File: 16 | */ 17 | #define CMSIS_device_header "ARMCM3.h" 18 | 19 | 20 | 21 | #endif /* RTE_COMPONENTS_H */ 22 | -------------------------------------------------------------------------------- /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_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/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/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/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/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_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/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/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/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/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/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/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/DoxyGen/DSP/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- 1 | OUTPUT_DIRECTORY = docs 2 | GENERATE_LATEX = NO 3 | GENERATE_RTF = NO 4 | GENERATE_MAN = NO 5 | OPTIMIZE_OUTPUT_FOR_C = YES 6 | HAVE_DOT = YES 7 | EXTRACT_ALL = YES 8 | EXTRACT_PRIVATE = YES 9 | EXTRACT_STATIC = YES 10 | CALL_GRAPH = YES 11 | CALLER_GRAPH = YES 12 | DISABLE_INDEX = YES 13 | GENERATE_TREEVIEW = YES 14 | RECURSIVE = YES 15 | COLLABORATION_GRAPH = YES 16 | GRAPHICAL_HIERARCHY = YES 17 | DOT_MULTI_TARGETS = YES 18 | -------------------------------------------------------------------------------- /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/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/Doxygen_Templates/cmsis_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /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/DAP/Firmware/Examples/MCU-LINK/DebugConfig/MCU-Link_LPC55S69JBD64_cm33_core0.dbgconf: -------------------------------------------------------------------------------- 1 | // <<< Use Configuration Wizard in Context Menu >>> 2 | 3 | // SWO pin 4 | // The SWO (Serial Wire Output) pin optionally provides data from the ITM 5 | // for an external debug tool to evaluate. 6 | // <0=> PIO0_10 7 | // <1=> PIO0_8 8 | SWO_Pin = 0; 9 | // 10 | 11 | // Debug Configuration 12 | // StopAfterBootloader Stop after Bootloader 13 | // 14 | Dbg_CR = 0x00000001; 15 | // 16 | 17 | 18 | // <<< end of configuration section >>> -------------------------------------------------------------------------------- /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/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/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/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/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_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/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/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/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/.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/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/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/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/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/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/.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/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/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/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/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/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/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/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/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 | -------------------------------------------------------------------------------- /driver/gpio.c: -------------------------------------------------------------------------------- 1 | /* Copyright 2023 Dual Tachyon 2 | * https://github.com/DualTachyon 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /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/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/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/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/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/CM35P/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/CM35PNS/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/CM35PS/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/CM35PS_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/CM4FP/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/CM55NS/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/CM55S/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/CM55S_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/CM7DP/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/CM7SP/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/CM85NS/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/CM85S/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/CM85S_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/RTOS2/RTX/Examples/TrustZoneV8M/NoRTOS/CM33_s/Abstract.txt: -------------------------------------------------------------------------------- 1 | This ARM Cortex-M33 secure/non-secure example project that 2 | shows the setup for TrustZone for ARMv8-M applications. 3 | The application uses CMSIS and can be executed on a Fixed 4 | Virtual Platform (FVP) simulation model. 5 | 6 | The application demonstrates function calls between secure 7 | and non-secure state. 8 | 9 | Secure application: 10 | - Setup code and start non-secure application. 11 | 12 | Non-secure application: 13 | - Calls a secure function from non-secure state. 14 | - Calls a secure function that call back to a non-secure function. 15 | 16 | Output: 17 | Variables used in this application can be viewed in the Debugger 18 | Watch window. -------------------------------------------------------------------------------- /external/CMSIS_5/CMSIS/RTOS2/RTX/Examples/TrustZoneV8M/RTOS/CM33_s/Abstract.txt: -------------------------------------------------------------------------------- 1 | This ARM Cortex-M33 secure/non-secure example project that 2 | shows the setup of the CMSIS-RTOS2 RTX for TrustZone for 3 | ARMv8-M applications. 4 | 5 | The application uses CMSIS and can be executed on a Fixed 6 | Virtual Platform (FVP) simulation model. The application 7 | demonstrates three RTOS threads. 8 | 9 | 10 | Secure application: 11 | - Setup code and start non-secure application. 12 | 13 | Non-secure application: 14 | - Calls a secure function from non-secure state. 15 | - Calls a secure function that call back to a non-secure function. 16 | 17 | Output: 18 | Variables used in this application can be viewed in the Debugger 19 | Watch window. -------------------------------------------------------------------------------- /app/chFrScanner.h: -------------------------------------------------------------------------------- 1 | #ifndef APP_CHFRSCANNER_H 2 | #define APP_CHFRSCANNER_H 3 | 4 | #include 5 | #include 6 | 7 | // scan direction, if not equal SCAN_OFF indicates 8 | // that we are in a process of scanning channels/frequencies 9 | extern int8_t gScanStateDir; 10 | extern bool gScanKeepResult; 11 | extern bool gScanPauseMode; 12 | 13 | #ifdef ENABLE_SCAN_RANGES 14 | extern uint32_t gScanRangeStart; 15 | extern uint32_t gScanRangeStop; 16 | #endif 17 | 18 | void CHFRSCANNER_Found(void); 19 | void CHFRSCANNER_Stop(void); 20 | void CHFRSCANNER_Start(const bool storeBackupSettings, const int8_t scan_direction); 21 | void CHFRSCANNER_ContinueScanning(void); 22 | 23 | #endif --------------------------------------------------------------------------------