stm32f103
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
util.h
Go to the documentation of this file.
1 #ifndef STM32F103_CORE_UTIL_H_
2 #define STM32F103_CORE_UTIL_H_
3 
4 #include <cstdint>
5 #include <utility>
6 #include <stm32f10x_gpio.h>
7 
16 using Pin = std::pair<GPIO_TypeDef*, uint16_t>;
17 
18 #endif // STM32F103_CORE_UTIL_H_
std::pair< GPIO_TypeDef *, uint16_t > Pin
Type definition for a single pin.
Definition: util.h:16