1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef SPLIT_FLAGS_H #define SPLIT_FLAGS_H #include <stdbool.h> #include <stdint.h> /** * Global Flags **/ //RGB Stuff extern volatile bool RGB_DIRTY; //Backlight Stuff extern volatile bool BACKLIT_DIRTY; #endif