Bug? bit.get function

whcir

Member
Licensed User
Longtime User
Using the bit.get function I receive this error. I tested the bit.set function and had no issues. used the sample code in the help file. am I doing something wrong?

In file included from sketch\B4RDefines.h:19:0,
from sketch\b4r_main.cpp:1:
sketch\b4r_main.cpp: In static member function 'static void b4r_main::_appstart()':
rCore.h:239: error: 'bitGet' was not declared in this scope
#define /*Byte Get(Byte B, Byte Bit);*/ BitClass_Get(B,Bit) bitGet(B,Bit)
^
sketch\b4r_main.cpp:18:6: note: in expansion of macro 'BitClass_Get'
_b = BitClass_Get(_b,(Byte) (0));
^
exit status 1
'bitGet' was not declared in this scope
 
Top