aerospaceresearch/rotator-firmware

adding EasyCommII command processing

Opened this issue · 1 comments

if (chr == 10) { //Line feed received
interpreting_commands(input_line); //Process Easycomm commands
input_line = "";
} else if (chr == 13) { //Carriage return received
//interpreting_commands(input_line); //Process user commands
input_line = "";

adding EasyCommII command processing
https://www.qsl.net/dh1ngp/onlinehelpft100/Rotator_control_with_Easycomm.htm

I am a new comer. How can i solve this problem?