Commits on Source (25)
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
add ci See merge request cats/mobile-transceiver-software!2
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
Stephen D authored
-
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 47 additions, 0 deletions.gitlab-ci.yml
- Cargo.lock 102 additions, 32 deletionsCargo.lock
- Cargo.toml 6 additions, 5 deletionsCargo.toml
- LICENSE.md 26 additions, 0 deletionsLICENSE.md
- README.md 52 additions, 3 deletionsREADME.md
- rustfmt.toml 1 addition, 0 deletionsrustfmt.toml
- src/config.rs 102 additions, 93 deletionssrc/config.rs
- src/gps.rs 40 additions, 4 deletionssrc/gps.rs
- src/main.rs 62 additions, 13 deletionssrc/main.rs
- src/radio.rs 15 additions, 7 deletionssrc/radio.rs
- src/shell.rs 75 additions, 45 deletionssrc/shell.rs
- src/status.rs 1 addition, 0 deletionssrc/status.rs
- src/voltage.rs 22 additions, 2 deletionssrc/voltage.rs
- udev.rules 1 addition, 0 deletionsudev.rules
.gitlab-ci.yml
0 → 100644
[package] | ||
name = "cats-mobile-transceiver-mainboard" | ||
version = "0.1.0" | ||
version = "0.2.1" | ||
edition = "2021" | ||
license = "MIT" | ||
... | ... | @@ -16,7 +16,7 @@ stm32f4xx-hal = { version = "0.16", features = ["stm32f411", "rtic", "otg-fs", " |
cortex-m = "0.7" | ||
cortex-m-rt = "0.7" | ||
cortex-m-rtic = { version = "1.1.4" } | ||
#cortex-m-semihosting = "0.5" | ||
cortex-m-semihosting = "0.5" | ||
#panic-semihosting = "0.6" | ||
panic-reset = "0.1.1" | ||
rf4463 = { git = "https://gitlab.scd31.com/stephen/rf4463-lib" } | ||
... | ... | @@ -26,12 +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"] } | ||
# TODO need to add panic-reset at some point | ||
\ No newline at end of file | ||
rand = { version = "0.8", default-features = false, features = ["small_rng"] } | ||
postcard = "1.0.8" | ||
serde = { version = "1.0.196", default-features = false, features = ["derive"] } |
LICENSE.md
0 → 100644
rustfmt.toml
0 → 100644
udev.rules
0 → 100644