2021-07-07 12:06 AM
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
Solved! Go to Solution.
2021-10-20 05:11 AM
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
2021-08-03 04:10 AM
Hello @Community member ,
Did you define your own boolean type or did you use:
#include <stdbool.h>
2021-08-23 11:06 PM
Hi! I included stdbool.h as you wrote.
2021-10-20 05:04 AM
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.
2021-10-20 05:11 AM
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