cancel
Showing results for 
Search instead for 
Did you mean: 

CubeMonitor still not seeing boolean values

MFran.4
Senior

Hello!

I already seen the post where it says that version 1.1.0 solves this problem. I'm using version 1.2.0 and booleans still not appear. Converting them to uint8_t obviously works but I read that this thing was fixed so maybe I'm missing something.

Thank you all!

Mirco

1 ACCEPTED SOLUTION

Accepted Solutions

Just saw that, in stdbool.h, as I'm doing a project in C++, the stdbool's "true" and "false" are greyed out. Instead I get this:

/* Supporting _Bool in C++ is a GCC extension. */

#define _Bool   bool

View solution in original post

4 REPLIES 4
Richard.Chvr
ST Employee

Hello @Community member​ ,

Did you define your own boolean type or did you use:

#include <stdbool.h>

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

Hi! I included stdbool.h as you wrote.

MFran.4
Senior

Hi! Any hints? I've changed project (so it's another flow) and I can't still see booleans. Still using CubeMonitor 1.2.0.

Just saw that, in stdbool.h, as I'm doing a project in C++, the stdbool's "true" and "false" are greyed out. Instead I get this:

/* Supporting _Bool in C++ is a GCC extension. */

#define _Bool   bool