mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
24 lines
605 B
C
24 lines
605 B
C
#pragma once
|
|
#include "esp_err.h"
|
|
#include "esp_mn_iface.h"
|
|
|
|
/**
|
|
* @brief Check chip config to ensure optimum performance
|
|
*/
|
|
void check_chip_config(void);
|
|
|
|
/**
|
|
* @brief Update the speech commands of MultiNet by menuconfig
|
|
*
|
|
* @param multinet The multinet handle
|
|
*
|
|
* @param model_data The model object to query
|
|
*
|
|
* @param langugae The language of MultiNet
|
|
*
|
|
* @return
|
|
* - ESP_OK Success
|
|
* - ESP_ERR_INVALID_STATE Fail
|
|
*/
|
|
esp_err_t esp_mn_commands_update_from_sdkconfig(esp_mn_iface_t *multinet, const model_iface_data_t *model_data);
|