BlinkenArea - GitList
Repositories
Blog
Wiki
flaneth
Code
Commits
Branches
Tags
Search
Tree:
e8658d5
Branches
Tags
master
flaneth
firmware.dartboard
config.c
initial commit after making CF identify work
Stefan Schuermans
commited
e8658d5
at 2012-04-15 19:57:57
config.c
Blame
History
Raw
/* flaneth - flash and ethernet - dartboard mod * version 0.1 date 2008-11-09 * Copyright (C) 2007-2008 Stefan Schuermans <stefan@schuermans.info> * Copyleft: GNU public license V2 - http://www.gnu.org/copyleft/gpl.html * a BlinkenArea project - http://www.blinkenarea.org/ */ #include "config.h" // MAC address unsigned char ConfigMac[6] = { 0x02, 0xF7, 0xA4, 0xE7, 0x8D, 0xB3 }; // (extern) // IP configuration // - all zero for DHCP unsigned char ConfigIp[4] = { 0, 0, 0, 0 }; // own IP address (extern) unsigned char ConfigMask[4] = { 0, 0, 0, 0 }; // subnet mask (extern) unsigned char ConfigGw[4] = { 0, 0, 0, 0 }; // gateway IP address (extern) // port for S8P unsigned short ConfigS8pPort = 8; // disabled if 0 (extern) // symmetric key for S8P unsigned char ConfigS8pKey[16] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; // (extern) // port for webserver unsigned short ConfigHttpPort = 80; // disabled if 0 (extern) // default output state unsigned char ConfigDefOut = 0x00; // (extern)