You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
200 B

  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. enum slice_flag{
  5. tjc_process,
  6. low_power,
  7. debug_light,
  8. };
  9. bool GetFlag(uint32_t slice_flag);
  10. void ClearFlag(uint32_t slice_flag);