BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
cc0f06d
Branches
Tags
master
mips_sys
fw
config.h
implementation of ethernet and ARP (not completely working yet, hangs on received ARP request)
Stefan Schuermans
commited
cc0f06d
at 2012-03-17 01:03:19
config.h
Blame
History
Raw
#ifndef CONFIG_H #define CONFIG_H // MAC address struct config_mac { unsigned char mac[6]; }; extern struct config_mac config_mac; // IP configuration struct config_ip { unsigned char ip[4]; ///< own IP address unsigned char mask[4]; //</ subnet mask unsigned char gw[4]; ///< dateway IP address }; extern struct config_ip config_ip; #endif // #ifndef CONFIG_H