EtherEncLib
EtherEncLib copied to clipboard
Ethernet ENC28J60 Library for Arduino
Nice work! Well done Renato Aloi ! I would like to ask if that library supports client connections ( ENC28J60 acts as web client, not as web server) Regards, Vassilis
Now that all RAM buffers were moved from Arduino's RAM to ENC28J60's RAM, so the last functionality missing is DHCP handshaking. Need to do work on that.
**Hi, i'm having a problem to send a response...** This code: ` //MANDA RESPOSTA DA REQUISICAO lib.print("HTTP/1.1 200 OK"); lib.print("Content-Type: application/json"); lib.print("Content-Length: "); ret = "{\"RESULT\": \"True\"}"; lib.print(ret.length()); lib.print("{\"RESULT\": \"True\"}");...
DEBUGLT
DEBUGLT is not defined in TcpStack.cpp. I think its typo and should be DEBUGLIB
// Reset the transmit logic problem. See Rev. B7 Silicon Errata issues 12 and 13 writeOp(ENC28J60_BIT_FIELD_SET, ECON1, ECON1_TXRST); writeOp(ENC28J60_BIT_FIELD_CLR, ECON1, ECON1_TXRST); writeOp(ENC28J60_BIT_FIELD_CLR, EIR, EIR_TXERIF | EIR_TXIF); // send the contents...
for newMods: 1. It's proposed to use DEBUGHTTP in TcpStack.h(cpp) files to facilitate tracking HTTP session's behaviour (from start to end) and distinguishing a debug messages from inner (hardware) events....