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

Breaks with Teensy 4.1 Native Ethernet #60

Closed
isocorDev opened this issue Nov 2, 2021 · 3 comments
Closed

Breaks with Teensy 4.1 Native Ethernet #60

isocorDev opened this issue Nov 2, 2021 · 3 comments

Comments

@isocorDev
Copy link

I was unable to compile until I overwrote the artnet.h calls to load Ethernet.h and EthernetUDP.h to NativeEthernet.h and NativeEthernetUDP.h

#include <NativeEthernet.h> #include <NativeEthernetUdp.h>

Perhaps including a #elif defined(TEENSY41) would solve the issue.

@natcl
Copy link
Owner

natcl commented Nov 3, 2021

Thanks, will have a look !

@isocorDev
Copy link
Author

You are most welcome, and really, thank you for the awesome library. I added this code and it is working great.
#elif defined(ARDUINO_TEENSY41) #include <NativeEthernet.h> #include <NativeEthernetUdp.h>

@natcl
Copy link
Owner

natcl commented Nov 3, 2021

Fixed. Thanks again !

@natcl natcl closed this as completed Nov 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants