refactor: update SPIFFS initialization and partition sizes; enhance WiFi setup
This commit is contained in:
		| @@ -1,5 +1,23 @@ | ||||
| Import("env") | ||||
|  | ||||
| board_config = env.BoardConfig() | ||||
|  | ||||
| # Calculate SPIFFS size based on partition table | ||||
| SPIFFS_START = 0x310000  # From partitions.csv | ||||
| SPIFFS_SIZE = 0xE0000   # From partitions.csv | ||||
| SPIFFS_PAGE = 256 | ||||
| SPIFFS_BLOCK = 4096 | ||||
|  | ||||
| env.Replace( | ||||
|     MKSPIFFSTOOL="mkspiffs", | ||||
|     SPIFFSBLOCKSZ=SPIFFS_BLOCK, | ||||
|     SPIFFSBLOCKSIZE=SPIFFS_BLOCK, | ||||
|     SPIFFSSTART=SPIFFS_START, | ||||
|     SPIFFSEND=SPIFFS_START + SPIFFS_SIZE, | ||||
|     SPIFFSPAGESZ=SPIFFS_PAGE, | ||||
|     SPIFFSSIZE=SPIFFS_SIZE | ||||
| ) | ||||
|  | ||||
| # Wiederverwendung der replace_version Funktion | ||||
| exec(open("./scripts/pre_build.py").read()) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user