選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

16 行
224 B

  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