1There are two options for running FreeRTOS on ARM Cortex-M7 microcontrollers. 2The best option depends on the revision of the ARM Cortex-M7 core in use. The 3revision is specified by an 'r' number, and a 'p' number, so will look something 4like 'r0p1'. Check the documentation for the microcontroller in use to find the 5revision of the Cortex-M7 core used in that microcontroller. If in doubt, use 6the FreeRTOS port provided specifically for r0p1 revisions, as that can be used 7with all core revisions. 8 9The first option is to use the ARM Cortex-M4F port, and the second option is to 10use the Cortex-M7 r0p1 port - the latter containing a minor errata workaround. 11 12If the revision of the ARM Cortex-M7 core is not r0p1 then either option can be 13used, but it is recommended to use the FreeRTOS ARM Cortex-M4F port located in 14the /FreeRTOS/Source/portable/GCC/ARM_CM4F directory. 15 16If the revision of the ARM Cortex-M7 core is r0p1 then use the FreeRTOS ARM 17Cortex-M7 r0p1 port located in the /FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1 18directory. 19