added partitions settings for 4M size flash

This commit is contained in:
Bogdan Pilyugin 2024-03-31 12:01:59 +02:00
parent 0c42c5ef1b
commit b7e86d4ca4
10 changed files with 3474 additions and 1264 deletions

1718
.project

File diff suppressed because it is too large Load Diff

@ -1 +1 @@
Subproject commit 9dbfd1ac619e962aa6f83f58743a68d437a7dfab
Subproject commit 4f8ee9bde65cf00f5114d6358106fc971d304ba1

@ -1 +1 @@
Subproject commit 84257e8276d108a61aa9f3951f1b940cdaeeb2b4
Subproject commit b473c8f19800760dbb956dc1a0b789ff07a80ad0

View File

@ -0,0 +1,9 @@
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x8000,
otadata, data, ota, , 0x2000,
phy_init, data, phy, , 0x1000,
nvs_key, data, nvs_keys, , 0x1000,
ota_0, app, ota_0, 0x20000, 0x1E0000,
ota_1, app, ota_1, , 0x1E0000,
storage, data, spiffs, , 0x20000,
1 # ESP-IDF Partition Table
2 # Name, Type, SubType, Offset, Size, Flags
3 nvs, data, nvs, 0x9000, 0x8000,
4 otadata, data, ota, , 0x2000,
5 phy_init, data, phy, , 0x1000,
6 nvs_key, data, nvs_keys, , 0x1000,
7 ota_0, app, ota_0, 0x20000, 0x1E0000,
8 ota_1, app, ota_1, , 0x1E0000,
9 storage, data, spiffs, , 0x20000,

View File

@ -0,0 +1,8 @@
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x8000,
otadata, data, ota, , 0x2000,
phy_init, data, phy, , 0x1000,
nvs_key, data, nvs_keys, , 0x1000,
ota_0, app, ota_0, 0x20000, 0x1E0000,
storage, data, spiffs, , 0x200000,
1 # ESP-IDF Partition Table
2 # Name, Type, SubType, Offset, Size, Flags
3 nvs, data, nvs, 0x9000, 0x8000,
4 otadata, data, ota, , 0x2000,
5 phy_init, data, phy, , 0x1000,
6 nvs_key, data, nvs_keys, , 0x1000,
7 ota_0, app, ota_0, 0x20000, 0x1E0000,
8 storage, data, spiffs, , 0x200000,

View File

@ -1,9 +0,0 @@
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs,data,nvs, 0x9000,0x8000,
otadata,data,ota, ,0x2000,
phy_init,data,phy, ,0x1000,
nvs_key,data,nvs_keys, ,0x1000,
ota_0,app,ota_0, 0x20000,0x1E0000,
ota_1,app,ota_1, ,0x1E0000,
storage,data,spiffs, ,0x20000,
1 # ESP-IDF Partition Table
2 # Name, Type, SubType, Offset, Size, Flags
3 nvs,data,nvs, 0x9000,0x8000,
4 otadata,data,ota, ,0x2000,
5 phy_init,data,phy, ,0x1000,
6 nvs_key,data,nvs_keys, ,0x1000,
7 ota_0,app,ota_0, 0x20000,0x1E0000,
8 ota_1,app,ota_1, ,0x1E0000,
9 storage,data,spiffs, ,0x20000,

View File

@ -1949,16 +1949,6 @@ CONFIG_ESPFS_USE_HEATSHRINK=y
# end of libespfs
# end of WebGUIApp
#
# esp-modem
#
CONFIG_ESP_MODEM_CMUX_DEFRAGMENT_PAYLOAD=y
# CONFIG_ESP_MODEM_USE_INFLATABLE_BUFFER_IF_NEEDED is not set
CONFIG_ESP_MODEM_CMUX_DELAY_AFTER_DLCI_SETUP=0
# CONFIG_ESP_MODEM_CMUX_USE_SHORT_PAYLOADS_ONLY is not set
# CONFIG_ESP_MODEM_ADD_CUSTOM_MODULE is not set
# end of esp-modem
#
# The Things Network
#
@ -1982,6 +1972,16 @@ CONFIG_TTN_BG_TASK_PRIO=10
CONFIG_TTN_PROVISION_UART_NONE=y
CONFIG_TTN_PROVISION_UART_NUM=0
# end of The Things Network
#
# esp-modem
#
CONFIG_ESP_MODEM_CMUX_DEFRAGMENT_PAYLOAD=y
# CONFIG_ESP_MODEM_USE_INFLATABLE_BUFFER_IF_NEEDED is not set
CONFIG_ESP_MODEM_CMUX_DELAY_AFTER_DLCI_SETUP=0
# CONFIG_ESP_MODEM_CMUX_USE_SHORT_PAYLOADS_ONLY is not set
# CONFIG_ESP_MODEM_ADD_CUSTOM_MODULE is not set
# end of esp-modem
# end of Component config
# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff