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
a9cb7c6d
Unverified
Commit
a9cb7c6d
authored
Oct 01, 2020
by
lbernstone
Committed by
GitHub
Oct 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mismatched parameter names. Fixes #4310 (#4313)
parent
45d47e2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
cores/esp32/esp32-hal-spi.h
cores/esp32/esp32-hal-spi.h
+1
-1
No files found.
cores/esp32/esp32-hal-spi.h
View file @
a9cb7c6d
...
...
@@ -54,7 +54,7 @@ extern "C" {
struct
spi_struct_t
;
typedef
struct
spi_struct_t
spi_t
;
spi_t
*
spiStartBus
(
uint8_t
spi_num
,
uint32_t
freq
,
uint8_t
dataMode
,
uint8_t
bitOrder
);
spi_t
*
spiStartBus
(
uint8_t
spi_num
,
uint32_t
clockDiv
,
uint8_t
dataMode
,
uint8_t
bitOrder
);
void
spiStopBus
(
spi_t
*
spi
);
//Attach/Detach Signal Pins
...
...
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