You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fails to compile if COMPILE_BT is not defined. Error message is 'bluetoothSerial' was not declared in this scope.
Function pinBluetoothTask does not have the #ifdef/#endif block defined for COMPILE_BT so it is trying to load things that have been excluded.
Wrapping the function content with the appropriate #ifdef COMPILE_BT block corrects the issue.
Steps to reproduce
Comment out COMPILE_BT in RTK_Surveyor.ino
The text was updated successfully, but these errors were encountered:
Subject of the issue
Fails to compile if COMPILE_BT is not defined. Error message is 'bluetoothSerial' was not declared in this scope.
Function pinBluetoothTask does not have the #ifdef/#endif block defined for COMPILE_BT so it is trying to load things that have been excluded.
Wrapping the function content with the appropriate #ifdef COMPILE_BT block corrects the issue.
Steps to reproduce
Comment out COMPILE_BT in RTK_Surveyor.ino
The text was updated successfully, but these errors were encountered: