Re: STM32F4 Ethernet Issues

2022-08-09 Thread Fotis Panagiotopoulos
Hello, still trying to make the network work reliably. After fixing another issue of my application, I hit another problem. The following sequence causes NuttX to crash: 1. My application is creating a TCP socket and communicates with a server. 2. At one point the server stops responding (unrela

How to ignore preceding "./" (dot slash) for paths in NSH

2022-08-09 Thread Mike Mogenson
Can I configure NSH (or the fs driver) to ignore preceding "./“ (dot slash) characters when reading directories or opening files? For example, the following does not work in NSH: ``` nsh> echo "hello" > hello.txt nsh> ls . /sd: hello.txt nsh> ls ./ nsh: ls: stat failed: 2 nsh> cat hello.txt hell