LuckfoxTECH / luckfox-pico

luckfox-pico sdk
283 stars 105 forks source link

Wifi adapter for Pico mini B #156

Closed fredsco closed 1 week ago

fredsco commented 2 weeks ago

I want to create a hotspot on my Pico Mini B so that other devices can discover and connect to it from the Wifi list and then they can see the video stream (rtsp)

So far :

Now I ordered a TP-Link TL-WN725N this is a wifi adapter which uses the RTL8188EUS chipset. If I look in this repository I do see a driver for RTL8188EU...

My questions are:

luckfox-eng33 commented 2 weeks ago

We have not tested the RTL8188EUS module and we cannot be sure it will work properly. Generally speaking, module adaptation requires technical support from the module supplier, so it is recommended that you contact your module supplier to provide technical support, and it may be possible to adapt. We transplanted AIC8800DC on Luckfox-Pico-Ultra-W, maybe you can refer to this

fredsco commented 2 weeks ago

@luckfox-eng33 Thank you I will try a aic8800dc dongle.

Do you know if I need to modify something in the Luckfox Pico build / folder to activate /load the aic8800dc on Luckfox Pico Mini B?

luckfox-eng33 commented 2 weeks ago

The simplest and stupidest method is to compile Luckfox-Pico-Ultra-W, then copy the corresponding aic-related ko, manually copy it to the board and load it The smart way is to check the Luckfox-Pico-Ultra-W configuration file and modify your configuration file

fredsco commented 1 week ago

@luckfox-eng33 Thank you. I have decided to get the RTL8192CU as during compilation the exact same drivers are build. However after booting up while the device is available under lsusb. there is no wlan0.

In Luckfox_rv1106_linux_defconfig I have;

CONFIG_RTL8192CU=y

in the MK file for rv1103 (Luckfox Pico mini b) I have:

export RK_ENABLE_WIFI=y

Can the developer look into this please and let me know if perhaps somewhere wifi is hard disabled?

fredsco commented 1 week ago

@luckfox-eng33 I have managed to make the Wifi work using a RTL8192CU. CONFIG_RTL8192CU was first set to m... this should be y.