├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── documentation-issue.md │ └── feature_request.md ├── SECURITY.md ├── actions │ └── url_verifier.sh ├── lexicon.txt ├── pull_request_template.md ├── scripts │ ├── find_replace.sh │ └── kernel_checker.py └── workflows │ ├── auto-release.yml │ ├── ci.yml │ ├── git-secrets.yml │ ├── kernel-checks.yml │ └── unit-tests.yml ├── .gitignore ├── GitHub-FreeRTOS-Kernel-Home.url ├── History.txt ├── LICENSE.md ├── License └── license.txt ├── Quick_Start_Guide.url ├── README.md ├── croutine.c ├── demos └── cadence │ └── sim │ ├── Makefile │ ├── README.TXT │ ├── common │ ├── application_code │ │ └── cadence_code │ │ │ ├── example.c │ │ │ ├── mpu_basic.c │ │ │ ├── overlay_test.c │ │ │ ├── perf_test.c │ │ │ ├── small_test.c │ │ │ ├── testcommon.h │ │ │ ├── timer_test1.c │ │ │ ├── timer_test2.c │ │ │ ├── var_freq.c │ │ │ ├── xt_alloca.c │ │ │ ├── xt_clib.c │ │ │ ├── xt_coproc.c │ │ │ └── xt_intr.c │ └── config_files │ │ └── FreeRTOSConfig.h │ └── xplorer │ └── ReadMe.txt ├── event_groups.c ├── include ├── FreeRTOS.h ├── StackMacros.h ├── atomic.h ├── croutine.h ├── deprecated_definitions.h ├── event_groups.h ├── list.h ├── message_buffer.h ├── mpu_prototypes.h ├── mpu_wrappers.h ├── portable.h ├── projdefs.h ├── queue.h ├── semphr.h ├── stack_macros.h ├── stdint.readme ├── stream_buffer.h ├── task.h └── timers.h ├── list.c ├── portable ├── ARMClang │ └── Use-the-GCC-ports.txt ├── ARMv8M │ ├── ReadMe.txt │ ├── copy_files.py │ ├── non_secure │ │ ├── ReadMe.txt │ │ ├── port.c │ │ ├── portable │ │ │ ├── GCC │ │ │ │ ├── ARM_CM23 │ │ │ │ │ ├── portasm.c │ │ │ │ │ └── portmacro.h │ │ │ │ ├── ARM_CM23_NTZ │ │ │ │ │ ├── portasm.c │ │ │ │ │ └── portmacro.h │ │ │ │ ├── ARM_CM33 │ │ │ │ │ ├── portasm.c │ │ │ │ │ └── portmacro.h │ │ │ │ └── ARM_CM33_NTZ │ │ │ │ │ ├── portasm.c │ │ │ │ │ └── portmacro.h │ │ │ └── IAR │ │ │ │ ├── ARM_CM23 │ │ │ │ ├── portasm.s │ │ │ │ └── portmacro.h │ │ │ │ ├── ARM_CM23_NTZ │ │ │ │ ├── portasm.s │ │ │ │ └── portmacro.h │ │ │ │ ├── ARM_CM33 │ │ │ │ ├── portasm.s │ │ │ │ └── portmacro.h │ │ │ │ └── ARM_CM33_NTZ │ │ │ │ ├── portasm.s │ │ │ │ └── portmacro.h │ │ └── portasm.h │ └── secure │ │ ├── ReadMe.txt │ │ ├── context │ │ ├── portable │ │ │ ├── GCC │ │ │ │ ├── ARM_CM23 │ │ │ │ │ └── secure_context_port.c │ │ │ │ └── ARM_CM33 │ │ │ │ │ └── secure_context_port.c │ │ │ └── IAR │ │ │ │ ├── ARM_CM23 │ │ │ │ ├── secure_context_port.c │ │ │ │ └── secure_context_port_asm.s │ │ │ │ └── ARM_CM33 │ │ │ │ ├── secure_context_port.c │ │ │ │ └── secure_context_port_asm.s │ │ ├── secure_context.c │ │ └── secure_context.h │ │ ├── heap │ │ ├── secure_heap.c │ │ └── secure_heap.h │ │ ├── init │ │ ├── secure_init.c │ │ └── secure_init.h │ │ └── macros │ │ └── secure_port_macros.h ├── BCC │ └── 16BitDOS │ │ ├── Flsh186 │ │ ├── port.c │ │ └── prtmacro.h │ │ ├── PC │ │ ├── port.c │ │ └── prtmacro.h │ │ └── common │ │ ├── portasm.h │ │ └── portcomn.c ├── CCS │ ├── ARM_CM3 │ │ ├── port.c │ │ ├── portasm.asm │ │ └── portmacro.h │ ├── ARM_CM4F │ │ ├── port.c │ │ ├── portasm.asm │ │ └── portmacro.h │ ├── ARM_Cortex-R4 │ │ ├── port.c │ │ ├── portASM.asm │ │ └── portmacro.h │ └── MSP430X │ │ ├── data_model.h │ │ ├── port.c │ │ ├── portext.asm │ │ └── portmacro.h ├── CodeWarrior │ ├── ColdFire_V1 │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── ColdFire_V2 │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ └── HCS12 │ │ ├── port.c │ │ └── portmacro.h ├── Common │ └── mpu_wrappers.c ├── GCC │ ├── ARM7_AT91FR40008 │ │ ├── port.c │ │ ├── portISR.c │ │ └── portmacro.h │ ├── ARM7_AT91SAM7S │ │ ├── AT91SAM7X256.h │ │ ├── ioat91sam7x256.h │ │ ├── lib_AT91SAM7X256.c │ │ ├── lib_AT91SAM7X256.h │ │ ├── port.c │ │ ├── portISR.c │ │ └── portmacro.h │ ├── ARM7_LPC2000 │ │ ├── port.c │ │ ├── portISR.c │ │ └── portmacro.h │ ├── ARM7_LPC23xx │ │ ├── port.c │ │ ├── portISR.c │ │ └── portmacro.h │ ├── ARM_CA53_64_BIT │ │ ├── port.c │ │ ├── portASM.S │ │ └── portmacro.h │ ├── ARM_CA9 │ │ ├── port.c │ │ ├── portASM.S │ │ └── portmacro.h │ ├── ARM_CM0 │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM23 │ │ ├── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.c │ │ │ ├── portasm.h │ │ │ └── portmacro.h │ │ └── secure │ │ │ ├── secure_context.c │ │ │ ├── secure_context.h │ │ │ ├── secure_context_port.c │ │ │ ├── secure_heap.c │ │ │ ├── secure_heap.h │ │ │ ├── secure_init.c │ │ │ ├── secure_init.h │ │ │ └── secure_port_macros.h │ ├── ARM_CM23_NTZ │ │ └── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.c │ │ │ ├── portasm.h │ │ │ └── portmacro.h │ ├── ARM_CM3 │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM33 │ │ ├── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.c │ │ │ ├── portasm.h │ │ │ └── portmacro.h │ │ └── secure │ │ │ ├── secure_context.c │ │ │ ├── secure_context.h │ │ │ ├── secure_context_port.c │ │ │ ├── secure_heap.c │ │ │ ├── secure_heap.h │ │ │ ├── secure_init.c │ │ │ ├── secure_init.h │ │ │ └── secure_port_macros.h │ ├── ARM_CM33_NTZ │ │ └── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.c │ │ │ ├── portasm.h │ │ │ └── portmacro.h │ ├── ARM_CM3_MPU │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM4F │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM4_MPU │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM7 │ │ ├── ReadMe.txt │ │ └── r0p1 │ │ │ ├── port.c │ │ │ └── portmacro.h │ ├── ARM_CR5 │ │ ├── port.c │ │ ├── portASM.S │ │ └── portmacro.h │ ├── ARM_CRx_No_GIC │ │ ├── port.c │ │ ├── portASM.S │ │ └── portmacro.h │ ├── ATMega323 │ │ ├── port.c │ │ └── portmacro.h │ ├── AVR32_UC3 │ │ ├── exception.S │ │ ├── port.c │ │ └── portmacro.h │ ├── AVR_AVRDx │ │ ├── port.c │ │ ├── porthardware.h │ │ └── portmacro.h │ ├── AVR_Mega0 │ │ ├── port.c │ │ ├── porthardware.h │ │ └── portmacro.h │ ├── CORTUS_APS3 │ │ ├── port.c │ │ └── portmacro.h │ ├── ColdFire_V2 │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── H8S2329 │ │ ├── port.c │ │ └── portmacro.h │ ├── HCS12 │ │ ├── port.c │ │ └── portmacro.h │ ├── IA32_flat │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portASM.S │ │ └── portmacro.h │ ├── MCF5235 │ │ └── readme.md │ ├── MSP430F449 │ │ ├── port.c │ │ └── portmacro.h │ ├── MicroBlaze │ │ ├── port.c │ │ ├── portasm.s │ │ └── portmacro.h │ ├── MicroBlazeV8 │ │ ├── port.c │ │ ├── port_exceptions.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── MicroBlazeV9 │ │ ├── port.c │ │ ├── port_exceptions.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── NiosII │ │ ├── port.c │ │ ├── port_asm.S │ │ └── portmacro.h │ ├── PPC405_Xilinx │ │ ├── FPU_Macros.h │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── PPC440_Xilinx │ │ ├── FPU_Macros.h │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── RISC-V │ │ ├── Documentation.url │ │ ├── chip_specific_extensions │ │ │ ├── Pulpino_Vega_RV32M1RM │ │ │ │ └── freertos_risc_v_chip_specific_extensions.h │ │ │ ├── RV32I_CLINT_no_extensions │ │ │ │ └── freertos_risc_v_chip_specific_extensions.h │ │ │ └── readme.txt │ │ ├── port.c │ │ ├── portASM.S │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RL78 │ │ ├── isr_support.h │ │ ├── port.c │ │ ├── portasm.S │ │ └── portmacro.h │ ├── RX100 │ │ ├── port.c │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX200 │ │ ├── port.c │ │ └── portmacro.h │ ├── RX600 │ │ ├── port.c │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX600v2 │ │ ├── port.c │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX700v3_DPFPU │ │ ├── port.c │ │ ├── portmacro.h │ │ └── readme.txt │ ├── STR75x │ │ ├── port.c │ │ ├── portISR.c │ │ └── portmacro.h │ └── TriCore_1782 │ │ ├── port.c │ │ ├── portmacro.h │ │ └── porttrap.c ├── IAR │ ├── 78K0R │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s26 │ │ └── portmacro.h │ ├── ARM_CA5_No_GIC │ │ ├── port.c │ │ ├── portASM.h │ │ ├── portASM.s │ │ └── portmacro.h │ ├── ARM_CA9 │ │ ├── port.c │ │ ├── portASM.h │ │ ├── portASM.s │ │ └── portmacro.h │ ├── ARM_CM0 │ │ ├── port.c │ │ ├── portasm.s │ │ └── portmacro.h │ ├── ARM_CM23 │ │ ├── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.h │ │ │ ├── portasm.s │ │ │ └── portmacro.h │ │ └── secure │ │ │ ├── secure_context.c │ │ │ ├── secure_context.h │ │ │ ├── secure_context_port.c │ │ │ ├── secure_context_port_asm.s │ │ │ ├── secure_heap.c │ │ │ ├── secure_heap.h │ │ │ ├── secure_init.c │ │ │ ├── secure_init.h │ │ │ └── secure_port_macros.h │ ├── ARM_CM23_NTZ │ │ └── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.h │ │ │ ├── portasm.s │ │ │ └── portmacro.h │ ├── ARM_CM3 │ │ ├── port.c │ │ ├── portasm.s │ │ └── portmacro.h │ ├── ARM_CM33 │ │ ├── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.h │ │ │ ├── portasm.s │ │ │ └── portmacro.h │ │ └── secure │ │ │ ├── secure_context.c │ │ │ ├── secure_context.h │ │ │ ├── secure_context_port.c │ │ │ ├── secure_context_port_asm.s │ │ │ ├── secure_heap.c │ │ │ ├── secure_heap.h │ │ │ ├── secure_init.c │ │ │ ├── secure_init.h │ │ │ └── secure_port_macros.h │ ├── ARM_CM33_NTZ │ │ └── non_secure │ │ │ ├── port.c │ │ │ ├── portasm.h │ │ │ ├── portasm.s │ │ │ └── portmacro.h │ ├── ARM_CM4F │ │ ├── port.c │ │ ├── portasm.s │ │ └── portmacro.h │ ├── ARM_CM4F_MPU │ │ ├── port.c │ │ ├── portasm.s │ │ └── portmacro.h │ ├── ARM_CM7 │ │ ├── ReadMe.txt │ │ └── r0p1 │ │ │ ├── port.c │ │ │ ├── portasm.s │ │ │ └── portmacro.h │ ├── ARM_CRx_No_GIC │ │ ├── port.c │ │ ├── portASM.s │ │ └── portmacro.h │ ├── ATMega323 │ │ ├── port.c │ │ ├── portmacro.h │ │ └── portmacro.s90 │ ├── AVR32_UC3 │ │ ├── exception.s82 │ │ ├── port.c │ │ ├── portmacro.h │ │ ├── read.c │ │ └── write.c │ ├── AVR_AVRDx │ │ ├── port.c │ │ ├── porthardware.h │ │ ├── portmacro.h │ │ └── portmacro.s90 │ ├── AVR_Mega0 │ │ ├── port.c │ │ ├── porthardware.h │ │ ├── portmacro.h │ │ └── portmacro.s90 │ ├── AtmelSAM7S64 │ │ ├── AT91SAM7S64.h │ │ ├── AT91SAM7S64_inc.h │ │ ├── AT91SAM7X128.h │ │ ├── AT91SAM7X128_inc.h │ │ ├── AT91SAM7X256.h │ │ ├── AT91SAM7X256_inc.h │ │ ├── ISR_Support.h │ │ ├── lib_AT91SAM7S64.h │ │ ├── lib_AT91SAM7X128.h │ │ ├── lib_AT91SAM7X256.h │ │ ├── port.c │ │ ├── portasm.s79 │ │ └── portmacro.h │ ├── AtmelSAM9XE │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s79 │ │ └── portmacro.h │ ├── LPC2000 │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s79 │ │ └── portmacro.h │ ├── MSP430 │ │ ├── port.c │ │ ├── portasm.h │ │ ├── portext.s43 │ │ └── portmacro.h │ ├── MSP430X │ │ ├── data_model.h │ │ ├── port.c │ │ ├── portext.s43 │ │ └── portmacro.h │ ├── RISC-V │ │ ├── Documentation.url │ │ ├── chip_specific_extensions │ │ │ ├── RV32I_CLINT_no_extensions │ │ │ │ └── freertos_risc_v_chip_specific_extensions.h │ │ │ └── readme.txt │ │ ├── port.c │ │ ├── portASM.s │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RL78 │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s87 │ │ └── portmacro.h │ ├── RX100 │ │ ├── port.c │ │ ├── port_asm.s │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX600 │ │ ├── port.c │ │ ├── port_asm.s │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX700v3_DPFPU │ │ ├── port.c │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RXv2 │ │ ├── port.c │ │ ├── port_asm.s │ │ ├── portmacro.h │ │ └── readme.txt │ ├── STR71x │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s79 │ │ └── portmacro.h │ ├── STR75x │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s79 │ │ └── portmacro.h │ ├── STR91x │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s79 │ │ └── portmacro.h │ └── V850ES │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── portasm.s85 │ │ ├── portasm_Fx3.s85 │ │ ├── portasm_Hx2.s85 │ │ └── portmacro.h ├── Keil │ └── See-also-the-RVDS-directory.txt ├── MPLAB │ ├── PIC18F │ │ ├── port.c │ │ ├── portmacro.h │ │ └── stdio.h │ ├── PIC24_dsPIC │ │ ├── port.c │ │ ├── portasm_PIC24.S │ │ ├── portasm_dsPIC.S │ │ └── portmacro.h │ ├── PIC32MEC14xx │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── port_asm.S │ │ └── portmacro.h │ ├── PIC32MX │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── port_asm.S │ │ └── portmacro.h │ └── PIC32MZ │ │ ├── ISR_Support.h │ │ ├── port.c │ │ ├── port_asm.S │ │ └── portmacro.h ├── MSVC-MingW │ ├── port.c │ └── portmacro.h ├── MemMang │ ├── ReadMe.url │ ├── heap_1.c │ ├── heap_2.c │ ├── heap_3.c │ ├── heap_4.c │ └── heap_5.c ├── MikroC │ └── ARM_CM4F │ │ ├── port.c │ │ └── portmacro.h ├── Paradigm │ └── Tern_EE │ │ ├── large_untested │ │ ├── port.c │ │ ├── portasm.h │ │ └── portmacro.h │ │ └── small │ │ ├── port.c │ │ ├── portasm.h │ │ └── portmacro.h ├── RVDS │ ├── ARM7_LPC21xx │ │ ├── port.c │ │ ├── portASM.s │ │ ├── portmacro.h │ │ └── portmacro.inc │ ├── ARM_CA9 │ │ ├── port.c │ │ ├── portASM.s │ │ ├── portmacro.h │ │ └── portmacro.inc │ ├── ARM_CM0 │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM3 │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM4F │ │ ├── port.c │ │ └── portmacro.h │ ├── ARM_CM4_MPU │ │ ├── port.c │ │ └── portmacro.h │ └── ARM_CM7 │ │ ├── ReadMe.txt │ │ └── r0p1 │ │ ├── port.c │ │ └── portmacro.h ├── Renesas │ ├── RX100 │ │ ├── port.c │ │ ├── port_asm.src │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX200 │ │ ├── port.c │ │ ├── port_asm.src │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX600 │ │ ├── port.c │ │ ├── port_asm.src │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX600v2 │ │ ├── port.c │ │ ├── port_asm.src │ │ ├── portmacro.h │ │ └── readme.txt │ ├── RX700v3_DPFPU │ │ ├── port.c │ │ ├── port_asm.src │ │ ├── portmacro.h │ │ └── readme.txt │ └── SH2A_FPU │ │ ├── ISR_Support.inc │ │ ├── port.c │ │ ├── portasm.src │ │ └── portmacro.h ├── Rowley │ ├── ARM7 │ │ └── readme.txt │ └── MSP430F449 │ │ ├── port.c │ │ ├── portasm.h │ │ ├── portext.asm │ │ └── portmacro.h ├── SDCC │ └── Cygnal │ │ ├── port.c │ │ └── portmacro.h ├── Softune │ ├── MB91460 │ │ ├── __STD_LIB_sbrk.c │ │ ├── port.c │ │ └── portmacro.h │ └── MB96340 │ │ ├── __STD_LIB_sbrk.c │ │ ├── port.c │ │ └── portmacro.h ├── Tasking │ └── ARM_CM4F │ │ ├── port.c │ │ ├── port_asm.asm │ │ └── portmacro.h ├── ThirdParty │ ├── CDK │ │ └── T-HEAD_CK802 │ │ │ ├── port.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ └── GCC │ │ ├── ARC_EM_HS │ │ ├── arc_freertos_exceptions.c │ │ ├── arc_freertos_exceptions.h │ │ ├── arc_support.s │ │ ├── freertos_tls.c │ │ ├── port.c │ │ └── portmacro.h │ │ ├── ARC_v1 │ │ ├── arc_freertos_exceptions.c │ │ ├── arc_freertos_exceptions.h │ │ ├── arc_support.s │ │ ├── port.c │ │ └── portmacro.h │ │ ├── ARM_CM33_TFM │ │ ├── README.md │ │ └── os_wrapper_freertos.c │ │ ├── ATmega │ │ ├── port.c │ │ ├── portmacro.h │ │ └── readme.md │ │ ├── Posix │ │ ├── FreeRTOS-simulator-for-Linux.url │ │ ├── port.c │ │ ├── portmacro.h │ │ └── utils │ │ │ ├── wait_for_event.c │ │ │ └── wait_for_event.h │ │ ├── RISC-V │ │ └── README-for-info-on-official-MIT-license-port.txt │ │ └── Xtensa_ESP32 │ │ ├── FreeRTOS-openocd.c │ │ ├── include │ │ ├── portbenchmark.h │ │ ├── portmacro.h │ │ ├── xt_asm_utils.h │ │ ├── xtensa_api.h │ │ ├── xtensa_config.h │ │ ├── xtensa_context.h │ │ ├── xtensa_rtos.h │ │ └── xtensa_timer.h │ │ ├── port.c │ │ ├── portasm.S │ │ ├── portmux_impl.h │ │ ├── portmux_impl.inc.h │ │ ├── xtensa_context.S │ │ ├── xtensa_init.c │ │ ├── xtensa_intr.c │ │ ├── xtensa_intr_asm.S │ │ ├── xtensa_loadstore_handler.S │ │ ├── xtensa_overlay_os_hook.c │ │ ├── xtensa_vector_defaults.S │ │ └── xtensa_vectors.S ├── WizC │ └── PIC18 │ │ ├── Drivers │ │ └── Tick │ │ │ ├── Tick.c │ │ │ └── isrTick.c │ │ ├── Install.bat │ │ ├── addFreeRTOS.h │ │ ├── port.c │ │ └── portmacro.h ├── XCC │ └── Xtensa │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── mpu.S │ │ ├── port.c │ │ ├── portasm.S │ │ ├── portbenchmark.h │ │ ├── portclib.c │ │ ├── portmacro.h │ │ ├── portmpu.c │ │ ├── porttrace.h │ │ ├── readme_xtensa.txt │ │ ├── relnotes.txt │ │ ├── xtensa_api.h │ │ ├── xtensa_config.h │ │ ├── xtensa_context.S │ │ ├── xtensa_context.h │ │ ├── xtensa_coproc_handler.S │ │ ├── xtensa_intr.c │ │ ├── xtensa_intr_asm.S │ │ ├── xtensa_intr_wrapper.c │ │ ├── xtensa_overlay_os_hook.c │ │ ├── xtensa_rtos.h │ │ ├── xtensa_timer.h │ │ ├── xtensa_vectors.S │ │ └── xtensa_vectors_xea3.S ├── oWatcom │ └── 16BitDOS │ │ ├── Flsh186 │ │ ├── port.c │ │ └── portmacro.h │ │ ├── PC │ │ ├── port.c │ │ └── portmacro.h │ │ └── common │ │ ├── portasm.h │ │ └── portcomn.c └── readme.txt ├── queue.c ├── stream_buffer.c ├── tasks.c └── timers.c /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/actions/url_verifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/actions/url_verifier.sh -------------------------------------------------------------------------------- /.github/lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/lexicon.txt -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/find_replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/scripts/find_replace.sh -------------------------------------------------------------------------------- /.github/scripts/kernel_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/scripts/kernel_checker.py -------------------------------------------------------------------------------- /.github/workflows/auto-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/workflows/auto-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/git-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/workflows/git-secrets.yml -------------------------------------------------------------------------------- /.github/workflows/kernel-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/workflows/kernel-checks.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | demos/cadence/sim/build/ 3 | -------------------------------------------------------------------------------- /GitHub-FreeRTOS-Kernel-Home.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/GitHub-FreeRTOS-Kernel-Home.url -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/History.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/LICENSE.md -------------------------------------------------------------------------------- /License/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/License/license.txt -------------------------------------------------------------------------------- /Quick_Start_Guide.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/Quick_Start_Guide.url -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/README.md -------------------------------------------------------------------------------- /croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/croutine.c -------------------------------------------------------------------------------- /demos/cadence/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/Makefile -------------------------------------------------------------------------------- /demos/cadence/sim/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/README.TXT -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/example.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/mpu_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/mpu_basic.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/overlay_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/overlay_test.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/perf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/perf_test.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/small_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/small_test.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/testcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/testcommon.h -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/timer_test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/timer_test1.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/timer_test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/timer_test2.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/var_freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/var_freq.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/xt_alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/xt_alloca.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/xt_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/xt_clib.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/xt_coproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/xt_coproc.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/application_code/cadence_code/xt_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/application_code/cadence_code/xt_intr.c -------------------------------------------------------------------------------- /demos/cadence/sim/common/config_files/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/demos/cadence/sim/common/config_files/FreeRTOSConfig.h -------------------------------------------------------------------------------- /demos/cadence/sim/xplorer/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The project file should be in this directory. -------------------------------------------------------------------------------- /event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/event_groups.c -------------------------------------------------------------------------------- /include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/FreeRTOS.h -------------------------------------------------------------------------------- /include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/StackMacros.h -------------------------------------------------------------------------------- /include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/atomic.h -------------------------------------------------------------------------------- /include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/croutine.h -------------------------------------------------------------------------------- /include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/deprecated_definitions.h -------------------------------------------------------------------------------- /include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/event_groups.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/list.h -------------------------------------------------------------------------------- /include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/message_buffer.h -------------------------------------------------------------------------------- /include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/mpu_prototypes.h -------------------------------------------------------------------------------- /include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/mpu_wrappers.h -------------------------------------------------------------------------------- /include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/portable.h -------------------------------------------------------------------------------- /include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/projdefs.h -------------------------------------------------------------------------------- /include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/queue.h -------------------------------------------------------------------------------- /include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/semphr.h -------------------------------------------------------------------------------- /include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/stack_macros.h -------------------------------------------------------------------------------- /include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/stdint.readme -------------------------------------------------------------------------------- /include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/stream_buffer.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/task.h -------------------------------------------------------------------------------- /include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/include/timers.h -------------------------------------------------------------------------------- /list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/list.c -------------------------------------------------------------------------------- /portable/ARMClang/Use-the-GCC-ports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMClang/Use-the-GCC-ports.txt -------------------------------------------------------------------------------- /portable/ARMv8M/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/ReadMe.txt -------------------------------------------------------------------------------- /portable/ARMv8M/copy_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/copy_files.py -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/ReadMe.txt -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/port.c -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portasm.c -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portasm.c -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portasm.c -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portasm.c -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM23/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM23/portasm.s -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM23/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM23/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM23_NTZ/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM23_NTZ/portasm.s -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM23_NTZ/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM23_NTZ/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM33/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM33/portasm.s -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM33/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM33/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM33_NTZ/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM33_NTZ/portasm.s -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portable/IAR/ARM_CM33_NTZ/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portable/IAR/ARM_CM33_NTZ/portmacro.h -------------------------------------------------------------------------------- /portable/ARMv8M/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/ARMv8M/secure/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/ReadMe.txt -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/portable/GCC/ARM_CM23/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/portable/GCC/ARM_CM23/secure_context_port.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/portable/GCC/ARM_CM33/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/portable/GCC/ARM_CM33/secure_context_port.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/portable/IAR/ARM_CM23/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/portable/IAR/ARM_CM23/secure_context_port.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/portable/IAR/ARM_CM23/secure_context_port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/portable/IAR/ARM_CM23/secure_context_port_asm.s -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/portable/IAR/ARM_CM33/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/portable/IAR/ARM_CM33/secure_context_port.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/portable/IAR/ARM_CM33/secure_context_port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/portable/IAR/ARM_CM33/secure_context_port_asm.s -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/secure_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/secure_context.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/context/secure_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/context/secure_context.h -------------------------------------------------------------------------------- /portable/ARMv8M/secure/heap/secure_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/heap/secure_heap.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/heap/secure_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/heap/secure_heap.h -------------------------------------------------------------------------------- /portable/ARMv8M/secure/init/secure_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/init/secure_init.c -------------------------------------------------------------------------------- /portable/ARMv8M/secure/init/secure_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/init/secure_init.h -------------------------------------------------------------------------------- /portable/ARMv8M/secure/macros/secure_port_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ARMv8M/secure/macros/secure_port_macros.h -------------------------------------------------------------------------------- /portable/BCC/16BitDOS/Flsh186/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/BCC/16BitDOS/Flsh186/port.c -------------------------------------------------------------------------------- /portable/BCC/16BitDOS/Flsh186/prtmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/BCC/16BitDOS/Flsh186/prtmacro.h -------------------------------------------------------------------------------- /portable/BCC/16BitDOS/PC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/BCC/16BitDOS/PC/port.c -------------------------------------------------------------------------------- /portable/BCC/16BitDOS/PC/prtmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/BCC/16BitDOS/PC/prtmacro.h -------------------------------------------------------------------------------- /portable/BCC/16BitDOS/common/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/BCC/16BitDOS/common/portasm.h -------------------------------------------------------------------------------- /portable/BCC/16BitDOS/common/portcomn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/BCC/16BitDOS/common/portcomn.c -------------------------------------------------------------------------------- /portable/CCS/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_CM3/port.c -------------------------------------------------------------------------------- /portable/CCS/ARM_CM3/portasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_CM3/portasm.asm -------------------------------------------------------------------------------- /portable/CCS/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /portable/CCS/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_CM4F/port.c -------------------------------------------------------------------------------- /portable/CCS/ARM_CM4F/portasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_CM4F/portasm.asm -------------------------------------------------------------------------------- /portable/CCS/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /portable/CCS/ARM_Cortex-R4/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_Cortex-R4/port.c -------------------------------------------------------------------------------- /portable/CCS/ARM_Cortex-R4/portASM.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_Cortex-R4/portASM.asm -------------------------------------------------------------------------------- /portable/CCS/ARM_Cortex-R4/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/ARM_Cortex-R4/portmacro.h -------------------------------------------------------------------------------- /portable/CCS/MSP430X/data_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/MSP430X/data_model.h -------------------------------------------------------------------------------- /portable/CCS/MSP430X/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/MSP430X/port.c -------------------------------------------------------------------------------- /portable/CCS/MSP430X/portext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/MSP430X/portext.asm -------------------------------------------------------------------------------- /portable/CCS/MSP430X/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CCS/MSP430X/portmacro.h -------------------------------------------------------------------------------- /portable/CodeWarrior/ColdFire_V1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/ColdFire_V1/port.c -------------------------------------------------------------------------------- /portable/CodeWarrior/ColdFire_V1/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/ColdFire_V1/portasm.S -------------------------------------------------------------------------------- /portable/CodeWarrior/ColdFire_V1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/ColdFire_V1/portmacro.h -------------------------------------------------------------------------------- /portable/CodeWarrior/ColdFire_V2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/ColdFire_V2/port.c -------------------------------------------------------------------------------- /portable/CodeWarrior/ColdFire_V2/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/ColdFire_V2/portasm.S -------------------------------------------------------------------------------- /portable/CodeWarrior/ColdFire_V2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/ColdFire_V2/portmacro.h -------------------------------------------------------------------------------- /portable/CodeWarrior/HCS12/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/HCS12/port.c -------------------------------------------------------------------------------- /portable/CodeWarrior/HCS12/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/CodeWarrior/HCS12/portmacro.h -------------------------------------------------------------------------------- /portable/Common/mpu_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Common/mpu_wrappers.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91FR40008/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91FR40008/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91FR40008/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91FR40008/portISR.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91FR40008/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91FR40008/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/AT91SAM7X256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/AT91SAM7X256.h -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/ioat91sam7x256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/ioat91sam7x256.h -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.h -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/portISR.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_AT91SAM7S/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_AT91SAM7S/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM7_LPC2000/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_LPC2000/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_LPC2000/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_LPC2000/portISR.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_LPC2000/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_LPC2000/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM7_LPC23xx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_LPC23xx/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_LPC23xx/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_LPC23xx/portISR.c -------------------------------------------------------------------------------- /portable/GCC/ARM7_LPC23xx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM7_LPC23xx/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CA53_64_BIT/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CA53_64_BIT/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CA53_64_BIT/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CA53_64_BIT/portASM.S -------------------------------------------------------------------------------- /portable/GCC/ARM_CA53_64_BIT/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CA53_64_BIT/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CA9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CA9/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CA9/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CA9/portASM.S -------------------------------------------------------------------------------- /portable/GCC/ARM_CA9/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CA9/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM0/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM0/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM0/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM0/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/non_secure/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/non_secure/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/non_secure/portasm.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_context.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_context.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_context_port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_heap.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_heap.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_init.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_init.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23/secure/secure_port_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23/secure/secure_port_macros.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23_NTZ/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23_NTZ/non_secure/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23_NTZ/non_secure/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23_NTZ/non_secure/portasm.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23_NTZ/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23_NTZ/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM23_NTZ/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM23_NTZ/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM3/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/non_secure/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/non_secure/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/non_secure/portasm.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_context.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_context.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_context_port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_heap.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_heap.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_init.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_init.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33/secure/secure_port_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33/secure/secure_port_macros.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33_NTZ/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33_NTZ/non_secure/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33_NTZ/non_secure/portasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33_NTZ/non_secure/portasm.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33_NTZ/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33_NTZ/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM33_NTZ/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM33_NTZ/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM3_MPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM3_MPU/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM3_MPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM3_MPU/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM4F/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM4_MPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM4_MPU/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM4_MPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM4_MPU/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CM7/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM7/ReadMe.txt -------------------------------------------------------------------------------- /portable/GCC/ARM_CM7/r0p1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM7/r0p1/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CM7/r0p1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CM7/r0p1/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CR5/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CR5/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CR5/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CR5/portASM.S -------------------------------------------------------------------------------- /portable/GCC/ARM_CR5/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CR5/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ARM_CRx_No_GIC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CRx_No_GIC/port.c -------------------------------------------------------------------------------- /portable/GCC/ARM_CRx_No_GIC/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CRx_No_GIC/portASM.S -------------------------------------------------------------------------------- /portable/GCC/ARM_CRx_No_GIC/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ARM_CRx_No_GIC/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ATMega323/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ATMega323/port.c -------------------------------------------------------------------------------- /portable/GCC/ATMega323/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ATMega323/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/AVR32_UC3/exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR32_UC3/exception.S -------------------------------------------------------------------------------- /portable/GCC/AVR32_UC3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR32_UC3/port.c -------------------------------------------------------------------------------- /portable/GCC/AVR32_UC3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR32_UC3/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/AVR_AVRDx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR_AVRDx/port.c -------------------------------------------------------------------------------- /portable/GCC/AVR_AVRDx/porthardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR_AVRDx/porthardware.h -------------------------------------------------------------------------------- /portable/GCC/AVR_AVRDx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR_AVRDx/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/AVR_Mega0/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR_Mega0/port.c -------------------------------------------------------------------------------- /portable/GCC/AVR_Mega0/porthardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR_Mega0/porthardware.h -------------------------------------------------------------------------------- /portable/GCC/AVR_Mega0/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/AVR_Mega0/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/CORTUS_APS3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/CORTUS_APS3/port.c -------------------------------------------------------------------------------- /portable/GCC/CORTUS_APS3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/CORTUS_APS3/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/ColdFire_V2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ColdFire_V2/port.c -------------------------------------------------------------------------------- /portable/GCC/ColdFire_V2/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ColdFire_V2/portasm.S -------------------------------------------------------------------------------- /portable/GCC/ColdFire_V2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/ColdFire_V2/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/H8S2329/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/H8S2329/port.c -------------------------------------------------------------------------------- /portable/GCC/H8S2329/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/H8S2329/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/HCS12/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/HCS12/port.c -------------------------------------------------------------------------------- /portable/GCC/HCS12/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/HCS12/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/IA32_flat/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/IA32_flat/ISR_Support.h -------------------------------------------------------------------------------- /portable/GCC/IA32_flat/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/IA32_flat/port.c -------------------------------------------------------------------------------- /portable/GCC/IA32_flat/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/IA32_flat/portASM.S -------------------------------------------------------------------------------- /portable/GCC/IA32_flat/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/IA32_flat/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/MCF5235/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MCF5235/readme.md -------------------------------------------------------------------------------- /portable/GCC/MSP430F449/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MSP430F449/port.c -------------------------------------------------------------------------------- /portable/GCC/MSP430F449/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MSP430F449/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/MicroBlaze/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlaze/port.c -------------------------------------------------------------------------------- /portable/GCC/MicroBlaze/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlaze/portasm.s -------------------------------------------------------------------------------- /portable/GCC/MicroBlaze/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlaze/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV8/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV8/port.c -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV8/port_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV8/port_exceptions.c -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV8/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV8/portasm.S -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV8/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV8/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV9/port.c -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV9/port_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV9/port_exceptions.c -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV9/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV9/portasm.S -------------------------------------------------------------------------------- /portable/GCC/MicroBlazeV9/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/MicroBlazeV9/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/NiosII/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/NiosII/port.c -------------------------------------------------------------------------------- /portable/GCC/NiosII/port_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/NiosII/port_asm.S -------------------------------------------------------------------------------- /portable/GCC/NiosII/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/NiosII/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/PPC405_Xilinx/FPU_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC405_Xilinx/FPU_Macros.h -------------------------------------------------------------------------------- /portable/GCC/PPC405_Xilinx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC405_Xilinx/port.c -------------------------------------------------------------------------------- /portable/GCC/PPC405_Xilinx/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC405_Xilinx/portasm.S -------------------------------------------------------------------------------- /portable/GCC/PPC405_Xilinx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC405_Xilinx/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/PPC440_Xilinx/FPU_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC440_Xilinx/FPU_Macros.h -------------------------------------------------------------------------------- /portable/GCC/PPC440_Xilinx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC440_Xilinx/port.c -------------------------------------------------------------------------------- /portable/GCC/PPC440_Xilinx/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC440_Xilinx/portasm.S -------------------------------------------------------------------------------- /portable/GCC/PPC440_Xilinx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/PPC440_Xilinx/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RISC-V/Documentation.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/Documentation.url -------------------------------------------------------------------------------- /portable/GCC/RISC-V/chip_specific_extensions/Pulpino_Vega_RV32M1RM/freertos_risc_v_chip_specific_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/chip_specific_extensions/Pulpino_Vega_RV32M1RM/freertos_risc_v_chip_specific_extensions.h -------------------------------------------------------------------------------- /portable/GCC/RISC-V/chip_specific_extensions/RV32I_CLINT_no_extensions/freertos_risc_v_chip_specific_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/chip_specific_extensions/RV32I_CLINT_no_extensions/freertos_risc_v_chip_specific_extensions.h -------------------------------------------------------------------------------- /portable/GCC/RISC-V/chip_specific_extensions/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/chip_specific_extensions/readme.txt -------------------------------------------------------------------------------- /portable/GCC/RISC-V/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/port.c -------------------------------------------------------------------------------- /portable/GCC/RISC-V/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/portASM.S -------------------------------------------------------------------------------- /portable/GCC/RISC-V/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RISC-V/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RISC-V/readme.txt -------------------------------------------------------------------------------- /portable/GCC/RL78/isr_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RL78/isr_support.h -------------------------------------------------------------------------------- /portable/GCC/RL78/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RL78/port.c -------------------------------------------------------------------------------- /portable/GCC/RL78/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RL78/portasm.S -------------------------------------------------------------------------------- /portable/GCC/RL78/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RL78/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RX100/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX100/port.c -------------------------------------------------------------------------------- /portable/GCC/RX100/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX100/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RX100/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX100/readme.txt -------------------------------------------------------------------------------- /portable/GCC/RX200/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX200/port.c -------------------------------------------------------------------------------- /portable/GCC/RX200/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX200/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RX600/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX600/port.c -------------------------------------------------------------------------------- /portable/GCC/RX600/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX600/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RX600/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX600/readme.txt -------------------------------------------------------------------------------- /portable/GCC/RX600v2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX600v2/port.c -------------------------------------------------------------------------------- /portable/GCC/RX600v2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX600v2/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RX600v2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX600v2/readme.txt -------------------------------------------------------------------------------- /portable/GCC/RX700v3_DPFPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX700v3_DPFPU/port.c -------------------------------------------------------------------------------- /portable/GCC/RX700v3_DPFPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX700v3_DPFPU/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/RX700v3_DPFPU/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/RX700v3_DPFPU/readme.txt -------------------------------------------------------------------------------- /portable/GCC/STR75x/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/STR75x/port.c -------------------------------------------------------------------------------- /portable/GCC/STR75x/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/STR75x/portISR.c -------------------------------------------------------------------------------- /portable/GCC/STR75x/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/STR75x/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/TriCore_1782/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/TriCore_1782/port.c -------------------------------------------------------------------------------- /portable/GCC/TriCore_1782/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/TriCore_1782/portmacro.h -------------------------------------------------------------------------------- /portable/GCC/TriCore_1782/porttrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/GCC/TriCore_1782/porttrap.c -------------------------------------------------------------------------------- /portable/IAR/78K0R/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/78K0R/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/78K0R/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/78K0R/port.c -------------------------------------------------------------------------------- /portable/IAR/78K0R/portasm.s26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/78K0R/portasm.s26 -------------------------------------------------------------------------------- /portable/IAR/78K0R/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/78K0R/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CA5_No_GIC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA5_No_GIC/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CA5_No_GIC/portASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA5_No_GIC/portASM.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CA5_No_GIC/portASM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA5_No_GIC/portASM.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CA5_No_GIC/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA5_No_GIC/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CA9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA9/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CA9/portASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA9/portASM.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CA9/portASM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA9/portASM.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CA9/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CA9/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM0/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM0/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM0/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM0/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM0/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM0/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/non_secure/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/non_secure/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/non_secure/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_context.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_context.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_context_port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_context_port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_context_port_asm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_heap.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_heap.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_init.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_init.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23/secure/secure_port_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23/secure/secure_port_macros.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23_NTZ/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23_NTZ/non_secure/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23_NTZ/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23_NTZ/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23_NTZ/non_secure/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23_NTZ/non_secure/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM23_NTZ/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM23_NTZ/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM3/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM3/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM3/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/non_secure/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/non_secure/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/non_secure/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_context.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_context.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_context_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_context_port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_context_port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_context_port_asm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_heap.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_heap.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_init.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_init.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33/secure/secure_port_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33/secure/secure_port_macros.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33_NTZ/non_secure/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33_NTZ/non_secure/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33_NTZ/non_secure/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33_NTZ/non_secure/portasm.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33_NTZ/non_secure/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33_NTZ/non_secure/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM33_NTZ/non_secure/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM33_NTZ/non_secure/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM4F/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM4F/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM4F/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM4F_MPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM4F_MPU/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM4F_MPU/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM4F_MPU/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM4F_MPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM4F_MPU/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CM7/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM7/ReadMe.txt -------------------------------------------------------------------------------- /portable/IAR/ARM_CM7/r0p1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM7/r0p1/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CM7/r0p1/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM7/r0p1/portasm.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CM7/r0p1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CM7/r0p1/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ARM_CRx_No_GIC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CRx_No_GIC/port.c -------------------------------------------------------------------------------- /portable/IAR/ARM_CRx_No_GIC/portASM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CRx_No_GIC/portASM.s -------------------------------------------------------------------------------- /portable/IAR/ARM_CRx_No_GIC/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ARM_CRx_No_GIC/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ATMega323/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ATMega323/port.c -------------------------------------------------------------------------------- /portable/IAR/ATMega323/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ATMega323/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/ATMega323/portmacro.s90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/ATMega323/portmacro.s90 -------------------------------------------------------------------------------- /portable/IAR/AVR32_UC3/exception.s82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR32_UC3/exception.s82 -------------------------------------------------------------------------------- /portable/IAR/AVR32_UC3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR32_UC3/port.c -------------------------------------------------------------------------------- /portable/IAR/AVR32_UC3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR32_UC3/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/AVR32_UC3/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR32_UC3/read.c -------------------------------------------------------------------------------- /portable/IAR/AVR32_UC3/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR32_UC3/write.c -------------------------------------------------------------------------------- /portable/IAR/AVR_AVRDx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_AVRDx/port.c -------------------------------------------------------------------------------- /portable/IAR/AVR_AVRDx/porthardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_AVRDx/porthardware.h -------------------------------------------------------------------------------- /portable/IAR/AVR_AVRDx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_AVRDx/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/AVR_AVRDx/portmacro.s90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_AVRDx/portmacro.s90 -------------------------------------------------------------------------------- /portable/IAR/AVR_Mega0/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_Mega0/port.c -------------------------------------------------------------------------------- /portable/IAR/AVR_Mega0/porthardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_Mega0/porthardware.h -------------------------------------------------------------------------------- /portable/IAR/AVR_Mega0/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_Mega0/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/AVR_Mega0/portmacro.s90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AVR_Mega0/portmacro.s90 -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/AT91SAM7S64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/AT91SAM7S64.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/AT91SAM7S64_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/AT91SAM7S64_inc.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/AT91SAM7X128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/AT91SAM7X128.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/AT91SAM7X128_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/AT91SAM7X128_inc.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/AT91SAM7X256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/AT91SAM7X256.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/AT91SAM7X256_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/AT91SAM7X256_inc.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/lib_AT91SAM7S64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/lib_AT91SAM7S64.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/lib_AT91SAM7X128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/lib_AT91SAM7X128.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/lib_AT91SAM7X256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/lib_AT91SAM7X256.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/port.c -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/portasm.s79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/portasm.s79 -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM7S64/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM7S64/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM9XE/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM9XE/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM9XE/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM9XE/port.c -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM9XE/portasm.s79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM9XE/portasm.s79 -------------------------------------------------------------------------------- /portable/IAR/AtmelSAM9XE/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/AtmelSAM9XE/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/LPC2000/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/LPC2000/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/LPC2000/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/LPC2000/port.c -------------------------------------------------------------------------------- /portable/IAR/LPC2000/portasm.s79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/LPC2000/portasm.s79 -------------------------------------------------------------------------------- /portable/IAR/LPC2000/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/LPC2000/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/MSP430/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430/port.c -------------------------------------------------------------------------------- /portable/IAR/MSP430/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430/portasm.h -------------------------------------------------------------------------------- /portable/IAR/MSP430/portext.s43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430/portext.s43 -------------------------------------------------------------------------------- /portable/IAR/MSP430/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/MSP430X/data_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430X/data_model.h -------------------------------------------------------------------------------- /portable/IAR/MSP430X/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430X/port.c -------------------------------------------------------------------------------- /portable/IAR/MSP430X/portext.s43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430X/portext.s43 -------------------------------------------------------------------------------- /portable/IAR/MSP430X/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/MSP430X/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RISC-V/Documentation.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/Documentation.url -------------------------------------------------------------------------------- /portable/IAR/RISC-V/chip_specific_extensions/RV32I_CLINT_no_extensions/freertos_risc_v_chip_specific_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/chip_specific_extensions/RV32I_CLINT_no_extensions/freertos_risc_v_chip_specific_extensions.h -------------------------------------------------------------------------------- /portable/IAR/RISC-V/chip_specific_extensions/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/chip_specific_extensions/readme.txt -------------------------------------------------------------------------------- /portable/IAR/RISC-V/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/port.c -------------------------------------------------------------------------------- /portable/IAR/RISC-V/portASM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/portASM.s -------------------------------------------------------------------------------- /portable/IAR/RISC-V/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RISC-V/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RISC-V/readme.txt -------------------------------------------------------------------------------- /portable/IAR/RL78/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RL78/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/RL78/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RL78/port.c -------------------------------------------------------------------------------- /portable/IAR/RL78/portasm.s87: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RL78/portasm.s87 -------------------------------------------------------------------------------- /portable/IAR/RL78/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RL78/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RX100/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX100/port.c -------------------------------------------------------------------------------- /portable/IAR/RX100/port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX100/port_asm.s -------------------------------------------------------------------------------- /portable/IAR/RX100/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX100/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RX100/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX100/readme.txt -------------------------------------------------------------------------------- /portable/IAR/RX600/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX600/port.c -------------------------------------------------------------------------------- /portable/IAR/RX600/port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX600/port_asm.s -------------------------------------------------------------------------------- /portable/IAR/RX600/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX600/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RX600/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX600/readme.txt -------------------------------------------------------------------------------- /portable/IAR/RX700v3_DPFPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX700v3_DPFPU/port.c -------------------------------------------------------------------------------- /portable/IAR/RX700v3_DPFPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX700v3_DPFPU/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RX700v3_DPFPU/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RX700v3_DPFPU/readme.txt -------------------------------------------------------------------------------- /portable/IAR/RXv2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RXv2/port.c -------------------------------------------------------------------------------- /portable/IAR/RXv2/port_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RXv2/port_asm.s -------------------------------------------------------------------------------- /portable/IAR/RXv2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RXv2/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/RXv2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/RXv2/readme.txt -------------------------------------------------------------------------------- /portable/IAR/STR71x/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR71x/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/STR71x/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR71x/port.c -------------------------------------------------------------------------------- /portable/IAR/STR71x/portasm.s79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR71x/portasm.s79 -------------------------------------------------------------------------------- /portable/IAR/STR71x/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR71x/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/STR75x/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR75x/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/STR75x/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR75x/port.c -------------------------------------------------------------------------------- /portable/IAR/STR75x/portasm.s79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR75x/portasm.s79 -------------------------------------------------------------------------------- /portable/IAR/STR75x/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR75x/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/STR91x/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR91x/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/STR91x/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR91x/port.c -------------------------------------------------------------------------------- /portable/IAR/STR91x/portasm.s79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR91x/portasm.s79 -------------------------------------------------------------------------------- /portable/IAR/STR91x/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/STR91x/portmacro.h -------------------------------------------------------------------------------- /portable/IAR/V850ES/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/V850ES/ISR_Support.h -------------------------------------------------------------------------------- /portable/IAR/V850ES/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/V850ES/port.c -------------------------------------------------------------------------------- /portable/IAR/V850ES/portasm.s85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/V850ES/portasm.s85 -------------------------------------------------------------------------------- /portable/IAR/V850ES/portasm_Fx3.s85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/V850ES/portasm_Fx3.s85 -------------------------------------------------------------------------------- /portable/IAR/V850ES/portasm_Hx2.s85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/V850ES/portasm_Hx2.s85 -------------------------------------------------------------------------------- /portable/IAR/V850ES/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/IAR/V850ES/portmacro.h -------------------------------------------------------------------------------- /portable/Keil/See-also-the-RVDS-directory.txt: -------------------------------------------------------------------------------- 1 | Nothing to see here. -------------------------------------------------------------------------------- /portable/MPLAB/PIC18F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC18F/port.c -------------------------------------------------------------------------------- /portable/MPLAB/PIC18F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC18F/portmacro.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC18F/stdio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /portable/MPLAB/PIC24_dsPIC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC24_dsPIC/port.c -------------------------------------------------------------------------------- /portable/MPLAB/PIC24_dsPIC/portasm_PIC24.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC24_dsPIC/portasm_PIC24.S -------------------------------------------------------------------------------- /portable/MPLAB/PIC24_dsPIC/portasm_dsPIC.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC24_dsPIC/portasm_dsPIC.S -------------------------------------------------------------------------------- /portable/MPLAB/PIC24_dsPIC/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC24_dsPIC/portmacro.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MEC14xx/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MEC14xx/ISR_Support.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MEC14xx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MEC14xx/port.c -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MEC14xx/port_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MEC14xx/port_asm.S -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MEC14xx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MEC14xx/portmacro.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MX/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MX/ISR_Support.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MX/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MX/port.c -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MX/port_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MX/port_asm.S -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MX/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MX/portmacro.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MZ/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MZ/ISR_Support.h -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MZ/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MZ/port.c -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MZ/port_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MZ/port_asm.S -------------------------------------------------------------------------------- /portable/MPLAB/PIC32MZ/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MPLAB/PIC32MZ/portmacro.h -------------------------------------------------------------------------------- /portable/MSVC-MingW/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MSVC-MingW/port.c -------------------------------------------------------------------------------- /portable/MSVC-MingW/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MSVC-MingW/portmacro.h -------------------------------------------------------------------------------- /portable/MemMang/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MemMang/ReadMe.url -------------------------------------------------------------------------------- /portable/MemMang/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MemMang/heap_1.c -------------------------------------------------------------------------------- /portable/MemMang/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MemMang/heap_2.c -------------------------------------------------------------------------------- /portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /portable/MemMang/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MemMang/heap_5.c -------------------------------------------------------------------------------- /portable/MikroC/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MikroC/ARM_CM4F/port.c -------------------------------------------------------------------------------- /portable/MikroC/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/MikroC/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /portable/Paradigm/Tern_EE/large_untested/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Paradigm/Tern_EE/large_untested/port.c -------------------------------------------------------------------------------- /portable/Paradigm/Tern_EE/large_untested/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Paradigm/Tern_EE/large_untested/portasm.h -------------------------------------------------------------------------------- /portable/Paradigm/Tern_EE/large_untested/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Paradigm/Tern_EE/large_untested/portmacro.h -------------------------------------------------------------------------------- /portable/Paradigm/Tern_EE/small/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Paradigm/Tern_EE/small/port.c -------------------------------------------------------------------------------- /portable/Paradigm/Tern_EE/small/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Paradigm/Tern_EE/small/portasm.h -------------------------------------------------------------------------------- /portable/Paradigm/Tern_EE/small/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Paradigm/Tern_EE/small/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM7_LPC21xx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM7_LPC21xx/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM7_LPC21xx/portASM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM7_LPC21xx/portASM.s -------------------------------------------------------------------------------- /portable/RVDS/ARM7_LPC21xx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM7_LPC21xx/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM7_LPC21xx/portmacro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM7_LPC21xx/portmacro.inc -------------------------------------------------------------------------------- /portable/RVDS/ARM_CA9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CA9/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM_CA9/portASM.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CA9/portASM.s -------------------------------------------------------------------------------- /portable/RVDS/ARM_CA9/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CA9/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM_CA9/portmacro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CA9/portmacro.inc -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM0/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM0/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM0/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM0/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM3/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM4F/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM4_MPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM4_MPU/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM4_MPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM4_MPU/portmacro.h -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM7/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM7/ReadMe.txt -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM7/r0p1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM7/r0p1/port.c -------------------------------------------------------------------------------- /portable/RVDS/ARM_CM7/r0p1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/RVDS/ARM_CM7/r0p1/portmacro.h -------------------------------------------------------------------------------- /portable/Renesas/RX100/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX100/port.c -------------------------------------------------------------------------------- /portable/Renesas/RX100/port_asm.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX100/port_asm.src -------------------------------------------------------------------------------- /portable/Renesas/RX100/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX100/portmacro.h -------------------------------------------------------------------------------- /portable/Renesas/RX100/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX100/readme.txt -------------------------------------------------------------------------------- /portable/Renesas/RX200/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX200/port.c -------------------------------------------------------------------------------- /portable/Renesas/RX200/port_asm.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX200/port_asm.src -------------------------------------------------------------------------------- /portable/Renesas/RX200/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX200/portmacro.h -------------------------------------------------------------------------------- /portable/Renesas/RX200/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX200/readme.txt -------------------------------------------------------------------------------- /portable/Renesas/RX600/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600/port.c -------------------------------------------------------------------------------- /portable/Renesas/RX600/port_asm.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600/port_asm.src -------------------------------------------------------------------------------- /portable/Renesas/RX600/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600/portmacro.h -------------------------------------------------------------------------------- /portable/Renesas/RX600/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600/readme.txt -------------------------------------------------------------------------------- /portable/Renesas/RX600v2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600v2/port.c -------------------------------------------------------------------------------- /portable/Renesas/RX600v2/port_asm.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600v2/port_asm.src -------------------------------------------------------------------------------- /portable/Renesas/RX600v2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600v2/portmacro.h -------------------------------------------------------------------------------- /portable/Renesas/RX600v2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX600v2/readme.txt -------------------------------------------------------------------------------- /portable/Renesas/RX700v3_DPFPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX700v3_DPFPU/port.c -------------------------------------------------------------------------------- /portable/Renesas/RX700v3_DPFPU/port_asm.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX700v3_DPFPU/port_asm.src -------------------------------------------------------------------------------- /portable/Renesas/RX700v3_DPFPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX700v3_DPFPU/portmacro.h -------------------------------------------------------------------------------- /portable/Renesas/RX700v3_DPFPU/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/RX700v3_DPFPU/readme.txt -------------------------------------------------------------------------------- /portable/Renesas/SH2A_FPU/ISR_Support.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/SH2A_FPU/ISR_Support.inc -------------------------------------------------------------------------------- /portable/Renesas/SH2A_FPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/SH2A_FPU/port.c -------------------------------------------------------------------------------- /portable/Renesas/SH2A_FPU/portasm.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/SH2A_FPU/portasm.src -------------------------------------------------------------------------------- /portable/Renesas/SH2A_FPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Renesas/SH2A_FPU/portmacro.h -------------------------------------------------------------------------------- /portable/Rowley/ARM7/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Rowley/ARM7/readme.txt -------------------------------------------------------------------------------- /portable/Rowley/MSP430F449/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Rowley/MSP430F449/port.c -------------------------------------------------------------------------------- /portable/Rowley/MSP430F449/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Rowley/MSP430F449/portasm.h -------------------------------------------------------------------------------- /portable/Rowley/MSP430F449/portext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Rowley/MSP430F449/portext.asm -------------------------------------------------------------------------------- /portable/Rowley/MSP430F449/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Rowley/MSP430F449/portmacro.h -------------------------------------------------------------------------------- /portable/SDCC/Cygnal/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/SDCC/Cygnal/port.c -------------------------------------------------------------------------------- /portable/SDCC/Cygnal/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/SDCC/Cygnal/portmacro.h -------------------------------------------------------------------------------- /portable/Softune/MB91460/__STD_LIB_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Softune/MB91460/__STD_LIB_sbrk.c -------------------------------------------------------------------------------- /portable/Softune/MB91460/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Softune/MB91460/port.c -------------------------------------------------------------------------------- /portable/Softune/MB91460/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Softune/MB91460/portmacro.h -------------------------------------------------------------------------------- /portable/Softune/MB96340/__STD_LIB_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Softune/MB96340/__STD_LIB_sbrk.c -------------------------------------------------------------------------------- /portable/Softune/MB96340/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Softune/MB96340/port.c -------------------------------------------------------------------------------- /portable/Softune/MB96340/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Softune/MB96340/portmacro.h -------------------------------------------------------------------------------- /portable/Tasking/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Tasking/ARM_CM4F/port.c -------------------------------------------------------------------------------- /portable/Tasking/ARM_CM4F/port_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Tasking/ARM_CM4F/port_asm.asm -------------------------------------------------------------------------------- /portable/Tasking/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/Tasking/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/CDK/T-HEAD_CK802/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/CDK/T-HEAD_CK802/port.c -------------------------------------------------------------------------------- /portable/ThirdParty/CDK/T-HEAD_CK802/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/CDK/T-HEAD_CK802/portasm.S -------------------------------------------------------------------------------- /portable/ThirdParty/CDK/T-HEAD_CK802/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/CDK/T-HEAD_CK802/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_EM_HS/arc_freertos_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_EM_HS/arc_freertos_exceptions.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_EM_HS/arc_freertos_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_EM_HS/arc_freertos_exceptions.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_EM_HS/arc_support.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_EM_HS/arc_support.s -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_EM_HS/freertos_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_EM_HS/freertos_tls.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_EM_HS/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_EM_HS/port.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_EM_HS/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_EM_HS/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_v1/arc_freertos_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_v1/arc_freertos_exceptions.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_v1/arc_freertos_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_v1/arc_freertos_exceptions.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_v1/arc_support.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_v1/arc_support.s -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_v1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_v1/port.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARC_v1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARC_v1/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARM_CM33_TFM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARM_CM33_TFM/README.md -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ARM_CM33_TFM/os_wrapper_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ARM_CM33_TFM/os_wrapper_freertos.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ATmega/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ATmega/port.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ATmega/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ATmega/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/ATmega/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/ATmega/readme.md -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Posix/FreeRTOS-simulator-for-Linux.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Posix/FreeRTOS-simulator-for-Linux.url -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Posix/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Posix/port.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Posix/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Posix/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Posix/utils/wait_for_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Posix/utils/wait_for_event.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Posix/utils/wait_for_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Posix/utils/wait_for_event.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/RISC-V/README-for-info-on-official-MIT-license-port.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/RISC-V/README-for-info-on-official-MIT-license-port.txt -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/FreeRTOS-openocd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/FreeRTOS-openocd.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/portbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/portbenchmark.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/portmacro.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/xt_asm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/xt_asm_utils.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_api.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_config.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_context.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_rtos.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_timer.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/port.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/portasm.S -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/portmux_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/portmux_impl.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/portmux_impl.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/portmux_impl.inc.h -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_context.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_context.S -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_init.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_intr.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_intr_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_intr_asm.S -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_loadstore_handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_loadstore_handler.S -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_overlay_os_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_overlay_os_hook.c -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_vector_defaults.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_vector_defaults.S -------------------------------------------------------------------------------- /portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_vectors.S -------------------------------------------------------------------------------- /portable/WizC/PIC18/Drivers/Tick/Tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/WizC/PIC18/Drivers/Tick/Tick.c -------------------------------------------------------------------------------- /portable/WizC/PIC18/Drivers/Tick/isrTick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/WizC/PIC18/Drivers/Tick/isrTick.c -------------------------------------------------------------------------------- /portable/WizC/PIC18/Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/WizC/PIC18/Install.bat -------------------------------------------------------------------------------- /portable/WizC/PIC18/addFreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/WizC/PIC18/addFreeRTOS.h -------------------------------------------------------------------------------- /portable/WizC/PIC18/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/WizC/PIC18/port.c -------------------------------------------------------------------------------- /portable/WizC/PIC18/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/WizC/PIC18/portmacro.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/Makefile -------------------------------------------------------------------------------- /portable/XCC/Xtensa/asm-offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/asm-offsets.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/mpu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/mpu.S -------------------------------------------------------------------------------- /portable/XCC/Xtensa/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/port.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/portasm.S -------------------------------------------------------------------------------- /portable/XCC/Xtensa/portbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/portbenchmark.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/portclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/portclib.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/portmacro.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/portmpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/portmpu.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/porttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/porttrace.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/readme_xtensa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/readme_xtensa.txt -------------------------------------------------------------------------------- /portable/XCC/Xtensa/relnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/relnotes.txt -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_api.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_config.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_context.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_context.S -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_context.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_coproc_handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_coproc_handler.S -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_intr.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_intr_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_intr_asm.S -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_intr_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_intr_wrapper.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_overlay_os_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_overlay_os_hook.c -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_rtos.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_timer.h -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_vectors.S -------------------------------------------------------------------------------- /portable/XCC/Xtensa/xtensa_vectors_xea3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/XCC/Xtensa/xtensa_vectors_xea3.S -------------------------------------------------------------------------------- /portable/oWatcom/16BitDOS/Flsh186/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/oWatcom/16BitDOS/Flsh186/port.c -------------------------------------------------------------------------------- /portable/oWatcom/16BitDOS/Flsh186/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/oWatcom/16BitDOS/Flsh186/portmacro.h -------------------------------------------------------------------------------- /portable/oWatcom/16BitDOS/PC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/oWatcom/16BitDOS/PC/port.c -------------------------------------------------------------------------------- /portable/oWatcom/16BitDOS/PC/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/oWatcom/16BitDOS/PC/portmacro.h -------------------------------------------------------------------------------- /portable/oWatcom/16BitDOS/common/portasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/oWatcom/16BitDOS/common/portasm.h -------------------------------------------------------------------------------- /portable/oWatcom/16BitDOS/common/portcomn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/oWatcom/16BitDOS/common/portcomn.c -------------------------------------------------------------------------------- /portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/portable/readme.txt -------------------------------------------------------------------------------- /queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/queue.c -------------------------------------------------------------------------------- /stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/stream_buffer.c -------------------------------------------------------------------------------- /tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/tasks.c -------------------------------------------------------------------------------- /timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foss-xtensa/amazon-freertos/HEAD/timers.c --------------------------------------------------------------------------------