1#![no_std]
2
3pub static BOOT_LOADER_W25Q080: [u8; 256] =
5 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_w25q080.padded.bin"));
6
7pub static BOOT_LOADER_RAM_MEMCPY: [u8; 256] =
9 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_ram_memcpy.padded.bin"));
10
11pub static BOOT_LOADER_AT25SF128A: [u8; 256] =
13 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_at25sf128a.padded.bin"));
14
15pub static BOOT_LOADER_GD25Q64CS: [u8; 256] =
17 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_gd25q64cs.padded.bin"));
18
19pub static BOOT_LOADER_W25X10CL: [u8; 256] =
21 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_w25x10cl.padded.bin"));
22
23pub static BOOT_LOADER_GENERIC_03H: [u8; 256] =
25 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_generic_03h.padded.bin"));
26
27pub static BOOT_LOADER_IS25LP080: [u8; 256] =
29 *include_bytes!(concat!(env!("OUT_DIR"), "/boot2_is25lp080.padded.bin"));