split_flags.h 221 B

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