An understanding of enc28j60 format Filtering

Source: Internet
Author: User

// Do bank 1 stuff, packet filter:
// For broadcast packets we allow only ARP packtets
// All other packets shocould be unicast only for our Mac (maadr)
//
// The pattern to match on is therefore
// Type eth. dst
// ARP Broadcast
// 06 08 -- FF-> IP checksum for theses bytes = f7f9
// 0x0806: Address Resolution Protocol (ARP: Address Resolution Protocol)

// [06 08 FF] TCP/IP checksum = f9f7
// In binary these poitions are: 11 0000 0011 1111
// This is hex 303f-> epmm0 = 0x3f, epmm1 = 0x30

Enc28j60write (erxfcon, erxfcon_ucen | erxfcon_crcen | erxfcon_pmen );
Enc28j60write (epmm0, 0x3f); // format match: Target MAC address (the last six bytes) + source MAC address (the first two bytes)
Enc28j60write (epmm1, 0x30); // format match: source MAC address (the last four bytes) + ARP format (the first two bytes) + reserved (the other two bytes)
Enc28j60write (epmcsl, 0xf9 );
Enc28j60write (epmcsh, 0xf7 );
Enc28j60write (macon1, macon1_marxen | macon1_txpaus | macon1_rxpaus );
// Bring Mac out of Reset
Enc28j60write (macon2, 0x00 );

An understanding of enc28j60 format Filtering

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.