-
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.
working rudder, motor after swapping to 8250 has odd behavior (stays …
…full speed). encountered hardware failing, freezing for now.
- Loading branch information
Showing
13 changed files
with
214 additions
and
186 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
fn main() { | ||
embuild::espidf::sysenv::output(); | ||
println!("cargo:rustc-env=WIFI_AP_MODE=1"); // Set to anything else for client mode (connects to your netwok) | ||
println!("cargo:rustc-env=WIFI_SSID=WIFI_BOAT_HOTSPOT"); // Replace with your own SSID (AP SSID or Network SSID) | ||
println!("cargo:rustc-env=WIFI_AP_MODE=1"); // Set to 1 for AP mode, anything else for client mode (connects to your netwok) | ||
println!("cargo:rustc-env=WIFI_SSID=Boat_Hotspot"); // Replace with your own SSID (AP SSID or Network SSID) | ||
println!("cargo:rustc-env=WIFI_PASSWORD=password"); // Replace with your own password (AP password or Network password) | ||
} |
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 |
---|---|---|
|
@@ -9,4 +9,4 @@ vid = "303a" | |
pid = "1001" | ||
|
||
[flash] | ||
size = "8MB" | ||
size = "16MB" |
Oops, something went wrong.