Skip to content

Commit

Permalink
Merge branch 'main' into Bartosz-Slowik-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz-Slowik authored Aug 28, 2023
2 parents 754bdb2 + 02edbe6 commit 337686d
Show file tree
Hide file tree
Showing 16 changed files with 586 additions and 79 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/.vscode
/target
/.idea
/target
gyffhks
package-lock.json
207 changes: 207 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions crates/cansat-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "cansat-core"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -16,10 +16,17 @@ accelerometer = "0.12.0"
serde = { version = "1.0.159", default-features = false, features = ["derive"] }
heapless-bytes = "0.3.0"
defmt = { version = "0.3.4", optional = true }
mpu6050 = { version = "0.1.0"}

[dependencies.nmea]
git = "https://github.com/AeroRust/nmea"
default-features = false
features = ["serde", "GGA"]

[dependencies.derive_more]
version = "0.99.17"
default-features = false
features = [
"add", "mul",
"add",
"mul",
]
version = "0.99.17"
1 change: 1 addition & 0 deletions crates/cansat-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#![no_std]

pub mod measurements;
pub mod nmea;
pub mod quantity;

pub use measurements::Measurements;
Expand Down
Loading

0 comments on commit 337686d

Please sign in to comment.