mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
Re-add deprecated _SPIFFS_xxx linker symbols (#6543)
In order to give user libs a change to update to the new symbols, re-add the _SPIFFS_XX symbols to the linker file with a comment that they are deprecated. Also add back spiffs_hal_xxx functions, also marked as deprecated. Fixes #6542
This commit is contained in:
committed by
david gauchard
parent
2b9fcdb568
commit
418b00f7c0
@ -19,5 +19,10 @@ PROVIDE ( _FS_end = 0x402FB000 );
|
||||
PROVIDE ( _FS_page = 0x100 );
|
||||
PROVIDE ( _FS_block = 0x1000 );
|
||||
PROVIDE ( _EEPROM_start = 0x402fb000 );
|
||||
/* The following symbols are DEPRECATED and will be REMOVED in a future release */
|
||||
PROVIDE ( _SPIFFS_start = 0x402D3000 );
|
||||
PROVIDE ( _SPIFFS_end = 0x402FB000 );
|
||||
PROVIDE ( _SPIFFS_page = 0x100 );
|
||||
PROVIDE ( _SPIFFS_block = 0x1000 );
|
||||
|
||||
INCLUDE "local.eagle.app.v6.common.ld"
|
||||
|
Reference in New Issue
Block a user