Removed redundant include file; formatting and comment fixes

This commit is contained in:
William Miceli
2021-05-14 15:09:10 -04:00
parent c7ae89cbfb
commit 1ce2fbc02b

View File

@@ -15,7 +15,6 @@
#include <msp430x54xa.h>
#include <stdio.h>
#include <stdlib.h>
#include <msp430x54xa.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
@@ -34,7 +33,7 @@ static inline void delay(void)
{
for (jj = 0; jj < 1000; jj++)
{
asm(" nop"); //The space is necessary or else the assember things nop is a label!
asm(" nop"); //The space is necessary or else the assembler thinks "nop" is a label!
}
}
}
@@ -373,6 +372,6 @@ static char *name_lookup[NAME_LOOKUP_ROWS] = {
// "MC1FAN", //MC_CAN_BASE1 + MC_FAN
// "MC1TP3", //MC_CAN_BASE1 + MC_TEMP3
// "MC2FAN", //MC_CAN_BASE2 + MC_FAN
//"MC2TP3", //MC_CAN_BASE2 + MC_TEMP3
// "MC2TP3", //MC_CAN_BASE2 + MC_TEMP3
#endif /* SUNSEEKER2021_H_ */