-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from Jim-Hodapp-Coaching/support_tcp_and_restr…
…ucture_a Restructure SPI impl into Wifi module and implement TCP send
- Loading branch information
Showing
23 changed files
with
1,578 additions
and
363 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
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,5 @@ | ||
{ | ||
"rust.target": "thumbv6m-none-eabi", | ||
"rust.all_targets": true | ||
"rust.all_targets": true, | ||
"editor.inlayHints.enabled": false | ||
} |
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,8 +1,9 @@ | ||
[workspace] | ||
members = [ | ||
"dns", | ||
"get_fw_version", | ||
"join", | ||
"dns" | ||
"send_data_tcp" | ||
] | ||
|
||
[profile.dev] | ||
|
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
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
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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[package] | ||
authors = [ | ||
"Jim Hodapp", | ||
"Caleb Bourg", | ||
"Glyn Matthews", | ||
"Dilyn Corner" | ||
] | ||
edition = "2021" | ||
name = "send_data_tcp" | ||
version = "0.3.0" | ||
description = "Example RP2040 target application that demonstrates how to send data to a remote server over TCP." | ||
|
||
# makes `cargo check --all-targets` work | ||
[[bin]] | ||
name = "send_data_tcp" | ||
bench = false | ||
doctest = false | ||
test = false | ||
|
||
[dependencies] | ||
defmt = "0.3.0" | ||
defmt-rtt = "0.3.0" | ||
cortex-m = "0.7" | ||
cortex-m-rt = "0.7" | ||
embedded-hal = { version = "0.2", features=["unproven"] } | ||
esp32-wroom-rp = { path = "../../esp32-wroom-rp" } | ||
panic-probe = { version = "0.3.0", features = ["print-rtt"] } | ||
heapless = "0.7.16" | ||
|
||
rp2040-hal = { version = "0.6", features=["rt", "eh1_0_alpha"] } | ||
rp2040-boot2 = { version = "0.2" } | ||
fugit = "0.3" | ||
|
||
[features] | ||
default = ['defmt-default'] | ||
# these features are required by defmt | ||
defmt-default = [] | ||
defmt-trace = [] | ||
defmt-debug = [] | ||
defmt-info = [] | ||
defmt-warn = [] | ||
defmt-error = [] |
Oops, something went wrong.