Skip to content

Commit e8d3b36

Browse files
committed
[update] ax-samples && [update] version
1 parent 3d843bf commit e8d3b36

7 files changed

Lines changed: 10 additions & 13 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.vscode/settings.json
22
projects/core135_llm_product_test_ui
3-
projects/imx678_test
3+
projects/imx678_test
4+
projects/test_*

ext_components/ax-samples/SConstruct

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ if "CONFIG_AX_SAMPLES_ENABLED" in os.environ:
2929
LINK_SEARCH_PATH = []
3030

3131
INCLUDE += [
32-
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples/base"),
33-
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples/utilities"),
32+
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples"),
3433
]
3534
if "CONFIG_AX_620E_MSP_ENABLED" in os.environ:
3635
INCLUDE += [
3736
os.path.join(
3837
env["GIT_REPO_LISTS"]["ax-samples"]["path"],
39-
"examples/ax620e/middleware",
38+
"examples/ax620e",
4039
)
4140
]
4241

projects/llm_framework/main_depth_anything/src/EngineWrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
88
*
99
**************************************************************************************************/
10-
#include "detection.hpp"
10+
#include "base/detection.hpp"
1111
#define UNUSE_STRUCT_OBJECT
1212
#include "EngineWrapper.hpp"
1313
#include "utils/io.hpp"

projects/llm_framework/main_depth_anything/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
#include "StackFlow.h"
77
#include "EngineWrapper.hpp"
8-
#include "common.hpp"
8+
#include "base/common.hpp"
99
#include <ax_sys_api.h>
1010
#include <sys/stat.h>
1111
#include <fstream>

projects/llm_framework/main_yolo/src/EngineWrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
88
*
99
**************************************************************************************************/
10-
#include "detection.hpp"
10+
#include "base/detection.hpp"
1111
#define UNUSE_STRUCT_OBJECT
1212
#include "EngineWrapper.hpp"
1313
#include "utils/io.hpp"

projects/llm_framework/main_yolo/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
#include "StackFlow.h"
77
#include "EngineWrapper.hpp"
8-
#include "common.hpp"
8+
#include "base/common.hpp"
99
#include <ax_sys_api.h>
1010
#include <sys/stat.h>
1111
#include <fstream>

projects/llm_framework/tools/llm_pack.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,7 @@ def create_bin_deb(package_name, version, src_folder, revision = 'm5stack1'):
225225
with open(os.path.join(deb_folder, f'lib/systemd/system/{package_name}.service'),'w') as f:
226226
f.write(f'[Unit]\n')
227227
f.write(f'Description={package_name} Service\n')
228-
if package_name == 'llm-sys':
229-
f.write(f'After=ubus.service\n')
230-
f.write(f'Requires=ubus.service\n')
231-
else:
228+
if package_name != 'llm-sys':
232229
f.write(f'After=llm-sys.service\n')
233230
f.write(f'Requires=llm-sys.service\n')
234231
f.write(f'\n')
@@ -259,7 +256,7 @@ def create_bin_deb(package_name, version, src_folder, revision = 'm5stack1'):
259256
os.system('rm ./*.deb m5stack_* -rf')
260257
exit(0)
261258

262-
version = '1.3'
259+
version = '1.4'
263260
data_version = '0.2'
264261
src_folder = '../dist'
265262
revision = 'm5stack1'

0 commit comments

Comments
 (0)