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.

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