Update change log

This commit is contained in:
xysun 2023-05-06 10:33:05 +08:00
parent 62b626f3f6
commit d14ed19756
3 changed files with 10 additions and 7 deletions

View File

@ -6,8 +6,9 @@ If you can not map model partition successfully, please check the left free stor
## unreleased
- Bugfix: remove all cxx11:string
- Bugfix: remove esp-partition require for esp32s2 & esp32c3 on idf v4.4
- Add more loader option for multinet to blance CPU and memory consumption
- Bugfix: remove esp-partition for esp32s2 & esp32c3 on idf v4.4
- Add more loader option for multinet to blance CPU and memory consumption (doing)
- Update multinet API to add/modify/check new commands in the code
## 1.3.0
- Update the partition APIs to keep compatible with both IDF v4.4 and IDF v5.0

View File

@ -188,7 +188,12 @@ typedef esp_mn_error_t* (*esp_wn_iface_op_set_speech_commands)(model_iface_data_
*/
typedef void (*esp_mn_iface_op_print_active_speech_commands)(model_iface_data_t *model_data);
/**
* @brief Check if input string can be tokenized
*
* @param model_data The model object to query
* @param str The input string
*/
typedef int (*esp_mn_iface_op_check_speech_command)(model_iface_data_t *model_data, char *str);
typedef struct {

View File

@ -110,9 +110,6 @@ esp_mn_phrase_t *esp_mn_commands_get_from_string(const char *string);
* @Warning: Must be used after [add/remove/modify/clear] function,
* otherwise the language model of multinet can not be updated.
*
* @param multinet The multinet handle
* @param model_data The model object to query
*
* @return
* - NULL Success
* - others The list of error phrase which can not be parsed by multinet.