BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
902aa40
Branches
Tags
master
mips_sys
fw
config.h
replace email address in headers with blinkenarea address
Stefan Schuermans
commited
902aa40
at 2012-05-21 17:42:50
config.h
Blame
History
Raw
/* MIPS I system * Copyright 2011-2012 Stefan Schuermans <stefan@blinkenarea.org> * Copyleft GNU public license V2 or later * http://www.gnu.org/copyleft/gpl.html */ #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