Created multiplexing publish / subscribe example.
This commit is contained in:
@ -8,12 +8,15 @@ readme.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[features]
|
||||
standard-multiplexer = []
|
||||
config = ["physical-ads1256-types/config"]
|
||||
standard-input = ["physical-ads1256-types/standard-input"]
|
||||
standard-multiplexer = ["standard-input"]
|
||||
|
||||
[dependencies.physical-node]
|
||||
path = "../../../node"
|
||||
[dependencies.physical-ads1256-types]
|
||||
path = "../types"
|
||||
features = ["defmt"]
|
||||
[dependencies.ads1256]
|
||||
workspace = true
|
||||
[dependencies.embedded-hal]
|
||||
|
@ -1,10 +0,0 @@
|
||||
|
||||
struct AnalogInput {}
|
||||
|
||||
// AnalogInputS
|
||||
// AnalogInputI
|
||||
// AnalogInputC
|
||||
// AnalogInputSI
|
||||
// AnalogInputSC
|
||||
// AnalogInputIC
|
||||
// AnalogInputSIC
|
@ -1,4 +1,6 @@
|
||||
#![no_std]
|
||||
|
||||
#[cfg(feature = "standard-multiplexer")]
|
||||
mod analog_input;
|
||||
mod standard_multiplexer;
|
||||
|
||||
pub use physical_ads1256_types::*;
|
Reference in New Issue
Block a user