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-pico
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-pico
Commits
71edeb8d
Unverified
Commit
71edeb8d
authored
Mar 16, 2024
by
Juraj Andrássy
Committed by
GitHub
Mar 16, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lwIP_enc28j60 - add missing end() method (#2055)
parent
c90248dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
libraries/lwIP_enc28j60/src/utility/enc28j60.cpp
libraries/lwIP_enc28j60/src/utility/enc28j60.cpp
+6
-0
libraries/lwIP_enc28j60/src/utility/enc28j60.h
libraries/lwIP_enc28j60/src/utility/enc28j60.h
+5
-0
No files found.
libraries/lwIP_enc28j60/src/utility/enc28j60.cpp
View file @
71edeb8d
...
@@ -516,6 +516,12 @@ bool ENC28J60::begin(const uint8_t* address, netif *net) {
...
@@ -516,6 +516,12 @@ bool ENC28J60::begin(const uint8_t* address, netif *net) {
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
void
ENC28J60
::
end
()
{
}
/*---------------------------------------------------------------------------*/
uint16_t
ENC28J60
::
sendFrame
(
const
uint8_t
*
data
,
uint16_t
datalen
)
{
uint16_t
ENC28J60
::
sendFrame
(
const
uint8_t
*
data
,
uint16_t
datalen
)
{
uint16_t
dataend
;
uint16_t
dataend
;
...
...
libraries/lwIP_enc28j60/src/utility/enc28j60.h
View file @
71edeb8d
...
@@ -61,6 +61,11 @@ public:
...
@@ -61,6 +61,11 @@ public:
*/
*/
bool
begin
(
const
uint8_t
*
address
,
netif
*
net
);
bool
begin
(
const
uint8_t
*
address
,
netif
*
net
);
/**
Shut down the Ethernet controlled
*/
void
end
();
/**
/**
Send an Ethernet frame
Send an Ethernet frame
@param data a pointer to the data to send
@param data a pointer to the data to send
...
...
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