Im using your Clang Intellisense with my STM32F411RE microcontroller in an C++11 environment with the newest version VisualGDB 5.4 Beta 1.
I have a class and in this class a struct.
class BM280
{
public:
struct BM280_Options
{
void Reset();
void Enable3WireSPI();
void Disable3WireSPI();
void SetStandbyTime(uint8_t standbytime);
void SetTimeConstant_IIRFilter(uint8_t timeconstant);
};
};
In my .cpp file Im defining my functions which are inside of the struct for example: Enable3WireSPI()
void BM280::BM280_Options::Enable3WireSPI()
{
}
Now the bug:
If I now write void BM280::BM280_Options::
the auto complete is only giving me one option: BM280_Options
Instead of Reset or Disable3WireSPI or SetStandbyTime etc.
I only can assume this is a bug
-
This topic was modified 5 years, 11 months ago by support. Reason: formatting