Added runtime configurable global settings with eeprom persitence

This commit is contained in:
Simen Svale Skogsrud
2010-03-07 20:29:18 +01:00
parent a6b8d73044
commit b8ba8a4231
13 changed files with 350 additions and 48 deletions

2
main.c
View File

@ -33,12 +33,12 @@
int main(void)
{
beginSerial(BAUD_RATE);
config_init();
st_init(); // initialize the stepper subsystem
mc_init(); // initialize motion control subsystem
spindle_init(); // initialize spindle controller
gc_init(); // initialize gcode-parser
sp_init(); // initialize the serial protocol
// sd_raw_init());
DDRD |= (1<<3)|(1<<4)|(1<<5);