mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2024-07-02 14:34:13 +02:00
Re-enable bluetooth, but only if HAS_BLUETOOTH is defined
This commit is contained in:
parent
53daa12a01
commit
9ef3a0c4b1
@ -1305,10 +1305,10 @@ void buffer_serial() {
|
|||||||
if (!fifo_isfull_locked(&serialFIFO)) {
|
if (!fifo_isfull_locked(&serialFIFO)) {
|
||||||
fifo_push_locked(&serialFIFO, Serial.read());
|
fifo_push_locked(&serialFIFO, Serial.read());
|
||||||
}
|
}
|
||||||
#else
|
#elif HAS_BLUETOOTH
|
||||||
if (HAS_BLUETOOTH && bt_state == BT_STATE_CONNECTED) {
|
if (bt_state == BT_STATE_CONNECTED) {
|
||||||
if (!fifo_isfull(&serialFIFO)) {
|
if (!fifo_isfull(&serialFIFO)) {
|
||||||
//fifo_push(&serialFIFO, SerialBT.read());
|
fifo_push(&serialFIFO, SerialBT.read());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!fifo_isfull(&serialFIFO)) {
|
if (!fifo_isfull(&serialFIFO)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user