diff options
-rwxr-xr-x | main.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -47,9 +47,6 @@ extern unsigned int temperature_lsb; extern int temperature_msb;
unsigned char temp_sign;
-// Declare variables for splitting decimal digit to character
-unsigned char temp_0;
-
// Define MSB / LSB
#define LSB(x) ((x % 10) + '0') // x >> 4
#define MSB(x) ((x / 10) + '0') // x & 0x0F
|