Weird problem with CONFIG_NETINIT_THREAD

2022-06-26 Thread Nathan Hartman
Hi all, I am programming a custom board which has Ethernet, but does not have UART or USB connections, so I need to access NSH via Telnet. The board is configured to use DHCP client. I am using latest master: commit # c6c0baa233594dd8e5319a82a6708121e8e94349 in incubator-nuttx tree. The weird p

Re: Weird problem with CONFIG_NETINIT_THREAD

2022-06-26 Thread Gregory Nutt
Sounds like nothing is calling netinit_bringup().  Normally this is part of the console initialization: nsh_altconsole.c:  netinit_bringup(); nsh_consolemain.c:  netinit_bringup(); nsh_telnetd.c:  netinit_bringup(); nsh_usbconsole.c:  netinit_bringup(); So perhaps it is not called in this c

Re: Weird problem with CONFIG_NETINIT_THREAD

2022-06-26 Thread Nathan Hartman
On Sun, Jun 26, 2022 at 1:25 PM Gregory Nutt wrote: > > Sounds like nothing is calling netinit_bringup(). Normally this is part > of the console initialization: > > nsh_altconsole.c: netinit_bringup(); > nsh_consolemain.c: netinit_bringup(); > nsh_telnetd.c: netinit_bringup(); > nsh_usbcon