renamed protocol methods to reflect the new module name
This commit is contained in:
parent
85f62111b5
commit
6893463e80
4 changed files with 8 additions and 8 deletions
|
|
@ -51,14 +51,14 @@ void status_message(int status_code) {
|
|||
}
|
||||
}
|
||||
|
||||
void sp_init()
|
||||
void protocol_init()
|
||||
{
|
||||
beginSerial(BAUD_RATE);
|
||||
printPgmString(PSTR("\r\nGrbl " GRBL_VERSION));
|
||||
printPgmString(PSTR("\r\n"));
|
||||
}
|
||||
|
||||
void sp_process()
|
||||
void protocol_process()
|
||||
{
|
||||
char c;
|
||||
while((c = serialRead()) != -1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue