mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
Update change log
This commit is contained in:
parent
62b626f3f6
commit
d14ed19756
@ -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
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user