mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2024-11-01 11:54:17 +00:00
28 lines
No EOL
1 KiB
Text
Executable file
28 lines
No EOL
1 KiB
Text
Executable file
LWIP BROADCAST EXAMPLE
|
|
|
|
Description:
|
|
Listen broadcast message on port 49152.
|
|
Send packet with the content of received packet to broadcast address.
|
|
|
|
Configuration:
|
|
[lwipopts.h]
|
|
#define LWIP_UDP 1
|
|
[platform_opts.h]
|
|
#define CONFIG_EXAMPLE_BCAST 1
|
|
|
|
Execution:
|
|
Can make automatical Wi-Fi connection when booting by using wlan fast connect example.
|
|
A broadcast example thread will be started automatically when booting.
|
|
|
|
Test:
|
|
1. Prepare a NB and connect to the same AP Ameba connected.
|
|
2. NB: iperf -c 192.168.1.255 -t 60 -i 1 -p 49152 -u
|
|
3. The recv/send messages should be printed out on Ameba console.
|
|
4. Use sniffer to make sure the packets send from Ameba are broadcast messages.
|
|
|
|
Note:
|
|
If you encounter some message like:
|
|
ERROR: sendto broadcast
|
|
[Driver]: skb_unavailable=1 in last 2 seconds
|
|
It means that the skb buffer is not enough for the massive UDP packets to be sent.
|
|
If you want to prevent the error you can add some delay time between sending packets or enlarge the skb buffer configuration. |