How to install Freertos OS on the Renesas RZ/A1 card

Hi, I developing embedded application running on Renesas RZA1 (currently under the RZ Evaluation board). I want to know how to install Freertos OS on the RZ/A1 card. Is that possible to install FreeRTOS on RZ/A1? Do you have an idea or a manual installation? Thanks

How to install Freertos OS on the Renesas RZ/A1 card

Currently the official FreeRTOS demos for the RZ are executing on an internal development board, which is not publicly available, rather than the official RZA1 RSK. However the demo makes little use of anything other than the core itself, and should be relatively easy to run on any RZ hardware: http://www.freertos.org/RenesasRZCortex-A9-RTOS.html http://www.freertos.org/porting-a-freertos-demo-to-different-hardware.html FreeRTOS is statically linked into the application, so does not require any special boot procedure. The official demo runs the init code provided by Renesas then calls main() driver from the reset vector. main() then creates tasks and starts the scheduler as normal for FreeRTOS application. In the case of the demo (as I recall) the application is just downloaded to RAM via JTAG, then either executed or debugged from there. Obviously that means the application is not maintained in memory across power cycles. If you wanted a FreeRTOS application to boot up from cold then you would need some way of either programming it into Flash and running it from there, or have a loader copy it from flash and run it from RAM – how that is done is specific to your hardware, and is not dependent on FreeRTOS as it would be done in the same way as if you had a completely bare metal application with no OS at all. Regards.

How to install Freertos OS on the Renesas RZ/A1 card

Thank you for your reply, I can not install the OS FreeRTOS directly on the Renesas RZ/A1 card? I want to connect directly to the card RZ/A1 via ssh protocol and work on, it is possible? thanks

How to install Freertos OS on the Renesas RZ/A1 card

FreeRTOS is a small real time kernel. It does not support dynamic linking, so if you want to leave the OS running on the RZ, then connect to it to fork and work on new processes or threads, then no you cannot do that.