Skip to content
Snippets Groups Projects
Commit 7a8a1693 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Added version check functionality.

parent df601313
No related merge requests found
......@@ -99,6 +99,11 @@ int8_t command_handler(char command){
free(step_seconds);
break;
case 'V': //check version
printf("V%u.%u\n", BOARD_VER_MAJOR, BOARD_VER_MINOR);
break;
default:
printf("#ERR: Command %c not recognized\n\r", command);
return 1;
......
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment