14 #ifndef STM32W108XX_MICRO_COMMON_H_
15 #define STM32W108XX_MICRO_COMMON_H_
17 #ifndef DOXYGEN_SHOULD_SKIP_THIS
18 #ifndef __STSTATUS_TYPE__
19 #define __STSTATUS_TYPE__
23 typedef uint8_t StStatus;
24 #endif //__STSTATUS_TYPE__
25 #endif // DOXYGEN_SHOULD_SKIP_THIS
27 #define PORTA (0 << 3)
28 #define PORTB (1 << 3)
29 #define PORTC (2 << 3)
36 #define PORTA_PIN(y) (PORTA|y)
42 #define PORTB_PIN(y) (PORTB|y)
48 #define PORTC_PIN(y) (PORTC|y)
55 #define PORTx_PIN(x, y) (x|y)
288 #endif //STM32W108XX_MICRO_COMMON_H_