-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add multidrop support to LAN867x tcp transfer example
- Loading branch information
1 parent
22ce262
commit bf2c4c6
Showing
8 changed files
with
145 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
lan867x/examples/lan867x_tcp_sockets/client/main/Kconfig.projbuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
menu "Example Configuration" | ||
config EXAMPLE_LAN867X_USE_PLCA | ||
bool "Use PLCA" | ||
default n | ||
help | ||
Use PLCA istead of CSMA/CD, in some cases PLCA may be more robust against collisions | ||
|
||
config EXAMPLE_LAN867X_PLCA_ID | ||
depends on EXAMPLE_LAN867X_USE_PLCA | ||
int "LAN867x PLCA id" | ||
range 1 255 | ||
default 1 | ||
help | ||
Set PLCA id (each device in the network must have unique PLCA id) | ||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
lan867x/examples/lan867x_tcp_sockets/server/main/Kconfig.projbuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
menu "Example Configuration" | ||
config EXAMPLE_LAN867X_USE_PLCA | ||
bool "Use PLCA" | ||
default n | ||
help | ||
Use PLCA istead of CSMA/CD, in some cases PLCA may be more robust against collisions | ||
|
||
config EXAMPLE_LAN867X_PLCA_NODE_COUNT | ||
depends on EXAMPLE_LAN867X_USE_PLCA | ||
int "PLCA node count" | ||
range 2 255 | ||
default 2 | ||
help | ||
Set PLCA node count (amount of nodes in the network including this one) | ||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: "0.9.1" | ||
version: "1.0.0" | ||
targets: | ||
- esp32 | ||
- esp32p4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters