UIPEthernet: A plugin-replacement of the stock Arduino Ethernet library for ENC28J60 shields and breakout boards. Full support for persistent (streaming) TCP-connections and UDP (Client and Server each), ARP, ICMP, DHCP and DNS. Build around Adam Dunkels uIP Stack. Further developed version can be found on https://github.com/UIPEthernet/UIPEthernet
489
stars
212
forks
source link
Seg fault in another library when EthernetClient is initialised #151
I am getting a very mysterious error, while using a different library (AESlib.h), I was getting a seg fault when using one particular function (aes_cbc_enc). At first I thought it may be an error in that library, but I discovered that the error disappears when I comment out the line EthernetClient client, or even if I use the built in Arduino Ethernet.h.
Obviously I can't be sure which library is causing the error. In fact, I'm not even certain how to properly debug this library or further probe the cause of this error. Any help/advice would be appreciated.
I am getting a very mysterious error, while using a different library (AESlib.h), I was getting a seg fault when using one particular function (aes_cbc_enc). At first I thought it may be an error in that library, but I discovered that the error disappears when I comment out the line
EthernetClient client
, or even if I use the built in Arduino Ethernet.h.Obviously I can't be sure which library is causing the error. In fact, I'm not even certain how to properly debug this library or further probe the cause of this error. Any help/advice would be appreciated.
Running on a mega and using the 1.09ext version of the library