mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-11-03 14:33:37 +03:00 
			
		
		
		
	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
		
			
				
	
	
		
			29 lines
		
	
	
		
			991 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			991 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/* Flash Split for 1M chips */
 | 
						|
/* sketch @0x40200000 (~935KB) (958448B) */
 | 
						|
/* empty  @0x402E9FF0 (~4KB) (4112B) */
 | 
						|
/* spiffs @0x402EB000 (~64KB) (65536B) */
 | 
						|
/* eeprom @0x402FB000 (4KB) */
 | 
						|
/* rfcal  @0x402FC000 (4KB) */
 | 
						|
/* wifi   @0x402FD000 (12KB) */
 | 
						|
 | 
						|
MEMORY
 | 
						|
{
 | 
						|
  dport0_0_seg :                        org = 0x3FF00000, len = 0x10
 | 
						|
  dram0_0_seg :                         org = 0x3FFE8000, len = 0x14000
 | 
						|
  iram1_0_seg :                         org = 0x40100000, len = 0x8000
 | 
						|
  irom0_0_seg :                         org = 0x40201010, len = 0xe9ff0
 | 
						|
}
 | 
						|
 | 
						|
PROVIDE ( _FS_start = 0x402EB000 );
 | 
						|
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 = 0x402EB000 );
 | 
						|
PROVIDE ( _SPIFFS_end = 0x402FB000 );
 | 
						|
PROVIDE ( _SPIFFS_page = 0x100 );
 | 
						|
PROVIDE ( _SPIFFS_block = 0x1000 );
 | 
						|
 | 
						|
INCLUDE "local.eagle.app.v6.common.ld"
 |