refactored handling of settings '$' command out of gcode module and into settings module

This commit is contained in:
Simen Svale Skogsrud
2011-02-18 22:59:16 +01:00
parent 6893463e80
commit 9876e14f0b
9 changed files with 93 additions and 68 deletions

18
nuts_bolts.c Normal file
View File

@ -0,0 +1,18 @@
#include "nuts_bolts.h"
#include <stdint.h>
#include <stdlib.h>
int read_double(char *line, uint8_t *char_counter, double *double_ptr)
{
char *start = line + *char_counter;
char *end;
*double_ptr = strtod(start, &end);
if(end == start) {
return(0);
};
*char_counter = end - line;
return(1);
}