Skip to content
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

Fix build error for missing variable if KNX_NETIF is not defined #270

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/rp2040_arduino_platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ class RP2040ArduinoPlatform : public ArduinoPlatform
#endif
protected: IPAddress mcastaddr;
protected: uint16_t _port;
#endif
protected: pin_size_t _rxPin = UART_PIN_NOT_DEFINED;
protected: pin_size_t _txPin = UART_PIN_NOT_DEFINED;
#endif
};

#endif
Loading