Running applications from freeRTOS

前端 未结 2 1024
别那么骄傲
别那么骄傲 2021-01-05 22:22

I am currently in the process of developing the OS for a consumer electronics product my company is developing. I have settled on freeRTOS as the backbone for our OS, and am

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-05 23:01

    Due to request, here is the work around I found to my problem. The issue was launching other applications from freeRTOS. This was accomplished by utilizing the "System()" function in the newlib library. Thus, I can place an application in flash until it's needed, then launch it using the newlib functions provided. This also allows me to launch programs dynamically, without hard coding the code or name of the application, I just need to provide System() with a string, pointing to the app's location in memory.

提交回复
热议问题