diff --git a/components/at/include/esp_at_core.h b/components/at/include/esp_at_core.h index 7070a809..f4cd3e16 100644 --- a/components/at/include/esp_at_core.h +++ b/components/at/include/esp_at_core.h @@ -438,4 +438,16 @@ void esp_at_port_exit_specific(void); */ const uint8_t* esp_at_get_current_cmd_name(void); +/** + * @brief Get the version of the AT core library + * + * @param buffer: buffer to store the version string + * @param size: size of the buffer + * + * @return + * - > 0 : the real length of the version string + * - others : fail + */ +int32_t esp_at_get_core_version(char *buffer, uint32_t size); + void at_handle_result_code(esp_at_result_code_string_index code, void *pbuf); diff --git a/components/at/lib/VERSION b/components/at/lib/VERSION index c1d92498..16cfa53d 100644 --- a/components/at/lib/VERSION +++ b/components/at/lib/VERSION @@ -1,4 +1,4 @@ -ESP32: 35b03bd -ESP32C3: 35b03bd -ESP32C2: 35b03bd -ESP32C6: 141f8b6 +ESP32: d896808 +ESP32C3: d896808 +ESP32C2: d896808 +ESP32C6: d896808 diff --git a/components/at/lib/libesp32_at_core.a b/components/at/lib/libesp32_at_core.a index caa06e0d..fdeea700 100644 Binary files a/components/at/lib/libesp32_at_core.a and b/components/at/lib/libesp32_at_core.a differ diff --git a/components/at/lib/libesp32_at_core_silence.a b/components/at/lib/libesp32_at_core_silence.a index 75319cfe..f1ae9440 100644 Binary files a/components/at/lib/libesp32_at_core_silence.a and b/components/at/lib/libesp32_at_core_silence.a differ diff --git a/components/at/lib/libesp32c2_at_core.a b/components/at/lib/libesp32c2_at_core.a index 4a81b401..1d05b19e 100644 Binary files a/components/at/lib/libesp32c2_at_core.a and b/components/at/lib/libesp32c2_at_core.a differ diff --git a/components/at/lib/libesp32c2_at_core_silence.a b/components/at/lib/libesp32c2_at_core_silence.a index e1659494..df634d08 100644 Binary files a/components/at/lib/libesp32c2_at_core_silence.a and b/components/at/lib/libesp32c2_at_core_silence.a differ diff --git a/components/at/lib/libesp32c3_at_core.a b/components/at/lib/libesp32c3_at_core.a index 68b5ce1e..87016067 100644 Binary files a/components/at/lib/libesp32c3_at_core.a and b/components/at/lib/libesp32c3_at_core.a differ diff --git a/components/at/lib/libesp32c3_at_core_silence.a b/components/at/lib/libesp32c3_at_core_silence.a index f2f530b9..9cdb382b 100644 Binary files a/components/at/lib/libesp32c3_at_core_silence.a and b/components/at/lib/libesp32c3_at_core_silence.a differ diff --git a/components/at/lib/libesp32c6_at_core.a b/components/at/lib/libesp32c6_at_core.a index 75a1cb85..ddb8947d 100644 Binary files a/components/at/lib/libesp32c6_at_core.a and b/components/at/lib/libesp32c6_at_core.a differ diff --git a/components/at/lib/libesp32c6_at_core_silence.a b/components/at/lib/libesp32c6_at_core_silence.a index 33fb5f92..b3bbc605 100644 Binary files a/components/at/lib/libesp32c6_at_core_silence.a and b/components/at/lib/libesp32c6_at_core_silence.a differ