Hello,
This question is more of a curiosity. Which is the most used, or
recommended to implement and deploy an application in a NuttX
environment?
I saw that it is possible to have several applications to be called by
NuttShell, and you can set applications to run when NuttShell starts.
It is al
This question is more of a curiosity. Which is the most used, or
recommended to implement and deploy an application in a NuttX
environment?
I saw that it is possible to have several applications to be called by
NuttShell, and you can set applications to run when NuttShell starts.
It is also p
Yes you can,
Just call the app.
Create and app. Call it what you like. user_start etc.
Set
CONFIG_USERMAIN_STACKSIZE=1100
CONFIG_USER_ENTRYPOINT="user_start"
Int user_start(int argc, char *argv[])
{
return ...;
}
CONFIG_USERMAIN_STACKSIZE=1100
CONFIG_USER_ENTRYPOINT="pigs_can_fly "
Int
:-D
In my application, I am not using nutshell.
But I was wondering if is it the best, or correct or recommended way to do.
Best regards,
Flavio
Em sáb., 22 de mai. de 2021 12:24, David Sidrane
escreveu:
> Yes you can,
>
> Just call the app.
>
> Create and app. Call it what you like. us
In my application, I am not using nutshell.
But I was wondering if is it the best, or correct or recommended way to do.
I don't think there is a best or recommended in this case. You should
do what is best for you and for the final product.
Often people build NSH in their development bui