1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ESP32: Partition Table の確認方法

Posted at

Partition Table を確認するプログラム

Linux の場合、Partition Table の定義は次のフォルダーにあります。

$HOME/.arduino15/packages/esp32/hardware/esp32/3.1.3/tools/partitions

Arduino IDE で Partition Table は 次で切り替えます。

ツール -> Partition Scheme
image.png

partition01.ino
#include "esp_partition.h"

void setup() {
	Serial.begin(115200);
	Serial.println("*** setup *** aaa ***");
	delay(2000);
	Serial.println("*** setup *** bbb ***");
	delay(2000);
	Serial.println("*** setup *** ccc ***");
	delay(2000);

	Serial.println("Partition Table:");
	Serial.println("====================");

    // すべてのパーティションを取得
    esp_partition_iterator_t it = esp_partition_find(ESP_PARTITION_TYPE_APP, ESP_PARTITION_SUBTYPE_ANY, NULL);

    while (it != NULL) {
        const esp_partition_t *partition = esp_partition_get(it);
        Serial.printf("Name: %s, Type: 0x%X, SubType: 0x%X, Address: 0x%X, Size: %d KB\n",
                      partition->label, partition->type, partition->subtype, partition->address, partition->size / 1024);
        it = esp_partition_next(it);
    }
    esp_partition_iterator_release(it);

	delay(2000);
	Serial.println("*** setup *** end ***");
}

void loop() {
}

Default 4MB with spiffs が選ばれた時

tools/partitions/default.csv
# Name,   Type, SubType, Offset,  Size, Flags
nvs,      data, nvs,     0x9000,  0x5000,
otadata,  data, ota,     0xe000,  0x2000,
app0,     app,  ota_0,   0x10000, 0x140000,
app1,     app,  ota_1,   0x150000,0x140000,
spiffs,   data, spiffs,  0x290000,0x160000,
coredump, data, coredump,0x3F0000,0x10000,

実行結果

Partition Table:
====================
Name: app0, Type: 0x0, SubType: 0x10, Address: 0x10000, Size: 1280 KB
Name: app1, Type: 0x0, SubType: 0x11, Address: 0x150000, Size: 1280 KB

Minimal が選ばれた時

tools/partitions/minimal.csv
 Name,   Type, SubType, Offset,   Size, Flags
nvs,      data, nvs,     0x9000,   0x5000,
otadata,  data, ota,     0xe000,   0x2000,
app0,     app,  ota_0,   0x10000,  0x140000,
spiffs,   data, spiffs,  0x150000, 0xA0000,
coredump, data, coredump,0x1F0000, 0x10000,

実行結果

Partition Table:
====================
Name: app0, Type: 0x0, SubType: 0x10, Address: 0x10000, Size: 1280 KB

Huge App が選ばれた時

tools/partitions/huge_app.csv
# Name,   Type, SubType, Offset,  Size, Flags
nvs,      data, nvs,     0x9000,  0x5000,
otadata,  data, ota,     0xe000,  0x2000,
app0,     app,  ota_0,   0x10000, 0x300000,
spiffs,   data, spiffs,  0x310000,0xE0000,
coredump, data, coredump,0x3F0000,0x10000,

実行結果

Partition Table:
====================
Name: app0, Type: 0x0, SubType: 0x10, Address: 0x10000, Size: 3072 KB

NO OTA (2MB APP / 2MB SPIFFS) が選ばれた時

tools/partitions/no_ota.csv
# Name,   Type, SubType, Offset,  Size, Flags
nvs,      data, nvs,     0x9000,  0x5000,
otadata,  data, ota,     0xe000,  0x2000,
app0,     app,  ota_0,   0x10000, 0x200000,
spiffs,   data, spiffs,  0x210000,0x1E0000,
coredump, data, coredump,0x3F0000,0x10000,

実行結果

Partition Table:
====================
Name: app0, Type: 0x0, SubType: 0x10, Address: 0x10000, Size: 2048 KB
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?