Project setup
This commit is contained in:
25
peripherals/standalone-ads1256/node/Cargo.toml
Normal file
25
peripherals/standalone-ads1256/node/Cargo.toml
Normal file
@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "physical-standalone-ads1256"
|
||||
description = "Support for dedicated ADS1256 boards (i.e. boards that have no other functionality other than to expose the ADS1256)"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
repository.workspace = true
|
||||
readme.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies.physical-node]
|
||||
path = "../../../node"
|
||||
[dependencies.physical-standalone-ads1256-types]
|
||||
path = "../types"
|
||||
[dependencies.physical-ads1256]
|
||||
path = "../../../peripheral-components/ads1256/node"
|
||||
[dependencies.ads1256]
|
||||
workspace = true
|
||||
[dependencies.embedded-hal]
|
||||
workspace = true
|
||||
[dependencies.embedded-hal-async]
|
||||
workspace = true
|
||||
[dependencies.defmt]
|
||||
workspace = true
|
||||
[dependencies.uom]
|
||||
workspace = true
|
1
peripherals/standalone-ads1256/node/src/lib.rs
Normal file
1
peripherals/standalone-ads1256/node/src/lib.rs
Normal file
@ -0,0 +1 @@
|
||||
#![no_std]
|
13
peripherals/standalone-ads1256/types/Cargo.toml
Normal file
13
peripherals/standalone-ads1256/types/Cargo.toml
Normal file
@ -0,0 +1,13 @@
|
||||
[package]
|
||||
name = "physical-standalone-ads1256-types"
|
||||
description = "Support for dedicated ADS1256 boards (i.e. boards that have no other functionality other than to expose the ADS1256)"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
repository.workspace = true
|
||||
readme.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies.ads1256-types]
|
||||
workspace = true
|
||||
[dependencies.physical-ads1256-types]
|
||||
path = "../../../peripheral-components/ads1256/types"
|
1
peripherals/standalone-ads1256/types/src/lib.rs
Normal file
1
peripherals/standalone-ads1256/types/src/lib.rs
Normal file
@ -0,0 +1 @@
|
||||
#![no_std]
|
Reference in New Issue
Block a user