use storage for partition not csi_log

This commit is contained in:
Bob 2025-12-08 14:55:17 -08:00
parent e350cc2a80
commit 3d8d6bee80
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#include "esp_partition.h"
#include "esp_log.h"
static const char *TAG = "csi_log";
static const char *TAG = "storage";
typedef struct __attribute__((packed)) {
uint32_t seq;
@ -26,7 +26,7 @@ esp_err_t csi_log_init(void)
s_csi_part = esp_partition_find_first(
ESP_PARTITION_TYPE_DATA,
0x40, // subtype from partitions.csv
"csi_log");
"storage");
if (!s_csi_part) {
ESP_LOGE(TAG, "csi_log partition not found");