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 int8u 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__