Bootloader.ld.S 291 B

123456789101112131415161718
  1. #if STM32F == 1
  2. #define FLASH_BASE 0x08000000
  3. #define FLASH_LEN 8K
  4. #define RAM_BASE 0x20000000
  5. #define RAM_LEN 20K
  6. #elif STM32F == 7
  7. #define FLASH_BASE 0x08000000
  8. #define FLASH_LEN 16K
  9. #define RAM_BASE 0x20000000
  10. #define RAM_LEN 64K
  11. #endif
  12. #include "../scripts/stm32.ld.S"