Skip to content

Commit

Permalink
changed to alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
inesmaria08 committed Jan 22, 2025
1 parent 813ebe9 commit e505622
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ libtock_i2c_master = { path = "apis/peripherals/i2c_master" }
libtock_i2c_master_slave = { path = "apis/peripherals/i2c_master_slave" }
libtock_key_value = { path = "apis/storage/key_value" }
libtock_leds = { path = "apis/interface/leds" }
libtock_servo = { path = "apis/interface/servo" }
libtock_low_level_debug = { path = "apis/kernel/low_level_debug" }
libtock_ninedof = { path = "apis/sensors/ninedof" }
libtock_platform = { path = "platform" }
libtock_proximity = { path = "apis/sensors/proximity" }
libtock_rng = { path = "apis/peripherals/rng" }
libtock_runtime = { path = "runtime" }
libtock_servo = { path = "apis/interface/servo" }
libtock_small_panic = { path = "panic_handlers/small_panic" }
libtock_sound_pressure = { path = "apis/sensors/sound_pressure" }
libtock_spi_controller = { path = "apis/peripherals/spi_controller" }
Expand Down Expand Up @@ -70,9 +70,9 @@ exclude = ["tock"]
members = [
"apis/interface/buttons",
"apis/interface/buzzer",
"apis/interface/servo",
"apis/interface/console",
"apis/interface/leds",
"apis/interface/servo",
"apis/kernel/low_level_debug",
"apis/peripherals/adc",
"apis/peripherals/alarm",
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ pub mod leds {
use libtock_leds as leds;
pub type Leds = leds::Leds<super::runtime::TockSyscalls>;
}
pub mod servo {
use libtock_servo as servo;
pub type Servo = servo::Servo<super::runtime::TockSyscalls>;
}
pub mod low_level_debug {
use libtock_low_level_debug as lldb;
pub type LowLevelDebug = lldb::LowLevelDebug<super::runtime::TockSyscalls>;
Expand All @@ -89,6 +85,10 @@ pub mod rng {
pub type Rng = rng::Rng<super::runtime::TockSyscalls>;
pub use rng::RngListener;
}
pub mod servo {
use libtock_servo as servo;
pub type Servo = servo::Servo<super::runtime::TockSyscalls>;
}
pub mod sound_pressure {
use libtock_sound_pressure as sound_pressure;
pub type SoundPressure = sound_pressure::SoundPressure<super::runtime::TockSyscalls>;
Expand Down

0 comments on commit e505622

Please sign in to comment.