Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
bac56090
Commit
bac56090
authored
Jan 18, 2018
by
me-no-dev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorder Updater init
parent
d650ac6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libraries/Update/src/Update.h
libraries/Update/src/Update.h
+1
-1
libraries/Update/src/Updater.cpp
libraries/Update/src/Updater.cpp
+1
-1
No files found.
libraries/Update/src/Update.h
View file @
bac56090
...
...
@@ -162,12 +162,12 @@ class UpdateClass {
bool
_verifyHeader
(
uint8_t
data
);
bool
_verifyEnd
();
THandlerFunction_Progress
_progress_callback
;
uint8_t
_error
;
uint8_t
*
_buffer
;
size_t
_bufferLen
;
size_t
_size
;
THandlerFunction_Progress
_progress_callback
;
uint32_t
_progress
;
uint32_t
_command
;
const
esp_partition_t
*
_partition
;
...
...
libraries/Update/src/Updater.cpp
View file @
bac56090
...
...
@@ -68,10 +68,10 @@ UpdateClass::UpdateClass()
,
_buffer
(
0
)
,
_bufferLen
(
0
)
,
_size
(
0
)
,
_progress_callback
(
NULL
)
,
_progress
(
0
)
,
_command
(
U_FLASH
)
,
_partition
(
NULL
)
,
_progress_callback
(
NULL
)
{
}
...
...
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