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
58962d2b
Unverified
Commit
58962d2b
authored
Apr 24, 2024
by
Rodrigo Garcia
Committed by
GitHub
Apr 24, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(merging): roll back to create a proper PR
Roll back as it was merged directly instead of creating a PR.
parent
d5a70724
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cores/esp32/esp32-hal-uart.h
cores/esp32/esp32-hal-uart.h
+2
-2
No files found.
cores/esp32/esp32-hal-uart.h
View file @
58962d2b
...
...
@@ -29,8 +29,8 @@ extern "C" {
struct
uart_struct_t
;
typedef
struct
uart_struct_t
uart_t
;
bool
_testUartBegin
(
uint8_t
uart_nr
,
uint32_t
baudrate
,
uint32_t
config
,
int8_t
rxPin
,
int8_t
txPin
,
uint
32_t
rx_buffer_size
,
uint32
_t
tx_buffer_size
,
bool
inverted
,
uint8_t
rxfifo_full_thrhd
);
uart_t
*
uartBegin
(
uint8_t
uart_nr
,
uint32_t
baudrate
,
uint32_t
config
,
int8_t
rxPin
,
int8_t
txPin
,
uint
32_t
rx_buffer_size
,
uint32
_t
tx_buffer_size
,
bool
inverted
,
uint8_t
rxfifo_full_thrhd
);
bool
_testUartBegin
(
uint8_t
uart_nr
,
uint32_t
baudrate
,
uint32_t
config
,
int8_t
rxPin
,
int8_t
txPin
,
uint
16_t
rx_buffer_size
,
uint16
_t
tx_buffer_size
,
bool
inverted
,
uint8_t
rxfifo_full_thrhd
);
uart_t
*
uartBegin
(
uint8_t
uart_nr
,
uint32_t
baudrate
,
uint32_t
config
,
int8_t
rxPin
,
int8_t
txPin
,
uint
16_t
rx_buffer_size
,
uint16
_t
tx_buffer_size
,
bool
inverted
,
uint8_t
rxfifo_full_thrhd
);
void
uartEnd
(
uint8_t
uart_num
);
// This is used to retrieve the Event Queue pointer from a UART IDF Driver in order to allow user to deal with its events
...
...
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