Mirror of espurna firmware for wireless switches and more
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
792 B

  1. /*
  2. sketch: 999KB
  3. fs: 0KB
  4. eeprom: 4KB
  5. */
  6. MEMORY
  7. {
  8. dport0_0_seg : org = 0x3FF00000, len = 0x10
  9. dram0_0_seg : org = 0x3FFE8000, len = 0x14000
  10. iram1_0_seg : org = 0x40100000, len = 0x8000
  11. irom0_0_seg : org = 0x40201010, len = 0xf9ff0
  12. }
  13. /*
  14. Provide both _SPIFFS_ and _FS_ to be compatible with 2.3.0...2.6.0+ and
  15. any library that is using old _SPIFFS_...
  16. */
  17. PROVIDE ( _SPIFFS_start = 0x402fb000 );
  18. PROVIDE ( _SPIFFS_end = 0x402fb000 );
  19. PROVIDE ( _SPIFFS_page = 0x0 );
  20. PROVIDE ( _SPIFFS_block = 0x0 );
  21. PROVIDE ( _FS_start = _SPIFFS_start );
  22. PROVIDE ( _FS_end = _SPIFFS_end );
  23. PROVIDE ( _FS_page = _SPIFFS_page );
  24. PROVIDE ( _FS_block = _SPIFFS_block );
  25. INCLUDE "local.eagle.app.v6.common.ld"