fix: update SPIFFS binary creation and enhance NFC buffer size

This commit is contained in:
2025-02-22 11:46:17 +01:00
parent 32a6e9dcd3
commit 77b9eda110
5 changed files with 13 additions and 9 deletions

View File

@ -19,6 +19,12 @@
void setup() {
Serial.begin(115200);
uint64_t chipid;
chipid = ESP.getEfuseMac(); //The chip ID is essentially its MAC address(length: 6 bytes).
Serial.printf("ESP32 Chip ID = %04X", (uint16_t)(chipid >> 32)); //print High 2 bytes
Serial.printf("%08X\n", (uint32_t)chipid); //print Low 4bytes.
// Initialize SPIFFS
initializeSPIFFS();