From 55a6a38469ce5746186f3b1447bf76304af67afa Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Sun, 14 Aug 2022 19:06:23 -0700 Subject: [PATCH] [target][qemu-m4] tweak a line after stm32f4xx library changed a definition. --- target/qemu-m4/m4display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/qemu-m4/m4display.c b/target/qemu-m4/m4display.c index 2366b2bf..ab0b7e6b 100644 --- a/target/qemu-m4/m4display.c +++ b/target/qemu-m4/m4display.c @@ -89,7 +89,7 @@ static void setup_pins(void) { GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP; GPIO_Init(GPIOG, &GPIO_InitStruct); - GPIOE->BSRRL |= GPIO_Pin_7; // set PE7 high + GPIOE->BSRR |= GPIO_Pin_7; // set PE7 high // Setup display CS Pin gpio_config(GPIO(GPIO_PORT_G, 8), GPIO_OUTPUT);