Procházet zdrojové kódy

Add dummy DCD to IVT bootdata

teensy4-core
PaulStoffregen před 4 roky
rodič
revize
fa1c5a1bca
1 změnil soubory, kde provedl 7 přidání a 1 odebrání
  1. +7
    -1
      teensy4/bootdata.c

+ 7
- 1
teensy4/bootdata.c Zobrazit soubor

@@ -23,12 +23,18 @@ const uint32_t BootData[3] = {
};


__attribute__ ((section(".bootdata"), used))
const uint32_t DCDData[1] = {
0x410400D2 // header
};


__attribute__ ((section(".ivt"), used))
const uint32_t ImageVectorTable[8] = {
0x402000D1, // header
(uint32_t)vector_table, // docs are wrong, needs to be vec table, not start addr
0, // reserved
0, // dcd
(uint32_t)DCDData, // dcd
(uint32_t)BootData, // abs address of boot data
(uint32_t)ImageVectorTable, // self
0, // command sequence file

Načítá se…
Zrušit
Uložit