// USART header #include #include #include // NVIC typedef struct{ char* command; short commandLength; }CommandString; void initUSART(void); void printChar(char c); char readChar(void); void runUSART(void);