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
aa783e6a
Unverified
Commit
aa783e6a
authored
Mar 28, 2022
by
Rodrigo Garcia
Committed by
GitHub
Mar 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reordering - HardwareSerial Constructor (#6492)
parent
9d188f5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cores/esp32/HardwareSerial.h
cores/esp32/HardwareSerial.h
+4
-4
No files found.
cores/esp32/HardwareSerial.h
View file @
aa783e6a
...
...
@@ -161,18 +161,18 @@ protected:
size_t
_rxBufferSize
;
size_t
_txBufferSize
;
OnReceiveCb
_onReceiveCB
;
OnReceiveErrorCb
_onReceiveErrorCB
;
// _onReceive and _rxTimeout have be consistent when timeout is disabled
bool
_onReceiveTimeout
;
uint8_t
_rxTimeout
;
OnReceiveErrorCb
_onReceiveErrorCB
;
TaskHandle_t
_eventTask
;
#if !CONFIG_DISABLE_HAL_LOCKS
SemaphoreHandle_t
_lock
;
#endif
void
_createEventTask
(
void
*
args
);
void
_destroyEventTask
(
void
);
static
void
_uartEventTask
(
void
*
args
);
#if !CONFIG_DISABLE_HAL_LOCKS
SemaphoreHandle_t
_lock
;
#endif
};
extern
void
serialEventRun
(
void
)
__attribute__
((
weak
));
...
...
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