You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FreeRTOS-Kernel/portable/GCC/RISC-V
Ryan 874fa7bed4
Removing the old -RV32 directory name from parts of the documentation (#1196)
2 months ago
..
chip_specific_extensions Removing the old -RV32 directory name from parts of the documentation (#1196) 2 months ago
Documentation.url Normalize line endings and whitespace in source files 2 years ago
chip_extensions.cmake Support configurable RISC-V chip extension (#773) 1 year ago
port.c Fix RISC-V configMTIMECMP_BASE_ADDRESS (64-bit) stored in 32-bit int (#1176) 3 months ago
portASM.S Removing the old -RV32 directory name from parts of the documentation (#1196) 2 months ago
portContext.h Use Regex for Copyright Year in Header Check (#1002) 11 months ago
portmacro.h Use Regex for Copyright Year in Header Check (#1002) 11 months ago
readme.txt Removing the old -RV32 directory name from parts of the documentation (#1196) 2 months ago

readme.txt

/*
 * The FreeRTOS kernel's RISC-V port is split between the the code that is
 * common across all currently supported RISC-V chips (implementations of the
 * RISC-V ISA), and code that tailors the port to a specific RISC-V chip:
 *
 * + FreeRTOS\Source\portable\GCC\RISC-V\portASM.S contains the code that
 *   is common to all currently supported RISC-V chips.  There is only one
 *   portASM.S file because the same file is built for all RISC-V target chips.
 *
 * + Header files called freertos_risc_v_chip_specific_extensions.h contain the
 *   code that tailors the FreeRTOS kernel's RISC-V port to a specific RISC-V
 *   chip.  There are multiple freertos_risc_v_chip_specific_extensions.h files
 *   as there are multiple RISC-V chip implementations.
 *
 * !!!NOTE!!!
 * TAKE CARE TO INCLUDE THE CORRECT freertos_risc_v_chip_specific_extensions.h
 * HEADER FILE FOR THE CHIP IN USE.  This is done using the assembler's (not the
 * compiler's!) include path.  For example, if the chip in use includes a core
 * local interrupter (CLINT) and does not include any chip specific register
 * extensions then add the path below to the assembler's include path:
 * FreeRTOS\Source\portable\GCC\RISC-V\chip_specific_extensions\RV32I_CLINT_no_extensions
 *
 */