Re: Run app when device starts

2024-03-18 Thread Alan C. Assis
Oops, where I wrote "former", should be "later" On Monday, March 18, 2024, Alan C. Assis wrote: > Hi Gustavo, > > You can do it over init script (there is a video at NuttX Channel) or > using NuttX Init Entry Point, replacing nsh_main with your app_main name. > > In the former case, you need to

Re: Run app when device starts

2024-03-18 Thread Alan C. Assis
Hi Gustavo, You can do it over init script (there is a video at NuttX Channel) or using NuttX Init Entry Point, replacing nsh_main with your app_main name. In the former case, you need to initialize all device driver before your application attempts to use it. So, early board initialize and late

Re: Run app when device starts

2024-03-18 Thread Tim Hardisty
make menuconfig RTOS Features ->Tasks and Scheduling -> Application entry point also RTOS Features ->Tasks and Scheduling ->Application Name On 18/03/2024 19:44, Gustavo Soares wrote: Hello! I've built an application to run on NuttX and I'd like to know if it's possible to make it start whe

Run app when device starts

2024-03-18 Thread Gustavo Soares
Hello! I've built an application to run on NuttX and I'd like to know if it's possible to make it start when the device starts so I don't have to connect into the console to run it.