Rui Monteiro

Results 8 comments of Rui Monteiro

Hi, so I have to use the make file to compile this library. I wonder if that is possible in Windows OS and how to use it with my code,...

Ok, I get it, in either case I always need a form of make (cmake). Then, maybe I can use the outputted binaries as third part libraries and then I...

By limitations does that means that contrary to the [EtherCard](https://github.com/njh/EtherCard) the EthernetENC doesn't capture UDP packages?

So, that means I should use the [UIPEthernet](https://docs.arduino.cc/libraries/uipethernet/) library instead, like this: ``` #include #include // If using UDP ```

Yes, it has, the Devices start to interact by broadcasting messages and only then they switch to Unicast once responding to them. It uses JSON as encoded communication with checksum...

Can you write a concrete example where that is done in a `.ino` sketch? Thanks.

It's a defined bit to use in a bitwise operation accordingly to [these bit definitions](https://github.com/Networking-for-Arduino/EthernetENC/blob/19664f609b9b864bd772b048f992afff4f75c214/src/utility/enc28j60.h) for each one best guess: ``` // ENC28J60 ERXFCON Register Bit Definitions #define ERXFCON_UCEN 0x80...

Ok, I found it in the datasheet: ``` UCEN: Unicast Filter Enable bit CRCEN: Post-Filter CRC Check Enable bit PMEN: Pattern Match Filter Enable bit MPEN: Magic Packet Filter Enable...