[update] ax-samples && [update] version

This commit is contained in:
dianjixz
2025-01-07 11:57:54 +08:00
parent 3d843bf766
commit e8d3b36eb9
7 changed files with 10 additions and 13 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
.vscode/settings.json
projects/core135_llm_product_test_ui
projects/imx678_test
projects/imx678_test
projects/test_*
+2 -3
View File
@@ -29,14 +29,13 @@ if "CONFIG_AX_SAMPLES_ENABLED" in os.environ:
LINK_SEARCH_PATH = []
INCLUDE += [
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples/base"),
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples/utilities"),
os.path.join(env["GIT_REPO_LISTS"]["ax-samples"]["path"], "examples"),
]
if "CONFIG_AX_620E_MSP_ENABLED" in os.environ:
INCLUDE += [
os.path.join(
env["GIT_REPO_LISTS"]["ax-samples"]["path"],
"examples/ax620e/middleware",
"examples/ax620e",
)
]
@@ -7,7 +7,7 @@
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
*
**************************************************************************************************/
#include "detection.hpp"
#include "base/detection.hpp"
#define UNUSE_STRUCT_OBJECT
#include "EngineWrapper.hpp"
#include "utils/io.hpp"
@@ -5,7 +5,7 @@
*/
#include "StackFlow.h"
#include "EngineWrapper.hpp"
#include "common.hpp"
#include "base/common.hpp"
#include <ax_sys_api.h>
#include <sys/stat.h>
#include <fstream>
@@ -7,7 +7,7 @@
* written consent of Axera Semiconductor (Ningbo) Co., Ltd.
*
**************************************************************************************************/
#include "detection.hpp"
#include "base/detection.hpp"
#define UNUSE_STRUCT_OBJECT
#include "EngineWrapper.hpp"
#include "utils/io.hpp"
@@ -5,7 +5,7 @@
*/
#include "StackFlow.h"
#include "EngineWrapper.hpp"
#include "common.hpp"
#include "base/common.hpp"
#include <ax_sys_api.h>
#include <sys/stat.h>
#include <fstream>
+2 -5
View File
@@ -225,10 +225,7 @@ def create_bin_deb(package_name, version, src_folder, revision = 'm5stack1'):
with open(os.path.join(deb_folder, f'lib/systemd/system/{package_name}.service'),'w') as f:
f.write(f'[Unit]\n')
f.write(f'Description={package_name} Service\n')
if package_name == 'llm-sys':
f.write(f'After=ubus.service\n')
f.write(f'Requires=ubus.service\n')
else:
if package_name != 'llm-sys':
f.write(f'After=llm-sys.service\n')
f.write(f'Requires=llm-sys.service\n')
f.write(f'\n')
@@ -259,7 +256,7 @@ if __name__ == "__main__":
os.system('rm ./*.deb m5stack_* -rf')
exit(0)
version = '1.3'
version = '1.4'
data_version = '0.2'
src_folder = '../dist'
revision = 'm5stack1'