Edit online

无线网络

28 Nov 2024
Read time: 3 minute(s)

本章节讲解如何在 Luban-Lite 系统中配置 SDIO 接口的无线网络。

配置 SDMC 接口和 WiFi 模组

使用 SDMC 接口前,选中对应的 SDMC 接口,以 D133CBV-QFN88 开发板为例,使用 scons--meunconfig 命令,配置下列内容:

Board options
    [ * ] Using SDMC0                                    # 硬件连接哪个 SDMC 接口,选择哪个 SDMC[ * ] Enable the interrupt of sdmc
    [ * ] Using Wireless lan --->
        [ * ] Using Realtek wlan driver --->
            Select Realtek wlan0 modul (rtl8189)--- >    # 以 RTL8189 为例
            Realtek wlan0 paramete --->
                (PD.7) realtek wlan0 power on gpio
                (192.168.3.20) wlan0 ip addr
                (192.168.3.1) wlan0 gateway addr
                (255.255.255.0) wlan0 netmask
                [*] Enable Realtek driver debug information

配置 lwIP

使用 scons --menuconfig 命令进入配置页面,配置如下:

Local packages options --->
    Third-party packages options --->
    LwIP: light weight TCP/IP stack
        [*]   LwIP Examples  --->
        [*]   Using net tools
        [*]   Enble DNS for name resolution
        [*]   Enable alloc ip address through DHCP
        [*]   Enable ping features  --->

配置内核

Rt-Thread options --->
    RT-Thread Kernel --->
        (4)    The priority level value of timer thread
        (4096) The stack size of timer thread
    RT-Thread Components --->
        Device Drivers --->
            (4096) The stack size for sdio irq thread
            (5)   The priority level value of sdio irq thread
警告: 配置之后可能会出现类似 d13x_os.itb file_size: 0x216800 is over much than part_size: 0x200000 的结果。此时需要调整 OS 分区,并使用 mb 命令重新编译 BootLoader 和 RTT 即可。

测试命令

配置完成后,保存退出,编译、烧录。待系统启动后,可执行如下命令进行验证:

wlan wifi_scan

wlan wifi_connect SSID PASSWORD  // 连接 wifi

dhcpc WL0 start  // 获取 IP

ifconfig // 查看当前网卡 IP 及网关 IP

ping 192.168.1.1  // 假设网关 IP 为 192.168.1.1,ping 一下试试看通路