Skip to content

Commit bbdc2e9

Browse files
authored
Merge pull request #751 from jannic/issue-749
2 parents 6f6dc5d + da7392e commit bbdc2e9

26 files changed

+3
-25
lines changed

rp2040-hal/examples/adc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ fn main() -> ! {
6868
&mut pac.RESETS,
6969
&mut watchdog,
7070
)
71-
.ok()
7271
.unwrap();
7372

7473
// The delay object lets us wait for specified amounts of time (in

rp2040-hal/examples/adc_fifo_dma.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ fn main() -> ! {
6969
&mut pac.RESETS,
7070
&mut watchdog,
7171
)
72-
.ok()
7372
.unwrap();
7473

7574
// The delay object lets us wait for specified amounts of time (in

rp2040-hal/examples/adc_fifo_irq.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ mod app {
8080
&mut resets,
8181
&mut watchdog,
8282
)
83-
.ok()
8483
.unwrap();
8584
let sio = hal::Sio::new(c.device.SIO);
8685
let pins = hal::gpio::Pins::new(

rp2040-hal/examples/adc_fifo_poll.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ fn main() -> ! {
6767
&mut pac.RESETS,
6868
&mut watchdog,
6969
)
70-
.ok()
7170
.unwrap();
7271

7372
// The delay object lets us wait for specified amounts of time (in

rp2040-hal/examples/blinky.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ fn main() -> ! {
6161
&mut pac.RESETS,
6262
&mut watchdog,
6363
)
64-
.ok()
6564
.unwrap();
6665

6766
let mut timer = rp2040_hal::Timer::new(pac.TIMER, &mut pac.RESETS, &clocks);

rp2040-hal/examples/dht11.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ fn main() -> ! {
6767
&mut pac.RESETS,
6868
&mut watchdog,
6969
)
70-
.ok()
7170
.unwrap();
7271

7372
// The single-cycle I/O block controls our GPIO pins

rp2040-hal/examples/gpio_dyn_pin_array.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ fn main() -> ! {
6868
&mut pac.RESETS,
6969
&mut watchdog,
7070
)
71-
.ok()
7271
.unwrap();
7372

7473
// We will use the RP2040 timer peripheral as our delay source

rp2040-hal/examples/gpio_in_out.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ fn main() -> ! {
6161
&mut pac.RESETS,
6262
&mut watchdog,
6363
)
64-
.ok()
6564
.unwrap();
6665

6766
// The single-cycle I/O block controls our GPIO pins

rp2040-hal/examples/gpio_irq_example.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ fn main() -> ! {
104104
&mut pac.RESETS,
105105
&mut watchdog,
106106
)
107-
.ok()
108107
.unwrap();
109108

110109
// The single-cycle I/O block controls our GPIO pins

rp2040-hal/examples/i2c.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ fn main() -> ! {
6363
&mut pac.RESETS,
6464
&mut watchdog,
6565
)
66-
.ok()
6766
.unwrap();
6867

6968
// The single-cycle I/O block controls our GPIO pins

0 commit comments

Comments
 (0)