Browse Source

stm32f0: Fix offset for GPIO_BRR

Correct as per RM0091rev5
pull/540/merge
Devan Lai 9 years ago
committed by Karl Palsson
parent
commit
5270c11a09
  1. 2
      include/libopencm3/stm32/f0/gpio.h

2
include/libopencm3/stm32/f0/gpio.h

@ -41,7 +41,7 @@
/* Register definitions */
/*****************************************************************************/
#define GPIO_BRR(port) MMIO32(port + 0x24)
#define GPIO_BRR(port) MMIO32(port + 0x28)
#define GPIOA_BRR GPIO_BRR(GPIOA)
#define GPIOB_BRR GPIO_BRR(GPIOB)
#define GPIOC_BRR GPIO_BRR(GPIOC)

Loading…
Cancel
Save