You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/10/30 13:39:02 UTC

[GitHub] [incubator-nuttx] acassis opened a new issue, #7475: RaspberryPi-Pico-W is not getting WiFi

acassis opened a new issue, #7475:
URL: https://github.com/apache/incubator-nuttx/issues/7475

   Hi @curuvar someone told me that raspberrypi-pico-w was not working with recent kernel, then I tested to confirm:
   
   -------------------------------------------------------------------------
   SDK Setup:
   
   $ cd /home/alan
   
   $ git clone -b 1.1.2 https://github.com/raspberrypi/pico-sdk.git
   
   $ export PICO_SDK_PATH=/home/alan/pico-sdk
   
   -------------------------------------------------------------------------
   
   NuttX Conf. / Compilation
   
   $ cd nuttxspace/nuttx
   
   $ ./tools/configure.sh raspberrypi-pico-w:telnet
   
   $ make menuconfig
   
   Application Configuration  --->
      Network Utilities  --->
          -*- Network initialization  --->
              WAPI Configuration  --->
                  (PutHereYourRouterName) SSID
                  (PutHereYourRouterPassword) Passprhase
   
   $ make -j
   
   Press and hold BOOTSEL button, then plug the USB Cable
   
   Copy nuttx.uf2 para RPI-RP2 disk
   
   
   --------------------------------------------------------------------------
   
   NuttX Testing:
   
   nsh> uname -a
   NuttX  10.4.0 99cfffc96a-dirty Oct 30 2022 10:30:55 arm raspberrypi-pico-w
   nsh> ifconfig
   lo      Link encap:Local Loopback at RUNNING
           inet addr:127.0.0.1 DRaddr:127.0.0.1 Mask:255.0.0.0
   
   wlan0   Link encap:Ethernet HWaddr 00:00:00:00:00:00 at DOWN
           inet addr:0.0.0.0 DRaddr:10.0.0.1 Mask:255.255.255.0
   
   nsh> ifup wlan0
   ifup wlan0...Failed
   nsh> renew wlan0
   ERROR: dhcpc_request() failed
   nsh>
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] anchao commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by "anchao (via GitHub)" <gi...@apache.org>.
anchao commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1418835020

   Please note that the setup process of the cyw43 driver has changed:
   
   ```
   1. Download Raspberry Pi Pico SDK and update submodule(cyw43-driver)
   
     $ git clone -b 1.4.0 https://github.com/raspberrypi/pico-sdk.git
     $ cd pico-sdk
     $ git submodule update --init --recursive lib/cyw43-driver
   ...
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] acassis commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by GitBox <gi...@apache.org>.
acassis commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1396181775

   @PeterBee97 Do I need to have the "Infineon 43439 firmware file" to get the WiFi working? There is not documentation about it in the README.tx file


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] acassis commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by GitBox <gi...@apache.org>.
acassis commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1396154039

   Still failing here! I enabled the debug network and got more info about the error:
   
   ```
   nsh> ifconfig
   lo      Link encap:Local Loopback at RUNNING
           inet addr:127.0.0.1 DRaddr:127.0.0.1 Mask:255.0.0.0
   
   wlan0   Link encap:Ethernet HWaddr 00:00:00:00:00:00 at DOWN
           inet addr:0.0.0.0 DRaddr:0.0.0.0 Mask:255.255.255.0
   
   
   nsh> wapi psk wlan0 MyPassword 3
   wpa_driver_wext_process_auth_param: ERROR: SIOCSIWAUTH(param 0 value 0x4) failed: 1)
   ERROR: Process command (psk) failed.
   ```
   
   It will need more investigation from people using this board...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] PeterBee97 commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by GitBox <gi...@apache.org>.
PeterBee97 commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1396484817

   > @PeterBee97 Do I need to have the "Infineon 43439 firmware file" to get the WiFi working? There is not documentation about it in the README.tx file
   
   Sorry Alan, I only have the old Pico without W and haven't worked with WiFi on this board. @anchao Any idea?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] anchao commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by "anchao (via GitHub)" <gi...@apache.org>.
anchao commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1418815688

   @acassis @TA1DB please help to review PR https://github.com/apache/nuttx/pull/8439 , which fixed CYW43 not working properly on pico-W


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] xiaoxiang781216 closed issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by "xiaoxiang781216 (via GitHub)" <gi...@apache.org>.
xiaoxiang781216 closed issue #7475: RaspberryPi-Pico-W is not getting WiFi
URL: https://github.com/apache/nuttx/issues/7475


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] TA1DB commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by GitBox <gi...@apache.org>.
TA1DB commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1387482379

   Any news guys?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [nuttx] anchao commented on issue #7475: RaspberryPi-Pico-W is not getting WiFi

Posted by GitBox <gi...@apache.org>.
anchao commented on issue #7475:
URL: https://github.com/apache/nuttx/issues/7475#issuecomment-1396587897

   I do not have pico W on hand, just placed an order, I will fix this issue later.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org