rp: add precompiled boot2 to avoid depending on gcc

This commit is contained in:
Dario Nieuwenhuis
2021-03-29 22:28:36 +02:00
parent 4371302da8
commit d938b95430
8 changed files with 31 additions and 25 deletions

BIN
embassy-rp/src/boot2.bin Normal file

Binary file not shown.

View File

@ -1,5 +1,9 @@
use crate::{pac, pll, resets};
#[link_section = ".boot2"]
#[used]
pub static BOOT2: [u8; 256] = *include_bytes!("boot2.bin");
#[non_exhaustive]
pub struct Config {}