Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
re860_factory
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
waterword
re860_factory
Commits
a8fe216e
Commit
a8fe216e
authored
Sep 28, 2025
by
lyong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:重命名移植文件防止错误重定向
parent
a4f619cc
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
11 deletions
+12
-11
app.js
app.js
+4
-4
factoryTestItem/factoryTestTp.evue
factoryTestItem/factoryTestTp.evue
+1
-0
factoryTestItem/factory_autoFactory.evue
factoryTestItem/factory_autoFactory.evue
+2
-2
factoryTest_plugin/factory_autoFactoryTest.js
factoryTest_plugin/factory_autoFactoryTest.js
+2
-2
factoryTest_plugin/factory_autoFactoryTestUtil.js
factoryTest_plugin/factory_autoFactoryTestUtil.js
+1
-1
factoryTest_plugin/factory_uartUtil.js
factoryTest_plugin/factory_uartUtil.js
+2
-2
lib/factory/factory_uartUtil.c
lib/factory/factory_uartUtil.c
+0
-0
lib/factory/factory_uartUtil.so
lib/factory/factory_uartUtil.so
+0
-0
No files found.
app.js
View file @
a8fe216e
...
...
@@ -3,10 +3,10 @@
// globalThis.cslog = //console.log
console
.
log
=
function
()
{
}
console
.
trace
=
function
()
{
}
console
.
trace
=
function
()
{
}
}
console
.
debug
=
function
(
text
)
{
var
date
=
new
Date
()
text
=
`========= [
${
date
}
]
${
text
}
`
...
...
@@ -61,7 +61,7 @@ function onCreate(uri) {
gc
();
}
require
(
"
autoFactoryTest.js
"
).
autoFactoryTestTimer
();
require
(
"
factory_
autoFactoryTest.js
"
).
autoFactoryTestTimer
();
}
// function onKeyEvent(code) {
...
...
factoryTestItem/factoryTestTp.evue
View file @
a8fe216e
...
...
@@ -105,6 +105,7 @@
},
onShow
:
function
()
{
this
.
$hide
(
"
id_yes
"
)
//console.log(this.$uri + "===========factoryTestTouch onShow=============");
//console.log("FirstStartupFlag:" + FirstStartupFlag);
if
(
FirstStartupFlag
==
1
)
{
...
...
factoryTestItem/autoFactory.evue
→
factoryTestItem/
factory_
autoFactory.evue
View file @
a8fe216e
...
...
@@ -15,8 +15,8 @@
<script>
var
router
=
require
(
"
@system.router
"
);
var
lvgl
=
require
(
"
@native.lvgl7
"
);
var
autoUtil
=
require
(
"
autoFactoryTestUtil.js
"
);
var
manual
=
require
(
"
autoFactoryTest.js
"
);
var
autoUtil
=
require
(
"
factory_
autoFactoryTestUtil.js
"
);
var
manual
=
require
(
"
factory_
autoFactoryTest.js
"
);
var
idTimeOut
=
null
;
...
...
factoryTest_plugin/autoFactoryTest.js
→
factoryTest_plugin/
factory_
autoFactoryTest.js
View file @
a8fe216e
...
...
@@ -4,10 +4,10 @@ var fd;
var
fdCw
;
var
outTime
=
0
;
//自动推出计数器
var
touchFlag
=
0
;
var
uart
=
require
(
"
uartUtil.js
"
);
var
uart
=
require
(
"
factory_
uartUtil.js
"
);
var
_userdata
=
require
(
"
userdata.js
"
);
var
userData
=
_userdata
.
userData
;
var
autoUtil
=
require
(
"
autoFactoryTestUtil.js
"
);
var
autoUtil
=
require
(
"
factory_
autoFactoryTestUtil.js
"
);
var
uartMode
=
2
//0:uart 1:uart_carrie_wave
/* ================= 1. 路由表:关键字 → 处理函数 ================= */
...
...
factoryTest_plugin/autoFactoryTestUtil.js
→
factoryTest_plugin/
factory_
autoFactoryTestUtil.js
View file @
a8fe216e
...
...
@@ -238,7 +238,7 @@ function setAutoModeUI(mode) {
case
"
INIT
"
:
autoMode
=
mode
;
router
.
push
({
path
:
"
autoFactory
"
path
:
"
factory_
autoFactory
"
});
require
(
"
autoOffScreen.js
"
).
onOffAtuoOffScreen
();
setBright
(
100
)
...
...
factoryTest_plugin/uartUtil.js
→
factoryTest_plugin/
factory_
uartUtil.js
View file @
a8fe216e
...
...
@@ -13,11 +13,11 @@ var funcs = [
];
console
.
log
(
"
in uartUtil.js
"
)
console
.
log
(
"
in
factory_
uartUtil.js
"
)
function
register
()
{
console
.
log
(
"
will register uartUtil.so
"
)
var
isSuccess
=
dlfcn
.
register
(
"
@native.uartUtil
"
,
"
/mnt/app/quicknode/tests/re860_factory/lib/factory/uartUtil.so
"
,
funcs
);
var
isSuccess
=
dlfcn
.
register
(
"
@native.uartUtil
"
,
"
/mnt/app/quicknode/tests/re860_factory/lib/factory/
factory_
uartUtil.so
"
,
funcs
);
if
(
isSuccess
)
{
console
.
log
(
"
load so successfully
"
)
var
uartUtil
=
require
(
"
@native.uartUtil
"
);
...
...
lib/factory/uartUtil.c
→
lib/factory/
factory_
uartUtil.c
View file @
a8fe216e
File moved
lib/factory/uartUtil.so
→
lib/factory/
factory_
uartUtil.so
View file @
a8fe216e
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment