File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ rtt-target = {version = "0.2.0", features = ["cortex-m"] }
1212nrf52810-hal = { path = " ../../nrf52810-hal" , features = [" rt" ], optional = true }
1313nrf52832-hal = { path = " ../../nrf52832-hal" , features = [" rt" ], optional = true }
1414nrf52840-hal = { path = " ../../nrf52840-hal" , features = [" rt" ], optional = true }
15+ nrf52833-hal = { path = " ../../nrf52833-hal" , features = [" rt" ], optional = true }
1516nrf51-hal = { path = " ../../nrf51-hal" , features = [" rt" ], optional = true }
1617
1718[[bin ]]
@@ -24,3 +25,4 @@ test = false
242552810 = [" nrf52810-hal" ]
252652832 = [" nrf52832-hal" ]
262752840 = [" nrf52840-hal" ]
28+ 52833 = [" nrf52833-hal" ]
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ pub use nrf51_hal as hal;
88pub use nrf52810_hal as hal;
99#[ cfg( feature = "52832" ) ]
1010pub use nrf52832_hal as hal;
11+ #[ cfg( feature = "52833" ) ]
12+ pub use nrf52833_hal as hal;
1113#[ cfg( feature = "52840" ) ]
1214pub use nrf52840_hal as hal;
1315
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ pub mod prelude {
1313
1414pub use crate :: clocks:: Clocks ;
1515pub use crate :: delay:: Delay ;
16+ pub use crate :: ecb:: Ecb ;
1617pub use crate :: saadc:: Saadc ;
1718pub use crate :: spim:: Spim ;
1819pub use crate :: temp:: Temp ;
Original file line number Diff line number Diff line change @@ -43,5 +43,7 @@ echo Building examples/twi-ssd1306...
4343cargo build --manifest-path examples/twi-ssd1306/Cargo.toml
4444echo Building examples/twi-ssd1306...
4545cargo build --manifest-path examples/twi-ssd1306/Cargo.toml --no-default-features --features=" 52840" --target thumbv7em-none-eabi
46+ echo Building examples/ecb-demo...
47+ cargo build --manifest-path examples/ecb-demo/Cargo.toml --features=52832
4648echo Checking source code formatting...
4749cargo +stable fmt -- --check
You can’t perform that action at this time.
0 commit comments