mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
13 lines
293 B
C++
13 lines
293 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "esp_private/partition_linux.h"
|
|
#include "esp_partition.h"
|
|
|
|
uint32_t esp_partition_get_main_flash_sector_size(void)
|
|
{
|
|
return ESP_PARTITION_EMULATED_SECTOR_SIZE;
|
|
}
|