Firmware: whitespace

Change-Id: Ief519cd00a575e5001a85011f6d76fbcc8518151
This commit is contained in:
David Banks 2019-11-10 16:39:12 +00:00
parent cbab81263a
commit f841079548

View File

@ -486,14 +486,20 @@ uint8_t error_flag = 0;
********************************************************/
#if defined(COMMAND_HISTORY)
int8_t readCmd(char *cmd, int8_t reuse) {
uint8_t esc = 0;
int8_t
#else
void readCmd(char *cmd) {
void
#endif
readCmd(
char *cmd
#if defined(COMMAND_HISTORY)
, int8_t reuse
#endif
) {
char c;
int i = 0;
#if defined(COMMAND_HISTORY)
uint8_t esc = 0;
// Wipe out the last command
Serial_TxByte0(13);
Serial_TxByte0(27);