Skip to content

Commit bd14152

Browse files
committed
[update] update ax_msp kconfig bsp version,pzmq add NotAction dec,static_lib add libfmt
1 parent 07c964c commit bd14152

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

ext_components/StackFlow/stackflow/pzmq.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ class pzmq {
382382
std::unique_lock<std::mutex> lock(zmq_fun_mtx_);
383383
retval = zmq_fun_.at(msg_ptr->string())(this, msg1_ptr);
384384
} catch (...) {
385-
retval = "NotAction";
385+
retval = msg_ptr->string() + " NotAction";
386386
}
387387
zmq_send(zmq_socket_, retval.c_str(), retval.length(), 0);
388388
msg1_ptr.reset();

ext_components/ax_msp/Kconfig

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,23 @@ menuconfig AX_MSP_ENABLED
2525
choice
2626
prompt "choice common version"
2727
default MSP_V2_0_0_ENABLED
28-
depends on AX_MSP_ENABLED
29-
config MSP_V3_6_2_ENABLED
30-
bool "enable v3.6.2 bsp"
31-
help
32-
build by m5stack!
28+
depends on AX_MSP_ENABLED && AX_620E_MSP_ENABLED
3329
config MSP_V2_0_0_ENABLED
3430
bool "enable v2.0.0 bsp"
3531
help
3632
build by m5stack!
3733
endchoice
38-
34+
35+
choice
36+
prompt "choice common version"
37+
default MSP_V3_6_2_ENABLED
38+
depends on AX_MSP_ENABLED && AX_650C_MSP_ENABLED
39+
config MSP_V3_6_2_ENABLED
40+
bool "enable v3.6.2 bsp"
41+
help
42+
build by m5stack!
43+
endchoice
44+
3945
config SAMPLE_COMMON_ENABLED
4046
bool "Enable sample common"
4147
default n

projects/llm_framework/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import shutil
55
os.environ['SDK_PATH'] = os.path.normpath(str(Path(os.getcwd())/'..'/'..'/'SDK'))
66
os.environ['EXT_COMPONENTS_PATH'] = os.path.normpath(str(Path(os.getcwd())/'..'/'..'/'ext_components'))
77

8-
version = 'v0.1.1'
8+
version = 'v0.1.2'
99
static_lib = 'static_lib'
1010
update = False
1111

projects/llm_framework/config_defaults.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ CONFIG_SINGLE_HEADER_LIBS_ENABLED=y
2323
CONFIG_AX_SAMPLES_ENABLED=y
2424
CONFIG_SIMDJSON_COMPENENT_ENABLED=y
2525
CONFIG_SAMPLE_COMMON_ENABLED=y
26+
CONFIG_MODBUS_ENABLED=y

0 commit comments

Comments
 (0)