Merge branch 'master' into master

This commit is contained in:
Reda Maher 2020-09-29 09:53:40 +02:00 committed by GitHub
commit a25f0b6b4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 1008 additions and 2 deletions

59
.github/actions/url_verifier.sh vendored Executable file
View file

@ -0,0 +1,59 @@
#!/bin/bash -
PROJECT=$1
echo "Verifying url links of: ${PROJECT}"
if [ ! -d "$PROJECT" ]
then
echo "Directory passed does not exist"
exit 2
fi
SCRIPT_RET=0
set -o nounset # Treat unset variables as an error
declare -A dict
function test {
while IFS= read -r LINE; do
FILE=$(echo $LINE | cut -f 1 -d ':')
URL=$(echo $LINE | grep -IoE '\b(https?|ftp|file)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]*[-A-Za-z0-9+&@#/%=~_|]')
# remove trailing / if it exists curl diferenciate between links with
# and without / at the end
# URL=`echo "$URL" | sed 's,/$,,'`
dict+=(["$URL"]="$FILE ")
done < <(grep -e 'https\?://' ${PROJECT} -RIa --exclude='*.exe' --exclude-dir=.git | tr '*' ' ')
for UNIQ_URL in ${!dict[@]} # loop urls
do
CURL_RES=$(curl -I ${UNIQ_URL} 2>/dev/null| head -n 1 | cut -f 2 -d ' ')
RES=$?
if [ "${CURL_RES}" == '' -o "${CURL_RES}" != '200' ]
then
echo "URL is: ${UNIQ_URL}"
echo "File names: ${dict[$UNIQ_URL]}"
if [ "${CURL_RES}" == '' ] # curl returned an error
then
CURL_RES=$RES
SCRIPT_RET=1
elif [ "${CURL_RES}" == '403' ]
then
SCRIPT_RET=1
fi
echo Result is: "${CURL_RES}"
echo "================================="
fi
done
if [ "${SCRIPT_RET}" -eq 0 ]
then
exit 0
else
exit 1
fi
}
test

View file

@ -34,4 +34,13 @@ jobs:
else else
exit 1 exit 1
fi fi
url-check:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v2
with:
path: ./kernel
- name: URL Checker
run: |
bash kernel/.github/actions/url_verifier.sh kernel

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -159,7 +159,9 @@ const StackType_t * const xISRStackTop = &( xISRStack[ ( configISR_STACK_SIZE &
*/ */
StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters )
{ {
/* Ensure byte alignment is maintained when leaving this function. */ /* Ensure 8 byte alignment is maintained when the context is popped from
* stack. The size of the context is 33 words (132 bytes). */
pxTopOfStack--;
pxTopOfStack--; pxTopOfStack--;
*pxTopOfStack = (StackType_t) 0xDEADBEEF; *pxTopOfStack = (StackType_t) 0xDEADBEEF;

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html

View file

@ -0,0 +1,72 @@
The following table shows which port is recommended to be used.
RX MCU Group CPU FPU FPU Port Layer
Core (Single (Double CC-RX GNURX ICCRX (*6)
Type Precision) Precision)
RX110 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX111 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX113 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX130 RXv1 No --- Renesas/RX100 (*1,*2) GCC/RX100 (*1,*2) IAR/RX100 (*1,*2)
RX13T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX210 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX21A RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX220 RXv1 No --- Renesas/RX200 (*3) N/A (*3) N/A (*3)
RX230,RX231 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23E-A RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23W RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX23T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24T RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX24U RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX610 RXv1 Yes --- N/A (*4) N/A (*4) N/A (*4)
RX62N,RX621 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX630 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX634 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63N,RX631 RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX64M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX65N,RX651 RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX66N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX62T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX62G RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX63T RXv1 Yes --- Renesas/RX600 GCC/RX600 IAR/RX600
RX66T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
RX71M RXv2 Yes --- Renesas/RX600v2 GCC/RX600v2 IAR/RXv2
RX72M RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72N RXv3 Yes Yes Renesas/RX700v3_DPFPU GCC/RX700v3_DPFPU IAR/RX700v3_DPFPU
RX72T RXv3 Yes No Renesas/RX600v2 (*5) GCC/RX600v2 (*5) IAR/RXv2 (*5)
Notes:
*1: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is not used, please define configSETUP_TICK_INTERRUPT() (in FreeRTOSConfig.h) and provide
the configuration function. Please be aware that port.c is hard coded to use CMT0 though it seems to be
configured to use any CMTn according to the definition of configTICK_VECTOR (in FreeRTOSConfig.h).
*2: If the application writer wants to use their own tick interrupt configuration when tickless idle
functionality is used, please modify port.c for the configuration. Please be aware that port.c is
hard coded to use CMT0 though it seems to be configured to use any CMTn according to the definition of
configTICK_VECTOR (in FreeRTOSConfig.h).
*3: RX100 ports are also available.
*4: RX600 ports use MVTIPL instruction but RX610 MCUs don't support this instruction.
*5: RX700v3_DPFPU ports are also available with the following definition in FreeRTOSConfig.h.
#define configUSE_TASK_DPFPU_SUPPORT 0
*6: PriorityDefinitions.h has to be provided for port_asm.s in case of other than RX700v3_DPFPU port.
It contains two definitions of interrupt priority like the following.
#define configKERNEL_INTERRUPT_PRIORITY 1
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 4
For more information about Renesas RX MCUs, please visit the following URL:
https://www.renesas.com/products/microcontrollers-microprocessors/rx.html