aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-10-05 17:54:31 -0400
committerNathan Perry <np@nathanperry.dev>2024-10-05 17:54:31 -0400
commita0498330ef7d035890ab1b3632d789ee3c9fccdf (patch)
treed7376d731774fe5b1898b6301b964404cc58680d /src/lib.rs
parentf63136fe84f4dcebac13c9055faac2e5a67d7786 (diff)
dummy fw bme bringup
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6a9d858..0c9ac1a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,16 +1 @@
#![no_std]
-
-#[derive(
- Debug, Clone, PartialEq, PartialOrd, molybdos::serde::Serialize, molybdos::serde::Deserialize,
-)]
-pub enum Uplink {
- Ping,
-}
-
-#[derive(
- Debug, Clone, PartialEq, PartialOrd, molybdos::serde::Serialize, molybdos::serde::Deserialize,
-)]
-pub enum Downlink {
- Pong,
- PDM(molybdos::heapless::Vec<u8, 48>),
-}