-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify initialization of both ppp mode and ublox mode, by providing…
… batteries included new functions that sets up ATAT and all related resources
- Loading branch information
1 parent
8ab1612
commit e96769a
Showing
32 changed files
with
935 additions
and
2,187 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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"[toml]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"rust-analyzer.cargo.features": [ | ||
"ppp", | ||
], | ||
"rust-analyzer.cargo.target": "thumbv6m-none-eabi", | ||
"rust-analyzer.check.allTargets": false, | ||
"rust-analyzer.linkedProjects": [], | ||
"rust-analyzer.server.extraEnv": { | ||
"WIFI_NETWORK": "foo", | ||
"WIFI_PASSWORD": "foo", | ||
} | ||
} |
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,7 @@ | ||
[toolchain] | ||
channel = "nightly-2024-01-17" | ||
components = [ "rust-src", "rustfmt", "llvm-tools" ] | ||
targets = [ | ||
"thumbv6m-none-eabi", | ||
"thumbv7em-none-eabihf" | ||
] |
Oops, something went wrong.