25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

16 satır
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