partitions_singleapp_large.csv 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. # to view: idf.py partition-table
  2. #
  3. # ESP-IDF Partition Table
  4. # Name, Type, SubType, Offset, Size, Flags
  5. nvs, data, nvs, 0x9000, 24K,
  6. phy_init,data, phy, 0xf000, 4K,
  7. factory, app, factory, 0x10000, 1500K,
  8. # For other settings, see:
  9. # https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/partition-tables.html#creating-custom-tables
  10. #
  11. # Here is the summary printed for the "Single factory app, no OTA" configuration:
  12. #
  13. # # ESP-IDF Partition Table
  14. # # Name, Type, SubType, Offset, Size, Flags
  15. # nvs, data, nvs, 0x9000, 0x6000,
  16. # phy_init, data, phy, 0xf000, 0x1000,
  17. # factory, app, factory, 0x10000, 1M,
  18. #
  19. #
  20. # Here is the summary printed for the "Factory app, two OTA definitions" configuration:
  21. #
  22. # # ESP-IDF Partition Table
  23. # # Name, Type, SubType, Offset, Size, Flags
  24. # nvs, data, nvs, 0x9000, 0x4000,
  25. # otadata, data, ota, 0xd000, 0x2000,
  26. # phy_init, data, phy, 0xf000, 0x1000,
  27. # factory, app, factory, 0x10000, 1M,
  28. # ota_0, app, ota_0, 0x110000, 1M,
  29. # ota_1, app, ota_1, 0x210000, 1M,