Re: CRC32 what gives?

2022-07-16 Thread Nimish Telang
https://github.com/madler/crcany is what I have been using to make one off CRC implementations. Consolidating the various ones into a single library might be useful. From: Alan Carvalho de Assis Date: Friday, July 15, 2022 at 7:31 PM To: dev@nuttx.apache.org Subject: Re: CRC32 what gives? We a

Re: Is there a way to have NSH loaded as the init task from an sd card?

2022-07-16 Thread Gregory Nutt
I don't think NuttX supports booting directly to an init or other ENTRYPOINT in SD card. I will be surprised and happy to discover it is possible. Yes it is possible it is included in the design.  Controlled by and CONFIG_INIT_FILE and CONFIG_INIT_FILEPATH ; the relevant start-up code is:

Re: Is there a way to have NSH loaded as the init task from an sd card?

2022-07-16 Thread Alan Carvalho de Assis
Hi Nimish, I don't think NuttX supports booting directly to an init or other ENTRYPOINT in SD card. I will be surprised and happy to discover it is possible. But you can boot from Flash and use the initscript to mount the SDCard and run an application from it. Maybe it will help you to achieve yo