mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
26 lines
432 B
C
26 lines
432 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "esp_partition.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Set the partition to store OpenThread dataset.
|
|
*
|
|
* @param[in] partition The storage partition.
|
|
*
|
|
*/
|
|
void esp_openthread_flash_set_partition(const esp_partition_t *partition);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|