Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Thick-Common
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
潘栩锋
Thick-Common
Commits
fbab6039
Commit
fbab6039
authored
Sep 28, 2023
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 AD盒.B2 复位功能少了reset字段
parent
481c737e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
IDev7E.cs
GeneralGommunication/IDev7E.cs
+1
-4
FlyAd2021B2Core.cs
Project.FLY.FlyADBase/FlyAd2021.B2/FlyAd2021B2Core.cs
+3
-0
No files found.
GeneralGommunication/IDev7E.cs
View file @
fbab6039
...
...
@@ -132,10 +132,7 @@ namespace GeneralGommunication
if
(
command
is
string
)
{
var
c
=
(
string
)
command
;
foreach
(
var
_c
in
c
)
{
bytes
.
Add
((
byte
)
_c
);
}
bytes
.
AddRange
(
Encoding
.
ASCII
.
GetBytes
(
c
));
}
else
if
(
command
is
char
)
{
...
...
Project.FLY.FlyADBase/FlyAd2021.B2/FlyAd2021B2Core.cs
View file @
fbab6039
...
...
@@ -8,9 +8,11 @@ using System.Collections.Generic;
using
System.ComponentModel
;
using
System.Diagnostics
;
using
System.Linq
;
using
System.Reflection
;
using
System.Text
;
using
System.Threading
;
using
System.Threading.Tasks
;
using
System.Windows
;
namespace
FlyADBase
{
...
...
@@ -1132,6 +1134,7 @@ namespace FlyADBase
{
List
<
byte
>
datas
=
new
List
<
byte
>();
datas
.
Add
(
sec
);
datas
.
AddRange
(
Encoding
.
ASCII
.
GetBytes
(
"reset"
));
var
datasObj
=
new
{
sec
};
...
...
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