Commits on Source (16)
-
Stephen D authored
-
Stephen D authored
build flasher See merge request cats/mobile-transceiver-software!3
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
Firmware update readme See merge request cats/mobile-transceiver-software!4
-
Stephen D authored
-
Stephen D authored
Make GPS acquire a lock much faster(only lat and lon is required now). Also stop sending out-of-date coords
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
Showing
- .gitlab-ci.yml 23 additions, 1 deletion.gitlab-ci.yml
- Cargo.lock 87 additions, 27 deletionsCargo.lock
- Cargo.toml 5 additions, 3 deletionsCargo.toml
- README.md 46 additions, 4 deletionsREADME.md
- rustfmt.toml 1 addition, 0 deletionsrustfmt.toml
- src/config.rs 67 additions, 96 deletionssrc/config.rs
- src/gps.rs 40 additions, 4 deletionssrc/gps.rs
- src/main.rs 19 additions, 6 deletionssrc/main.rs
- src/radio.rs 8 additions, 5 deletionssrc/radio.rs
- src/shell.rs 65 additions, 46 deletionssrc/shell.rs
[package] | ||
name = "cats-mobile-transceiver-mainboard" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
edition = "2021" | ||
license = "MIT" | ||
... | ... | @@ -26,11 +26,13 @@ ham-cats = { git = "https://gitlab.scd31.com/cats/ham-cats" } |
half = { version = "2.3.1", default-features = false } | ||
# TODO can get rid of some of these features | ||
nmea = { version = "0.6.0", default-features = false, features = ["VTG", "GGA", "RMC", "GNS", "GLL"] } | ||
arrayvec = { version = "0.7.4", default-features = false } | ||
arrayvec = { version = "0.7.4", default-features = false, features = ["serde"] } | ||
ushell = "0.3.6" | ||
usbd-serial = "0.1.1" | ||
usb-device = "0.2.9" | ||
crc = "3.0.1" | ||
embedded-storage = "0.2.0" | ||
num-traits = { version = "0.2.17", default-features = false, features = ["libm"] } | ||
rand = { version = "0.8", default_features = false, features = ["small_rng"] } | ||
rand = { version = "0.8", default-features = false, features = ["small_rng"] } | ||
postcard = "1.0.8" | ||
serde = { version = "1.0.196", default-features = false, features = ["derive"] } |
rustfmt.toml
0 → 100644