Re: NSH network initialization outside of NSH main

2025-05-03 Thread Matteo Golin
As in, the NuttX community would need to start moving over initialization out of NSH and into the board initialization? On Fri, May 2, 2025, 11:54 PM Xiang Xiao wrote: > The quick approach is coping the initialization routine to your > application, but it isn't an elegant solution. > A better ap

Re: NSH network initialization outside of NSH main

2025-05-02 Thread Xiang Xiao
The quick approach is coping the initialization routine to your application, but it isn't an elegant solution. A better approach is splitting the general initialization functionality from nsh to init like other POSIX operating systems. But, the second approach needs more work. On Thu, May 1, 2025

NSH network initialization outside of NSH main

2025-04-30 Thread Matteo Golin
Hello everyone, Currently working on an application for a network controlled switch box. So far everything has gone great and we've finally completed our application that is capable of sending switch commands over the network using NuttX on the W5500-EVB Pico. I have one last hurdle left for th