Skip to content

Commit 7a97143

Browse files
author
LittleMouse
committed
[update] update sdk version & chip name
1 parent 27a16a4 commit 7a97143

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

ext_components/ax_msp/Kconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ menuconfig AX_MSP_ENABLED
1212
bool "enable ax620e bsp"
1313
help
1414
build by AXERA!
15-
config AX_650N_MSP_ENABLED
16-
bool "enable ax650n bsp"
15+
config AX_650C_MSP_ENABLED
16+
bool "enable ax650C bsp"
1717
help
1818
build by AXERA!
1919
config AX_520_MSP_ENABLED
@@ -26,8 +26,8 @@ menuconfig AX_MSP_ENABLED
2626
prompt "choice common version"
2727
default MSP_V2_0_0_ENABLED
2828
depends on AX_MSP_ENABLED
29-
config MSP_V3_0_0_ENABLED
30-
bool "enable v3.0.0 bsp"
29+
config MSP_V3_6_2_ENABLED
30+
bool "enable v3.6.2 bsp"
3131
help
3232
build by m5stack!
3333
config MSP_V2_0_0_ENABLED

ext_components/ax_msp/SConstruct

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ if 'CONFIG_AX_620E_MSP_ENABLED' in os.environ:
5555
'REGISTER':'static'
5656
})
5757

58-
if 'CONFIG_AX_650N_MSP_ENABLED' in os.environ:
58+
if 'CONFIG_AX_650C_MSP_ENABLED' in os.environ:
5959
MSP_PATH = ''
60-
if 'CONFIG_MSP_V3_0_0_ENABLED' in os.environ:
60+
if 'CONFIG_MSP_V3_6_2_ENABLED' in os.environ:
6161
MSP_PATH = os.environ.get('EXT_MSP_PATH', check_wget_down("https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/linux/llm/m5stack_ax650n_msp.tar.gz", 'm5stack_ax650n_msp.tar.gz'))
6262

6363
SRCS=[]

projects/llm_framework/main_depth_anything/src/EngineWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <global_config.h>
1616

17-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
17+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
1818
static const char *strAlgoModelType[AX_ENGINE_MODEL_TYPE_BUTT] = {"3.6T", "7.2T", "18T"};
1919
#endif
2020

@@ -32,7 +32,7 @@ typedef enum axNPU_TYPE_E {
3232
AX_BL_VNPU_2 = (1 << 4) /* running under BIG-LITTLE VNPU2 */
3333
} AX_NPU_TYPE_E;
3434

35-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
35+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
3636
static AX_S32 CheckModelVNpu(const std::string &strModel, const AX_ENGINE_MODEL_TYPE_T &eModelType,
3737
const AX_S32 &nNpuType, AX_U32 &nNpuSet)
3838
{

projects/llm_framework/main_melotts/src/runner/EngineWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <cstdlib>
1414
#include <global_config.h>
1515

16-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
16+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
1717
static const char *strAlgoModelType[AX_ENGINE_MODEL_TYPE_BUTT] = {"3.6T", "7.2T", "18T"};
1818
#endif
1919

@@ -32,7 +32,7 @@ typedef enum axNPU_TYPE_E {
3232
AX_BL_VNPU_2 = (1 << 4) /* running under BIG-LITTLE VNPU2 */
3333
} AX_NPU_TYPE_E;
3434

35-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
35+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
3636
static AX_S32 CheckModelVNpu(const std::string &strModel, const AX_ENGINE_MODEL_TYPE_T &eModelType, const AX_S32 &nNpuType, AX_U32 &nNpuSet) {
3737
AX_ENGINE_NPU_ATTR_T stNpuAttr;
3838
memset(&stNpuAttr, 0x00, sizeof(stNpuAttr));

projects/llm_framework/main_whisper/src/runner/EngineWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include <global_config.h>
1616

17-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
17+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
1818
static const char *strAlgoModelType[AX_ENGINE_MODEL_TYPE_BUTT] = {"3.6T", "7.2T", "18T"};
1919
#endif
2020

@@ -33,7 +33,7 @@ typedef enum axNPU_TYPE_E {
3333
AX_BL_VNPU_2 = (1 << 4) /* running under BIG-LITTLE VNPU2 */
3434
} AX_NPU_TYPE_E;
3535

36-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
36+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
3737
static AX_S32 CheckModelVNpu(const std::string &strModel, const AX_ENGINE_MODEL_TYPE_T &eModelType, const AX_S32 &nNpuType, AX_U32 &nNpuSet) {
3838
AX_ENGINE_NPU_ATTR_T stNpuAttr;
3939
memset(&stNpuAttr, 0x00, sizeof(stNpuAttr));

projects/llm_framework/main_yolo/src/EngineWrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#include <global_config.h>
1717

18-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
18+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
1919
static const char* strAlgoModelType[AX_ENGINE_MODEL_TYPE_BUTT] = {"3.6T", "7.2T", "18T"};
2020
#endif
2121

@@ -33,7 +33,7 @@ typedef enum axNPU_TYPE_E {
3333
AX_BL_VNPU_2 = (1 << 4) /* running under BIG-LITTLE VNPU2 */
3434
} AX_NPU_TYPE_E;
3535

36-
#if defined(CONFIG_AX_650N_MSP_ENABLED)
36+
#if defined(CONFIG_AX_650C_MSP_ENABLED)
3737
static AX_S32 CheckModelVNpu(const std::string& strModel, const AX_ENGINE_MODEL_TYPE_T& eModelType,
3838
const AX_S32& nNpuType, AX_U32& nNpuSet)
3939
{

0 commit comments

Comments
 (0)