Robot Control Library
rc_model.c
/**
* @file rc_model.c
* @example rc_model
*
* Prints the current BealgleBoard model the software is running on
*
*
*
* @author James Strawson
* @date 2/23/2018
*/
#include <stdio.h>
#include <rc/model.h>
int main()
{
printf("\nCurrently running on a:\n");
printf("\n\nmodel category:\n");
printf("\n");
return 0;
}
void rc_model_print(void)
prints to the screen the human-readable version of the model name with no trailing newline character.
void rc_model_category_print(void)
prints to the screen the human-readable version of the category name with no trailing newline charact...