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

View File

@ -3,10 +3,10 @@ The general structure of Grbl
The main processing stack:
'serial_protocol' : Accepts command lines from the serial port and passes them to 'gcode' for execution.
'protocol' : Accepts command lines from the serial port and passes them to 'gcode' for execution.
Provides status responses for each command.
'gcode' : Recieves gcode from 'serial_protocol', parses it according to the current state
'gcode' : Recieves gcode from 'protocol', parses it according to the current state
of the parser and issues commands via '..._control' modules
'spindle_control' : Commands for controlling the spindle.