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

wiring_private.h 279B

1234567891011121314151617181920
  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