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
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
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
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.