您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1年前
1年前
1年前
1年前
123456789101112131415
  1. #include <stdint.h>
  2. #define UNUSED(x) (void)(x)
  3. #ifndef HAL_H
  4. #define HAL_H
  5. enum clock_mode {
  6. CLOCK_FAST,
  7. CLOCK_BENCHMARK
  8. };
  9. void hal_setup(const enum clock_mode clock);
  10. void hal_send_str(const char* in);
  11. #endif