Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 702 Bytes

README.md

File metadata and controls

41 lines (34 loc) · 702 Bytes

function GPIO

目次

関数

GPIO

gpioRead
inline GPIO_PinState gpioRead(
    GPIO_TypeDef* GPIOx,
    uint16_t GPIO_Pin
) noexcept;

HAL_GPIO_ReadPin を実行します

gpioWrite
inline void gpioWrite(
    GPIO_TypeDef* GPIOx,
    uint16_t GPIO_Pin,
    GPIO_PinState PinState
) noexcept;

HAL_GPIO_WritePin を実行します

gpioToggle
inline void gpioToggle(
    GPIO_TypeDef* GPIOx,
    uint16_t GPIO_Pin
) noexcept;

HAL_GPIO_TogglePin を実行します

<< 戻る