Home
last modified time | relevance | path

Searched refs:GPIO_Pin (Results 1 – 6 of 6) sorted by relevance

/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Src/
Dstm32l1xx_hal_gpio.c320 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin) in HAL_GPIO_DeInit() argument
328 assert_param(IS_GPIO_PIN(GPIO_Pin)); in HAL_GPIO_DeInit()
331 while ((GPIO_Pin >> position) != 0) in HAL_GPIO_DeInit()
334 iocurrent = (GPIO_Pin) & (1U << position); in HAL_GPIO_DeInit()
401 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) in HAL_GPIO_ReadPin() argument
406 assert_param(IS_GPIO_PIN(GPIO_Pin)); in HAL_GPIO_ReadPin()
408 if ((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET) in HAL_GPIO_ReadPin()
433 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) in HAL_GPIO_WritePin() argument
436 assert_param(IS_GPIO_PIN(GPIO_Pin)); in HAL_GPIO_WritePin()
441 GPIOx->BSRR = (uint32_t)GPIO_Pin; in HAL_GPIO_WritePin()
[all …]
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_hal_gpio.c306 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin) in HAL_GPIO_DeInit() argument
313 assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); in HAL_GPIO_DeInit()
316 while ((GPIO_Pin >> position) != 0) in HAL_GPIO_DeInit()
319 iocurrent = (GPIO_Pin) & (1U << position); in HAL_GPIO_DeInit()
387 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) in HAL_GPIO_ReadPin() argument
392 assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); in HAL_GPIO_ReadPin()
394 if((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET) in HAL_GPIO_ReadPin()
423 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) in HAL_GPIO_WritePin() argument
426 assert_param(IS_GPIO_PIN_AVAILABLE(GPIOx,GPIO_Pin)); in HAL_GPIO_WritePin()
431 GPIOx->BSRR = GPIO_Pin; in HAL_GPIO_WritePin()
[all …]
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_gpio.c327 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin) in HAL_GPIO_DeInit() argument
335 assert_param(IS_GPIO_PIN(GPIO_Pin)); in HAL_GPIO_DeInit()
338 while ((GPIO_Pin >> position) != 0x00u) in HAL_GPIO_DeInit()
341 iocurrent = (GPIO_Pin) & (1uL << position); in HAL_GPIO_DeInit()
413 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) in HAL_GPIO_ReadPin() argument
418 assert_param(IS_GPIO_PIN(GPIO_Pin)); in HAL_GPIO_ReadPin()
420 if ((GPIOx->IDR & GPIO_Pin) != 0x00u) in HAL_GPIO_ReadPin()
447 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) in HAL_GPIO_WritePin() argument
450 assert_param(IS_GPIO_PIN(GPIO_Pin)); in HAL_GPIO_WritePin()
455 GPIOx->BSRR = (uint32_t)GPIO_Pin; in HAL_GPIO_WritePin()
[all …]
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_gpio.h276 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin);
287 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
288 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState);
289 void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
290 HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
291 void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin);
292 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin);
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Inc/
Dstm32l1xx_hal_gpio.h294 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin);
306 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
307 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState);
308 void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
309 HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
310 void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin);
311 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin);
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/
Dstm32l0xx_hal_gpio.h293 void HAL_GPIO_DeInit(GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin);
302 GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
303 void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState);
304 void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
305 HAL_StatusTypeDef HAL_GPIO_LockPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
306 void HAL_GPIO_EXTI_IRQHandler(uint16_t GPIO_Pin);
307 void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin);