Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/embassy/assets/board_photoresistor.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/embassy/assets/board_photoresistor.png
Binary file not shown.
Binary file added docs/embassy/assets/board_rgb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/embassy/assets/board_rgb.png
Binary file not shown.
Binary file removed docs/embassy/assets/board_servo.png
Binary file not shown.
Binary file added docs/embassy/assets/hse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/embassy/assets/lab_board.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/embassy/assets/lab_board.png
Binary file not shown.
9,360 changes: 0 additions & 9,360 deletions docs/embassy/assets/pico2w-pinout.svg

This file was deleted.

Binary file removed docs/embassy/assets/pwm_rp2040_pins.png
Binary file not shown.
Binary file removed docs/embassy/assets/rp_crystal.png
Binary file not shown.
Binary file added docs/embassy/assets/servo_pins.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/embassy/assets/stm32u5-pinout.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/embassy/assets/stm32u545re_timers_cont.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions docs/embassy/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ To make the light fade from red to blue, you can simply interpolate between the
This is how you can bind the I2C interrupt:

```rust
embassy_rp::bind_interrupts!(struct Irqs {
// Do not forget to bind the I2C peripheral interrupt to its handler
I2CX_IRQ => embassy_rp::i2c::InterruptHandler<embassy_rp::peripherals::I2CX>;
embassy_stm32::bind_interrupts!(struct Irqs {
I2C1_EV => i2c::EventInterruptHandler<peripherals::I2C1>;
I2C1_ER => i2c::ErrorInterruptHandler<peripherals::I2C1>;
});
```

Expand Down
411 changes: 209 additions & 202 deletions docs/embassy/index.md

Large diffs are not rendered by default.