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

21 行
279B

  1. #ifndef WiringPrivate_h
  2. #define WiringPrivate_h
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5. #include "wiring.h"
  6. #ifndef cbi
  7. #define cbi(sfr, bit) ((sfr) &= ~_BV(bit))
  8. #endif
  9. #ifndef sbi
  10. #define sbi(sfr, bit) ((sfr) |= _BV(bit))
  11. #endif
  12. typedef void (*voidFuncPtr)(void);
  13. #endif