-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add KNX-IP support for the rp2040 plattform #266
Closed
Closed
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Plattform for Raspberry Pi Pico and other RP2040 boards | |
by SirSydom <[email protected]> 2021-2022 | ||
|
||
made to work with arduino-pico - "Raspberry Pi Pico Arduino core, for all RP2040 boards" | ||
by Earl E. Philhower III https://github.com/earlephilhower/arduino-pico V1.11.0 | ||
by Earl E. Philhower III https://github.com/earlephilhower/arduino-pico | ||
|
||
|
||
RTTI must be set to enabled in the board options | ||
|
@@ -17,6 +17,10 @@ EEPROM Emulation from arduino-pico core (max 4k) can be use by defining USE_RP20 | |
|
||
A RAM-buffered Flash can be use by defining USE_RP2040_LARGE_EEPROM_EMULATION | ||
|
||
For usage of KNX-IP you have to define either | ||
- KNX_IP_W5500 (use the arduino-pico core's w5500 lwip stack) | ||
- KNX_IP_WIFI (use the arduino-pico core's PiPicoW lwip stack) | ||
- KNX_IP_GENERIC (use the Ethernet_Generic stack) | ||
|
||
----------------------------------------------------*/ | ||
|
||
|
@@ -45,8 +49,11 @@ A RAM-buffered Flash can be use by defining USE_RP2040_LARGE_EEPROM_EMULATION | |
#endif | ||
#endif | ||
|
||
#ifndef KNX_SERIAL | ||
#define KNX_SERIAL Serial1 | ||
#ifdef KNX_IP_W5500 | ||
extern Wiznet5500lwIP KNX_NETIF; | ||
#elif defined(KNX_IP_WIFI) | ||
#elif defined(KNX_IP_GENERIC) | ||
|
||
#endif | ||
|
||
RP2040ArduinoPlatform::RP2040ArduinoPlatform() | ||
|
@@ -234,6 +241,126 @@ void RP2040ArduinoPlatform::writeBufferedEraseBlock() | |
} | ||
} | ||
#endif | ||
|
||
#if defined(KNX_NETIF) | ||
uint32_t RP2040ArduinoPlatform::currentIpAddress() | ||
{ | ||
|
||
return KNX_NETIF.localIP(); | ||
} | ||
uint32_t RP2040ArduinoPlatform::currentSubnetMask() | ||
{ | ||
return KNX_NETIF.subnetMask(); | ||
} | ||
uint32_t RP2040ArduinoPlatform::currentDefaultGateway() | ||
{ | ||
return KNX_NETIF.gatewayIP(); | ||
} | ||
void RP2040ArduinoPlatform::macAddress(uint8_t* addr) | ||
{ | ||
#if defined(KNX_IP_W5500) | ||
addr = KNX_NETIF.getNetIf()->hwaddr; | ||
#elif defined(KNX_IP_WIFI) | ||
uint8_t macaddr[6] = {0,0,0,0,0,0}; | ||
addr = KNX_NETIF.macAddress(macaddr); | ||
#elif defined(KNX_IP_GENERIC) | ||
KNX_NETIF.MACAddress(addr); | ||
#endif | ||
} | ||
|
||
// multicast | ||
void RP2040ArduinoPlatform::setupMultiCast(uint32_t addr, uint16_t port) | ||
{ | ||
mcastaddr = IPAddress(htonl(addr)); | ||
_port = port; | ||
uint8_t result = _udp.beginMulticast(mcastaddr, port); | ||
(void) result; | ||
|
||
#ifdef KNX_IP_GENERIC | ||
//if(!_unicast_socket_setup) | ||
// _unicast_socket_setup = UDP_UNICAST.begin(3671); | ||
#endif | ||
|
||
#ifdef KNX_LOG_IP | ||
print("Setup Mcast addr: "); | ||
print(mcastaddr.toString().c_str()); | ||
print(" on port: "); | ||
print(port); | ||
print(" result "); | ||
println(result); | ||
#endif | ||
} | ||
|
||
void RP2040ArduinoPlatform::closeMultiCast() | ||
{ | ||
_udp.stop(); | ||
} | ||
|
||
bool RP2040ArduinoPlatform::sendBytesMultiCast(uint8_t* buffer, uint16_t len) | ||
{ | ||
#ifdef KNX_LOG_IP | ||
printHex("<- ",buffer, len); | ||
#endif | ||
//ToDo: check if Ethernet is able to receive | ||
_udp.beginPacket(mcastaddr, _port); | ||
_udp.write(buffer, len); | ||
_udp.endPacket(); | ||
return true; | ||
} | ||
|
||
int RP2040ArduinoPlatform::readBytesMultiCast(uint8_t* buffer, uint16_t maxLen) | ||
{ | ||
int len = _udp.parsePacket(); | ||
if (len == 0) | ||
return 0; | ||
|
||
if (len > maxLen) | ||
{ | ||
print("udp buffer to small. was "); | ||
print(maxLen); | ||
print(", needed "); | ||
println(len); | ||
fatalError(); | ||
} | ||
|
||
_udp.read(buffer, len); | ||
#ifdef KNX_LOG_IP | ||
print("Remote IP: "); | ||
print(_udp.remoteIP().toString().c_str()); | ||
|
||
printHex("-> ", buffer, len); | ||
#endif | ||
return len; | ||
} | ||
|
||
// unicast | ||
bool RP2040ArduinoPlatform::sendBytesUniCast(uint32_t addr, uint16_t port, uint8_t* buffer, uint16_t len) | ||
{ | ||
IPAddress ucastaddr(htonl(addr)); | ||
|
||
#ifdef KNX_LOG_IP | ||
print("sendBytesUniCast to:"); | ||
println(ucastaddr.toString().c_str()); | ||
#endif | ||
|
||
#ifdef KNX_IP_GENERIC | ||
if(!_unicast_socket_setup) | ||
_unicast_socket_setup = UDP_UNICAST.begin(3671); | ||
#endif | ||
|
||
if (UDP_UNICAST.beginPacket(ucastaddr, port) == 1) | ||
{ | ||
UDP_UNICAST.write(buffer, len); | ||
if (UDP_UNICAST.endPacket() == 0) | ||
println("sendBytesUniCast endPacket fail"); | ||
} | ||
else | ||
println("sendBytesUniCast beginPacket fail"); | ||
|
||
return true; | ||
} | ||
#endif | ||
|
||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we not clutter the code with different LOG_THIS, LOG_THAT, LOG_SOMETHING_ELSE? If I remember correctly DEBUG should already be used in the code. If there is more granular logic needed. There could be more levels like INFO, WARN, ERR or something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the logging in the stack is very basic and has no levels. Its pain in the ass to debug specific stuff when you first have to comment in 100 lines.
That was the obvious, non breaking solution.
We (@traxanos and me) plan to rework this, with log levels AND specific settings that allow you to log only what you need.