Re: littlefs broken - please read all mail past the stack dumps.

2024-03-18 Thread Sebastien Lorquet
hi Tomek I'll have a try and report. Sebastien On 3/19/24 01:36, Tomek CEDRO wrote: Hey there Sebastien! Sorry to hear that :-( Would it be possible to try those tests in SIM ? If yes are results the same? This could be included into CI tests with a SIM if that helps..? -- CeDeROM, SQ7MHZ

Re: littlefs broken - please read all mail past the stack dumps.

2024-03-18 Thread Tomek CEDRO
Hey there Sebastien! Sorry to hear that :-( Would it be possible to try those tests in SIM ? If yes are results the same? This could be included into CI tests with a SIM if that helps..? -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info

littlefs broken - please read all mail past the stack dumps.

2024-03-18 Thread Sebastien Lorquet
hello, Trying to migrate an old project to latest code. I have this config after migration. $ ag LITTLEFS .config 1928:CONFIG_FS_LITTLEFS=y 1929:CONFIG_FS_LITTLEFS_PROGRAM_SIZE_FACTOR=1 1930:CONFIG_FS_LITTLEFS_READ_SIZE_FACTOR=1 1931:CONFIG_FS_LITTLEFS_BLOCK_SIZE_FACTOR=1 1932:CONFIG_FS_LITTLE

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.