├── .clang-format ├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── Makefile ├── README.md ├── arch ├── board-init.c ├── crt1.S ├── intlevel-set.S └── rtos-help.c ├── benchmark ├── coremark │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── barebones │ │ ├── core_portme.c │ │ ├── core_portme.h │ │ ├── core_portme.mak │ │ ├── cvt.c │ │ └── ee_printf.c │ ├── core_list_join.c │ ├── core_main.c │ ├── core_matrix.c │ ├── core_state.c │ ├── core_util.c │ ├── coremark.h │ ├── coremark.md5 │ ├── cygwin │ │ └── core_portme.mak │ ├── docs │ │ ├── READM.md │ │ ├── balance_O0_joined.png │ │ ├── coremark_profile_o0_joined.png │ │ └── html │ │ │ ├── files │ │ │ ├── PIC32 │ │ │ │ └── core_portme-mak.html │ │ │ ├── core_list_join-c.html │ │ │ ├── core_main-c.html │ │ │ ├── core_matrix-c.html │ │ │ ├── core_state-c.html │ │ │ ├── core_util-c.html │ │ │ ├── coremark-h.html │ │ │ ├── docs │ │ │ │ └── core_state.png │ │ │ ├── linux │ │ │ │ ├── core_portme-c.html │ │ │ │ ├── core_portme-h.html │ │ │ │ └── core_portme-mak.html │ │ │ ├── readme-txt.html │ │ │ └── release_notes-txt.html │ │ │ ├── index.html │ │ │ ├── index │ │ │ ├── BuildTargets.html │ │ │ ├── Configuration.html │ │ │ ├── Configurations.html │ │ │ ├── Files.html │ │ │ ├── Functions.html │ │ │ ├── General.html │ │ │ ├── General2.html │ │ │ ├── Types.html │ │ │ └── Variables.html │ │ │ ├── javascript │ │ │ ├── main.js │ │ │ └── searchdata.js │ │ │ ├── search │ │ │ ├── BuildTargetsP.html │ │ │ ├── ConfigurationC.html │ │ │ ├── ConfigurationH.html │ │ │ ├── ConfigurationM.html │ │ │ ├── ConfigurationS.html │ │ │ ├── ConfigurationT.html │ │ │ ├── ConfigurationU.html │ │ │ ├── ConfigurationsH.html │ │ │ ├── ConfigurationsM.html │ │ │ ├── ConfigurationsS.html │ │ │ ├── ConfigurationsT.html │ │ │ ├── FilesC.html │ │ │ ├── FilesR.html │ │ │ ├── FunctionsC.html │ │ │ ├── FunctionsG.html │ │ │ ├── FunctionsI.html │ │ │ ├── FunctionsM.html │ │ │ ├── FunctionsP.html │ │ │ ├── FunctionsS.html │ │ │ ├── FunctionsT.html │ │ │ ├── GeneralB.html │ │ │ ├── GeneralC.html │ │ │ ├── GeneralD.html │ │ │ ├── GeneralF.html │ │ │ ├── GeneralG.html │ │ │ ├── GeneralH.html │ │ │ ├── GeneralI.html │ │ │ ├── GeneralL.html │ │ │ ├── GeneralM.html │ │ │ ├── GeneralO.html │ │ │ ├── GeneralP.html │ │ │ ├── GeneralR.html │ │ │ ├── GeneralS.html │ │ │ ├── GeneralT.html │ │ │ ├── GeneralU.html │ │ │ ├── GeneralV.html │ │ │ ├── GeneralW.html │ │ │ ├── NoResults.html │ │ │ ├── TypesS.html │ │ │ ├── VariablesC.html │ │ │ ├── VariablesD.html │ │ │ ├── VariablesL.html │ │ │ ├── VariablesO.html │ │ │ ├── VariablesP.html │ │ │ ├── VariablesR.html │ │ │ └── VariablesS.html │ │ │ └── styles │ │ │ ├── 1.css │ │ │ ├── 2.css │ │ │ └── main.css │ ├── freebsd │ │ └── core_portme.mak │ ├── linux │ │ └── core_portme.mak │ ├── macos │ │ └── core_portme.mak │ ├── posix │ │ ├── core_portme.c │ │ ├── core_portme.h │ │ ├── core_portme.mak │ │ └── core_portme_posix_overrides.h │ ├── rtems │ │ ├── core_portme.mak │ │ └── init.c │ ├── simple │ │ ├── core_portme.c │ │ ├── core_portme.h │ │ └── core_portme.mak │ └── xtensa │ │ ├── core_portme.c │ │ └── core_portme.h ├── dhry.h ├── dhry_1.c ├── dhry_2.c └── linpack-pc.c ├── host └── uboot-driver │ └── dsp │ ├── Kconfig │ ├── Makefile │ ├── common │ ├── Makefile │ ├── dsp_fdt.c │ ├── dsp_fdt.h │ ├── dsp_ic.h │ ├── dsp_img.c │ ├── dsp_img.h │ └── imgdts.h │ └── sun8iw20 │ ├── Makefile │ ├── dsp.c │ ├── dsp_reg.h │ └── platform.h ├── include ├── FreeRTOSConfig.h ├── freertos │ ├── FreeRTOS.h │ ├── event_groups.h │ ├── message_buffer.h │ ├── private │ │ ├── deprecated_definitions.h │ │ ├── list.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ └── stack_macros.h │ ├── queue.h │ ├── semphr.h │ ├── stream_buffer.h │ ├── task.h │ └── timers.h ├── platform.h └── xtensa │ ├── board.h │ ├── c6x-compat.h │ ├── cacheasm.h │ ├── cacheattrasm.h │ ├── config │ ├── core-isa.h │ ├── core-matmap.h │ ├── core.h │ ├── defs.h │ ├── specreg.h │ ├── system.h │ ├── tie-asm.h │ └── tie.h │ ├── core-macros.h │ ├── coreasm.h │ ├── corebits.h │ ├── hal.h │ ├── idmaasm.h │ ├── mpuasm.h │ ├── overlay.h │ ├── overlay_os_asm.h │ ├── simboard.h │ ├── simcall-errno.h │ ├── simcall-fcntl.h │ ├── simcall.h │ ├── specreg.h │ ├── tie │ ├── xt_FP.h │ ├── xt_MAC16.h │ ├── xt_MUL32.h │ ├── xt_booleans.h │ ├── xt_coprocessors.h │ ├── xt_core.h │ ├── xt_datacache.h │ ├── xt_debug.h │ ├── xt_density.h │ ├── xt_exceptions.h │ ├── xt_externalregisters.h │ ├── xt_hifi2.h │ ├── xt_hifi3.h │ ├── xt_hifi4.h │ ├── xt_instcache.h │ ├── xt_integerdivide.h │ ├── xt_interrupt.h │ ├── xt_misc.h │ ├── xt_mmu.h │ ├── xt_mul.h │ ├── xt_prefetch.h │ ├── xt_regwin.h │ ├── xt_scmpr.h │ ├── xt_sync.h │ ├── xt_timer.h │ └── xt_virtualops.h │ ├── trax-api.h │ ├── trax-core-config.h │ ├── trax-proto.h │ ├── trax-util.h │ ├── trax.h │ ├── traxfile.h │ ├── traxreg.h │ ├── uart-16550.h │ ├── xdm-regs.h │ ├── xmon.h │ ├── xtbsp.h │ ├── xtensa-libdb-macros.h │ ├── xtensa-versions.h │ ├── xtensa-xer.h │ ├── xtruntime-core-state.h │ ├── xtruntime-frames.h │ └── xtruntime.h ├── kernel ├── FreeRTOS │ ├── event_groups.c │ ├── list.c │ ├── queue.c │ ├── stream_buffer.c │ ├── tasks.c │ └── timers.c ├── MemMang │ ├── ReadMe.url │ ├── heap_1.c │ ├── heap_2.c │ ├── heap_3.c │ ├── heap_4.c │ └── heap_5.c └── portable │ ├── nmi-handler.c │ ├── port.c │ ├── portasm.S │ ├── portbenchmark.h │ ├── portclib.c │ ├── portmacro.h │ ├── porttrace.h │ ├── readme_xtensa.txt │ ├── relnotes.txt │ ├── xtensa_api.h │ ├── xtensa_config.h │ ├── xtensa_context.S │ ├── xtensa_context.h │ ├── xtensa_init.c │ ├── xtensa_intr.c │ ├── xtensa_intr_asm.S │ ├── xtensa_overlay_os_hook.c │ ├── xtensa_rtos.h │ ├── xtensa_timer.h │ ├── xtensa_vectors.S │ ├── xtos-internal.h │ └── xtos-params.h ├── lib ├── _sharedvectors-for-reset.o ├── _sharedvectors.o ├── _vectors.o ├── crt0-app.o ├── crt1-boards.o ├── crt1-sim.o ├── crt1-tiny.o ├── crtbegin.o ├── crtend.o ├── crti.o ├── crtn.o ├── hw_profile_interrupt.0.o ├── hw_profile_interrupt.1.o ├── libc++.a ├── libc++abi.a ├── libc++experimental.a ├── libc.a ├── libclang_rt.asan-preinit-xtensa.a ├── libclang_rt.asan-xtensa.a ├── libclang_rt.asan_cxx-xtensa.a ├── libclang_rt.profile-xtensa.a ├── libclang_rt.ubsan_minimal-xtensa.a ├── libclang_rt.ubsan_standalone-xtensa.a ├── libclang_rt.ubsan_standalone_cxx-xtensa.a ├── libdbfs.a ├── libfdt.a ├── libferret.a ├── libgcc.a ├── libgdbio.a ├── libgdbionss.a ├── libgloss.a ├── libhal.a ├── libhandler-reset-unpack.a ├── libhandler-reset.a ├── libhandlers-board.a ├── libhandlers-min.a ├── libhandlers-null.a ├── libhandlers-sim.a ├── libhwprofile0.a ├── libhwprofile1.a ├── libhwprofile_xtos.a ├── libinstr32.a ├── libinstr64.a ├── libinstrHW.a ├── libloader.a ├── libm.a ├── libminrt.a ├── libmloader.a ├── libnosyscall.a ├── liboverlay.a ├── libreftb.a ├── libsim.a ├── libstdc++.a ├── libstdc++11.a ├── libsupc++.a ├── libsupc++.la ├── libtinyrt.a ├── libtrax.a ├── libuart.a ├── libxipc-debug.a ├── libxipc-xos-debug.a ├── libxipc-xos.a ├── libxipc-xtos-debug.a ├── libxipc-xtos.a ├── libxipc.a ├── libxmon-debug.a ├── libxmon.a ├── libxmp-debug.a ├── libxmp-shared.a ├── libxmp.a ├── libxos-debug.a ├── libxos-ipa.a ├── libxos.a ├── libxrp-common.a ├── libxrp-dsp-hw-simple-xos.a ├── libxrp-dsp-hw-simple.a ├── libxrp-dsp.a ├── libxrp-host-single.a ├── libxrp-host-standalone.a ├── libxtav110.a ├── libxtav200.a ├── libxtav60.a ├── libxtisa.a ├── libxtkc705.a ├── libxtload.a ├── libxtml605.a └── libxtutil.a ├── link.ld ├── src ├── main.c └── msgbox.c └── tools └── bin2array ├── Makefile └── bin2array.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/README.md -------------------------------------------------------------------------------- /arch/board-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/arch/board-init.c -------------------------------------------------------------------------------- /arch/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/arch/crt1.S -------------------------------------------------------------------------------- /arch/intlevel-set.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/arch/intlevel-set.S -------------------------------------------------------------------------------- /arch/rtos-help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/arch/rtos-help.c -------------------------------------------------------------------------------- /benchmark/coremark/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/LICENSE.md -------------------------------------------------------------------------------- /benchmark/coremark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/Makefile -------------------------------------------------------------------------------- /benchmark/coremark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/README.md -------------------------------------------------------------------------------- /benchmark/coremark/barebones/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/barebones/core_portme.c -------------------------------------------------------------------------------- /benchmark/coremark/barebones/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/barebones/core_portme.h -------------------------------------------------------------------------------- /benchmark/coremark/barebones/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/barebones/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/barebones/cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/barebones/cvt.c -------------------------------------------------------------------------------- /benchmark/coremark/barebones/ee_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/barebones/ee_printf.c -------------------------------------------------------------------------------- /benchmark/coremark/core_list_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/core_list_join.c -------------------------------------------------------------------------------- /benchmark/coremark/core_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/core_main.c -------------------------------------------------------------------------------- /benchmark/coremark/core_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/core_matrix.c -------------------------------------------------------------------------------- /benchmark/coremark/core_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/core_state.c -------------------------------------------------------------------------------- /benchmark/coremark/core_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/core_util.c -------------------------------------------------------------------------------- /benchmark/coremark/coremark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/coremark.h -------------------------------------------------------------------------------- /benchmark/coremark/coremark.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/coremark.md5 -------------------------------------------------------------------------------- /benchmark/coremark/cygwin/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/cygwin/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/docs/READM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/READM.md -------------------------------------------------------------------------------- /benchmark/coremark/docs/balance_O0_joined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/balance_O0_joined.png -------------------------------------------------------------------------------- /benchmark/coremark/docs/coremark_profile_o0_joined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/coremark_profile_o0_joined.png -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/PIC32/core_portme-mak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/PIC32/core_portme-mak.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/core_list_join-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/core_list_join-c.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/core_main-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/core_main-c.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/core_matrix-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/core_matrix-c.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/core_state-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/core_state-c.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/core_util-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/core_util-c.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/coremark-h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/coremark-h.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/docs/core_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/docs/core_state.png -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/linux/core_portme-c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/linux/core_portme-c.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/linux/core_portme-h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/linux/core_portme-h.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/linux/core_portme-mak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/linux/core_portme-mak.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/readme-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/readme-txt.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/files/release_notes-txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/files/release_notes-txt.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/BuildTargets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/BuildTargets.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/Configuration.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/Configurations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/Configurations.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/Files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/Files.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/Functions.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/General.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/General.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/General2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/General2.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/Types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/Types.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/index/Variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/index/Variables.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/javascript/main.js -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/javascript/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/javascript/searchdata.js -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/BuildTargetsP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/BuildTargetsP.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationC.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationH.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationM.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationS.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationT.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationU.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationU.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationsH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationsH.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationsM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationsM.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationsS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationsS.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/ConfigurationsT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/ConfigurationsT.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FilesC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FilesC.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FilesR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FilesR.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsC.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsG.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsI.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsM.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsP.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsS.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/FunctionsT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/FunctionsT.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralB.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralC.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralD.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralF.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralG.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralH.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralH.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralI.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralL.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralM.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralO.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralP.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralR.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralS.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralT.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralU.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralU.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralV.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralV.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/GeneralW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/GeneralW.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/NoResults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/NoResults.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/TypesS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/TypesS.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesC.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesD.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesL.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesO.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesP.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesR.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/search/VariablesS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/search/VariablesS.html -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/styles/1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/styles/1.css -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/styles/2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/styles/2.css -------------------------------------------------------------------------------- /benchmark/coremark/docs/html/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/docs/html/styles/main.css -------------------------------------------------------------------------------- /benchmark/coremark/freebsd/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/freebsd/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/linux/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/linux/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/macos/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/macos/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/posix/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/posix/core_portme.c -------------------------------------------------------------------------------- /benchmark/coremark/posix/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/posix/core_portme.h -------------------------------------------------------------------------------- /benchmark/coremark/posix/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/posix/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/posix/core_portme_posix_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/posix/core_portme_posix_overrides.h -------------------------------------------------------------------------------- /benchmark/coremark/rtems/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/rtems/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/rtems/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/rtems/init.c -------------------------------------------------------------------------------- /benchmark/coremark/simple/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/simple/core_portme.c -------------------------------------------------------------------------------- /benchmark/coremark/simple/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/simple/core_portme.h -------------------------------------------------------------------------------- /benchmark/coremark/simple/core_portme.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/simple/core_portme.mak -------------------------------------------------------------------------------- /benchmark/coremark/xtensa/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/xtensa/core_portme.c -------------------------------------------------------------------------------- /benchmark/coremark/xtensa/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/coremark/xtensa/core_portme.h -------------------------------------------------------------------------------- /benchmark/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/dhry.h -------------------------------------------------------------------------------- /benchmark/dhry_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/dhry_1.c -------------------------------------------------------------------------------- /benchmark/dhry_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/dhry_2.c -------------------------------------------------------------------------------- /benchmark/linpack-pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/benchmark/linpack-pc.c -------------------------------------------------------------------------------- /host/uboot-driver/dsp/Kconfig: -------------------------------------------------------------------------------- 1 | config XTENSA_DSP 2 | bool "Support Xtensa DSP" 3 | default n 4 | -------------------------------------------------------------------------------- /host/uboot-driver/dsp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += sun8iw20/ common/ 2 | 3 | -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/Makefile -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/dsp_fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/dsp_fdt.c -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/dsp_fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/dsp_fdt.h -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/dsp_ic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/dsp_ic.h -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/dsp_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/dsp_img.c -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/dsp_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/dsp_img.h -------------------------------------------------------------------------------- /host/uboot-driver/dsp/common/imgdts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/common/imgdts.h -------------------------------------------------------------------------------- /host/uboot-driver/dsp/sun8iw20/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += dsp.o 2 | -------------------------------------------------------------------------------- /host/uboot-driver/dsp/sun8iw20/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/sun8iw20/dsp.c -------------------------------------------------------------------------------- /host/uboot-driver/dsp/sun8iw20/dsp_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/sun8iw20/dsp_reg.h -------------------------------------------------------------------------------- /host/uboot-driver/dsp/sun8iw20/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/host/uboot-driver/dsp/sun8iw20/platform.h -------------------------------------------------------------------------------- /include/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/FreeRTOSConfig.h -------------------------------------------------------------------------------- /include/freertos/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/FreeRTOS.h -------------------------------------------------------------------------------- /include/freertos/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/event_groups.h -------------------------------------------------------------------------------- /include/freertos/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/message_buffer.h -------------------------------------------------------------------------------- /include/freertos/private/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/deprecated_definitions.h -------------------------------------------------------------------------------- /include/freertos/private/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/list.h -------------------------------------------------------------------------------- /include/freertos/private/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/mpu_prototypes.h -------------------------------------------------------------------------------- /include/freertos/private/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/mpu_wrappers.h -------------------------------------------------------------------------------- /include/freertos/private/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/portable.h -------------------------------------------------------------------------------- /include/freertos/private/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/projdefs.h -------------------------------------------------------------------------------- /include/freertos/private/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/private/stack_macros.h -------------------------------------------------------------------------------- /include/freertos/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/queue.h -------------------------------------------------------------------------------- /include/freertos/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/semphr.h -------------------------------------------------------------------------------- /include/freertos/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/stream_buffer.h -------------------------------------------------------------------------------- /include/freertos/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/task.h -------------------------------------------------------------------------------- /include/freertos/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/freertos/timers.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/xtensa/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/board.h -------------------------------------------------------------------------------- /include/xtensa/c6x-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/c6x-compat.h -------------------------------------------------------------------------------- /include/xtensa/cacheasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/cacheasm.h -------------------------------------------------------------------------------- /include/xtensa/cacheattrasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/cacheattrasm.h -------------------------------------------------------------------------------- /include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /include/xtensa/config/core-matmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/core-matmap.h -------------------------------------------------------------------------------- /include/xtensa/config/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/core.h -------------------------------------------------------------------------------- /include/xtensa/config/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/defs.h -------------------------------------------------------------------------------- /include/xtensa/config/specreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/specreg.h -------------------------------------------------------------------------------- /include/xtensa/config/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/system.h -------------------------------------------------------------------------------- /include/xtensa/config/tie-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/tie-asm.h -------------------------------------------------------------------------------- /include/xtensa/config/tie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/config/tie.h -------------------------------------------------------------------------------- /include/xtensa/core-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/core-macros.h -------------------------------------------------------------------------------- /include/xtensa/coreasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/coreasm.h -------------------------------------------------------------------------------- /include/xtensa/corebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/corebits.h -------------------------------------------------------------------------------- /include/xtensa/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/hal.h -------------------------------------------------------------------------------- /include/xtensa/idmaasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/idmaasm.h -------------------------------------------------------------------------------- /include/xtensa/mpuasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/mpuasm.h -------------------------------------------------------------------------------- /include/xtensa/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/overlay.h -------------------------------------------------------------------------------- /include/xtensa/overlay_os_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/overlay_os_asm.h -------------------------------------------------------------------------------- /include/xtensa/simboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/simboard.h -------------------------------------------------------------------------------- /include/xtensa/simcall-errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/simcall-errno.h -------------------------------------------------------------------------------- /include/xtensa/simcall-fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/simcall-fcntl.h -------------------------------------------------------------------------------- /include/xtensa/simcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/simcall.h -------------------------------------------------------------------------------- /include/xtensa/specreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/specreg.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_FP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_FP.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_MAC16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_MAC16.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_MUL32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_MUL32.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_booleans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_booleans.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_coprocessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_coprocessors.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_core.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_datacache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_datacache.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_debug.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_density.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_density.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_exceptions.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_externalregisters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_externalregisters.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_hifi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_hifi2.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_hifi3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_hifi3.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_hifi4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_hifi4.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_instcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_instcache.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_integerdivide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_integerdivide.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_interrupt.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_misc.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_mmu.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_mul.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_prefetch.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_regwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_regwin.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_scmpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_scmpr.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_sync.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_timer.h -------------------------------------------------------------------------------- /include/xtensa/tie/xt_virtualops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/tie/xt_virtualops.h -------------------------------------------------------------------------------- /include/xtensa/trax-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/trax-api.h -------------------------------------------------------------------------------- /include/xtensa/trax-core-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/trax-core-config.h -------------------------------------------------------------------------------- /include/xtensa/trax-proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/trax-proto.h -------------------------------------------------------------------------------- /include/xtensa/trax-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/trax-util.h -------------------------------------------------------------------------------- /include/xtensa/trax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/trax.h -------------------------------------------------------------------------------- /include/xtensa/traxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/traxfile.h -------------------------------------------------------------------------------- /include/xtensa/traxreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/traxreg.h -------------------------------------------------------------------------------- /include/xtensa/uart-16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/uart-16550.h -------------------------------------------------------------------------------- /include/xtensa/xdm-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xdm-regs.h -------------------------------------------------------------------------------- /include/xtensa/xmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xmon.h -------------------------------------------------------------------------------- /include/xtensa/xtbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtbsp.h -------------------------------------------------------------------------------- /include/xtensa/xtensa-libdb-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtensa-libdb-macros.h -------------------------------------------------------------------------------- /include/xtensa/xtensa-versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtensa-versions.h -------------------------------------------------------------------------------- /include/xtensa/xtensa-xer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtensa-xer.h -------------------------------------------------------------------------------- /include/xtensa/xtruntime-core-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtruntime-core-state.h -------------------------------------------------------------------------------- /include/xtensa/xtruntime-frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtruntime-frames.h -------------------------------------------------------------------------------- /include/xtensa/xtruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/include/xtensa/xtruntime.h -------------------------------------------------------------------------------- /kernel/FreeRTOS/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/FreeRTOS/event_groups.c -------------------------------------------------------------------------------- /kernel/FreeRTOS/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/FreeRTOS/list.c -------------------------------------------------------------------------------- /kernel/FreeRTOS/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/FreeRTOS/queue.c -------------------------------------------------------------------------------- /kernel/FreeRTOS/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/FreeRTOS/stream_buffer.c -------------------------------------------------------------------------------- /kernel/FreeRTOS/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/FreeRTOS/tasks.c -------------------------------------------------------------------------------- /kernel/FreeRTOS/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/FreeRTOS/timers.c -------------------------------------------------------------------------------- /kernel/MemMang/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/MemMang/ReadMe.url -------------------------------------------------------------------------------- /kernel/MemMang/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/MemMang/heap_1.c -------------------------------------------------------------------------------- /kernel/MemMang/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/MemMang/heap_2.c -------------------------------------------------------------------------------- /kernel/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/MemMang/heap_3.c -------------------------------------------------------------------------------- /kernel/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/MemMang/heap_4.c -------------------------------------------------------------------------------- /kernel/MemMang/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/MemMang/heap_5.c -------------------------------------------------------------------------------- /kernel/portable/nmi-handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/nmi-handler.c -------------------------------------------------------------------------------- /kernel/portable/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/port.c -------------------------------------------------------------------------------- /kernel/portable/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/portasm.S -------------------------------------------------------------------------------- /kernel/portable/portbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/portbenchmark.h -------------------------------------------------------------------------------- /kernel/portable/portclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/portclib.c -------------------------------------------------------------------------------- /kernel/portable/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/portmacro.h -------------------------------------------------------------------------------- /kernel/portable/porttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/porttrace.h -------------------------------------------------------------------------------- /kernel/portable/readme_xtensa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/readme_xtensa.txt -------------------------------------------------------------------------------- /kernel/portable/relnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/relnotes.txt -------------------------------------------------------------------------------- /kernel/portable/xtensa_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_api.h -------------------------------------------------------------------------------- /kernel/portable/xtensa_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_config.h -------------------------------------------------------------------------------- /kernel/portable/xtensa_context.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_context.S -------------------------------------------------------------------------------- /kernel/portable/xtensa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_context.h -------------------------------------------------------------------------------- /kernel/portable/xtensa_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_init.c -------------------------------------------------------------------------------- /kernel/portable/xtensa_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_intr.c -------------------------------------------------------------------------------- /kernel/portable/xtensa_intr_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_intr_asm.S -------------------------------------------------------------------------------- /kernel/portable/xtensa_overlay_os_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_overlay_os_hook.c -------------------------------------------------------------------------------- /kernel/portable/xtensa_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_rtos.h -------------------------------------------------------------------------------- /kernel/portable/xtensa_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_timer.h -------------------------------------------------------------------------------- /kernel/portable/xtensa_vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtensa_vectors.S -------------------------------------------------------------------------------- /kernel/portable/xtos-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtos-internal.h -------------------------------------------------------------------------------- /kernel/portable/xtos-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/kernel/portable/xtos-params.h -------------------------------------------------------------------------------- /lib/_sharedvectors-for-reset.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/_sharedvectors-for-reset.o -------------------------------------------------------------------------------- /lib/_sharedvectors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/_sharedvectors.o -------------------------------------------------------------------------------- /lib/_vectors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/_vectors.o -------------------------------------------------------------------------------- /lib/crt0-app.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crt0-app.o -------------------------------------------------------------------------------- /lib/crt1-boards.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crt1-boards.o -------------------------------------------------------------------------------- /lib/crt1-sim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crt1-sim.o -------------------------------------------------------------------------------- /lib/crt1-tiny.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crt1-tiny.o -------------------------------------------------------------------------------- /lib/crtbegin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crtbegin.o -------------------------------------------------------------------------------- /lib/crtend.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crtend.o -------------------------------------------------------------------------------- /lib/crti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crti.o -------------------------------------------------------------------------------- /lib/crtn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/crtn.o -------------------------------------------------------------------------------- /lib/hw_profile_interrupt.0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/hw_profile_interrupt.0.o -------------------------------------------------------------------------------- /lib/hw_profile_interrupt.1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/hw_profile_interrupt.1.o -------------------------------------------------------------------------------- /lib/libc++.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libc++.a -------------------------------------------------------------------------------- /lib/libc++abi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libc++abi.a -------------------------------------------------------------------------------- /lib/libc++experimental.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libc++experimental.a -------------------------------------------------------------------------------- /lib/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libc.a -------------------------------------------------------------------------------- /lib/libclang_rt.asan-preinit-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.asan-preinit-xtensa.a -------------------------------------------------------------------------------- /lib/libclang_rt.asan-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.asan-xtensa.a -------------------------------------------------------------------------------- /lib/libclang_rt.asan_cxx-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.asan_cxx-xtensa.a -------------------------------------------------------------------------------- /lib/libclang_rt.profile-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.profile-xtensa.a -------------------------------------------------------------------------------- /lib/libclang_rt.ubsan_minimal-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.ubsan_minimal-xtensa.a -------------------------------------------------------------------------------- /lib/libclang_rt.ubsan_standalone-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.ubsan_standalone-xtensa.a -------------------------------------------------------------------------------- /lib/libclang_rt.ubsan_standalone_cxx-xtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libclang_rt.ubsan_standalone_cxx-xtensa.a -------------------------------------------------------------------------------- /lib/libdbfs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libdbfs.a -------------------------------------------------------------------------------- /lib/libfdt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libfdt.a -------------------------------------------------------------------------------- /lib/libferret.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libferret.a -------------------------------------------------------------------------------- /lib/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libgcc.a -------------------------------------------------------------------------------- /lib/libgdbio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libgdbio.a -------------------------------------------------------------------------------- /lib/libgdbionss.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libgdbionss.a -------------------------------------------------------------------------------- /lib/libgloss.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libgloss.a -------------------------------------------------------------------------------- /lib/libhal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhal.a -------------------------------------------------------------------------------- /lib/libhandler-reset-unpack.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhandler-reset-unpack.a -------------------------------------------------------------------------------- /lib/libhandler-reset.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhandler-reset.a -------------------------------------------------------------------------------- /lib/libhandlers-board.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhandlers-board.a -------------------------------------------------------------------------------- /lib/libhandlers-min.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhandlers-min.a -------------------------------------------------------------------------------- /lib/libhandlers-null.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhandlers-null.a -------------------------------------------------------------------------------- /lib/libhandlers-sim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhandlers-sim.a -------------------------------------------------------------------------------- /lib/libhwprofile0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhwprofile0.a -------------------------------------------------------------------------------- /lib/libhwprofile1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhwprofile1.a -------------------------------------------------------------------------------- /lib/libhwprofile_xtos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libhwprofile_xtos.a -------------------------------------------------------------------------------- /lib/libinstr32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libinstr32.a -------------------------------------------------------------------------------- /lib/libinstr64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libinstr64.a -------------------------------------------------------------------------------- /lib/libinstrHW.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libinstrHW.a -------------------------------------------------------------------------------- /lib/libloader.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libloader.a -------------------------------------------------------------------------------- /lib/libm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libm.a -------------------------------------------------------------------------------- /lib/libminrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libminrt.a -------------------------------------------------------------------------------- /lib/libmloader.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libmloader.a -------------------------------------------------------------------------------- /lib/libnosyscall.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libnosyscall.a -------------------------------------------------------------------------------- /lib/liboverlay.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/liboverlay.a -------------------------------------------------------------------------------- /lib/libreftb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libreftb.a -------------------------------------------------------------------------------- /lib/libsim.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libsim.a -------------------------------------------------------------------------------- /lib/libstdc++.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libstdc++.a -------------------------------------------------------------------------------- /lib/libstdc++11.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libstdc++11.a -------------------------------------------------------------------------------- /lib/libsupc++.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libsupc++.a -------------------------------------------------------------------------------- /lib/libsupc++.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libsupc++.la -------------------------------------------------------------------------------- /lib/libtinyrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libtinyrt.a -------------------------------------------------------------------------------- /lib/libtrax.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libtrax.a -------------------------------------------------------------------------------- /lib/libuart.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libuart.a -------------------------------------------------------------------------------- /lib/libxipc-debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxipc-debug.a -------------------------------------------------------------------------------- /lib/libxipc-xos-debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxipc-xos-debug.a -------------------------------------------------------------------------------- /lib/libxipc-xos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxipc-xos.a -------------------------------------------------------------------------------- /lib/libxipc-xtos-debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxipc-xtos-debug.a -------------------------------------------------------------------------------- /lib/libxipc-xtos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxipc-xtos.a -------------------------------------------------------------------------------- /lib/libxipc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxipc.a -------------------------------------------------------------------------------- /lib/libxmon-debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxmon-debug.a -------------------------------------------------------------------------------- /lib/libxmon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxmon.a -------------------------------------------------------------------------------- /lib/libxmp-debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxmp-debug.a -------------------------------------------------------------------------------- /lib/libxmp-shared.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxmp-shared.a -------------------------------------------------------------------------------- /lib/libxmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxmp.a -------------------------------------------------------------------------------- /lib/libxos-debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxos-debug.a -------------------------------------------------------------------------------- /lib/libxos-ipa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxos-ipa.a -------------------------------------------------------------------------------- /lib/libxos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxos.a -------------------------------------------------------------------------------- /lib/libxrp-common.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxrp-common.a -------------------------------------------------------------------------------- /lib/libxrp-dsp-hw-simple-xos.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxrp-dsp-hw-simple-xos.a -------------------------------------------------------------------------------- /lib/libxrp-dsp-hw-simple.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxrp-dsp-hw-simple.a -------------------------------------------------------------------------------- /lib/libxrp-dsp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxrp-dsp.a -------------------------------------------------------------------------------- /lib/libxrp-host-single.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxrp-host-single.a -------------------------------------------------------------------------------- /lib/libxrp-host-standalone.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxrp-host-standalone.a -------------------------------------------------------------------------------- /lib/libxtav110.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtav110.a -------------------------------------------------------------------------------- /lib/libxtav200.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtav200.a -------------------------------------------------------------------------------- /lib/libxtav60.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtav60.a -------------------------------------------------------------------------------- /lib/libxtisa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtisa.a -------------------------------------------------------------------------------- /lib/libxtkc705.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtkc705.a -------------------------------------------------------------------------------- /lib/libxtload.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtload.a -------------------------------------------------------------------------------- /lib/libxtml605.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtml605.a -------------------------------------------------------------------------------- /lib/libxtutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/lib/libxtutil.a -------------------------------------------------------------------------------- /link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/link.ld -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/src/main.c -------------------------------------------------------------------------------- /src/msgbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/src/msgbox.c -------------------------------------------------------------------------------- /tools/bin2array/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/tools/bin2array/Makefile -------------------------------------------------------------------------------- /tools/bin2array/bin2array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuzukiHD/FreeRTOS-HIFI4-DSP/HEAD/tools/bin2array/bin2array.c --------------------------------------------------------------------------------