On a STM8S, using the config files, on one hand I have (stm8s.h file)
typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus, BitStatus, BitAction;
and, in one of my functions (fonctions.c file), I have
BitStatus minutes = RESET;
Yet, when I run the code in Debug mode and watch minutes, it shows me the value "3" at this point (where it should show RESET or at least "0". I don't understand why, and since I use this value for a test later I can't guarantee the result.
This happens for every other types defined there, with the exception of one flag which is a global variable. I've tried declaring the variable as static, changing the place of .h inclusion, didn't seem to work and I have no idea what to do to correct the problem.