BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
c2b0401
Branches
Tags
master
mips_sys
fw
config.h
added file headers
Stefan Schuermans
commited
c2b0401
at 2012-04-08 11:54:40
config.h
Blame
History
Raw
/* MIPS I system * Copyright 2011-2012 Stefan Schuermans <stefan@schuermans.info> * 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