* Create an `soc` module with a submodule for each chip, move `peripherals` in * Move the `cpu_control` module into `soc` * Move the `efuse` module into `soc` * Refactor type definitions from `gpio` module into `soc` * Put all embassy-related files in a common directory * Change visibility of `GpioPin` constructor
5 lines
71 B
Rust
5 lines
71 B
Rust
pub mod cpu_control;
|
|
pub mod efuse;
|
|
pub mod gpio;
|
|
pub mod peripherals;
|