Indentation mess cleanup
This commit is contained in:
parent
c7ff5cc5f1
commit
80459cbbd3
|
@ -159,7 +159,7 @@ DECLARE_ISR(ADC_vect) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// * "finally" is probably the wrong description here.
|
// (*) "finally" is probably the wrong description here.
|
||||||
// "All the f'ing time" is probably more accurate :)
|
// "All the f'ing time" is probably more accurate :)
|
||||||
// but it felt like it was a long way down here,
|
// but it felt like it was a long way down here,
|
||||||
// writing all the explanations. I think this is a
|
// writing all the explanations. I think this is a
|
||||||
|
|
|
@ -36,7 +36,7 @@ static uint8_t serialBuffer[MP1_MAX_DATA_SIZE]; // This is a buffer for incomin
|
||||||
static int sbyte; // For holding byte read from serial port
|
static int sbyte; // For holding byte read from serial port
|
||||||
static size_t serialLen = 0; // Counter for counting length of data from serial
|
static size_t serialLen = 0; // Counter for counting length of data from serial
|
||||||
static bool sertx = false; // Flag signifying whether it's time to send data
|
static bool sertx = false; // Flag signifying whether it's time to send data
|
||||||
// Received on the serial port.
|
// received on the serial port.
|
||||||
#define SER_BUFFER_FULL (serialLen < MP1_MAX_DATA_SIZE-1)
|
#define SER_BUFFER_FULL (serialLen < MP1_MAX_DATA_SIZE-1)
|
||||||
|
|
||||||
//////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#define VERS_BUILD 1756
|
#define VERS_BUILD 1758
|
||||||
#define VERS_HOST "shard"
|
#define VERS_HOST "shard"
|
||||||
|
|
Loading…
Reference in New Issue