renamed protocol methods to reflect the new module name

This commit is contained in:
Simen Svale Skogsrud
2011-02-18 22:19:01 +01:00
parent 85f62111b5
commit 6893463e80
4 changed files with 8 additions and 8 deletions

4
main.c
View File

@ -37,7 +37,7 @@
int main(void)
{
sp_init();
protocol_init();
settings_init();
plan_init();
st_init();
@ -46,7 +46,7 @@ int main(void)
for(;;){
sleep_mode(); // Wait for it ...
sp_process(); // ... process the serial protocol
protocol_process(); // ... process the serial protocol
}
return 0; /* never reached */
}