Compression on/off compile option.
This commit is contained in:
parent
864c5d7dc4
commit
7cad1d771e
|
@ -96,7 +96,7 @@ int main(void)
|
||||||
|
|
||||||
// If there was actually some data waiting for us
|
// If there was actually some data waiting for us
|
||||||
// there, let's se what it tastes like :)
|
// there, let's se what it tastes like :)
|
||||||
if (ser_available(&ser)) {
|
if (!sertx && ser_available(&ser)) {
|
||||||
// We then read a byte from the serial port.
|
// We then read a byte from the serial port.
|
||||||
// Notice that we use "_nowait" since we can't
|
// Notice that we use "_nowait" since we can't
|
||||||
// have this blocking execution until a byte
|
// have this blocking execution until a byte
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#define VERS_BUILD 1598
|
#define VERS_BUILD 1599
|
||||||
#define VERS_HOST "shard"
|
#define VERS_HOST "shard"
|
||||||
|
|
Loading…
Reference in New Issue