We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f239cc commit 694f274Copy full SHA for 694f274
libraries/GNSS/src/GNSS.cpp
@@ -634,6 +634,17 @@ void GNSSClass::uartEnd()
634
635
_enabled = false;
636
}
637
+
638
+ if (_pins.pps != STM32L0_GPIO_PIN_NONE)
639
+ {
640
+ stm32l0_exti_detach(_pins.pps);
641
+ stm32l0_gpio_pin_configure(_pins.pps, (STM32L0_GPIO_PARK_NONE | STM32L0_GPIO_MODE_ANALOG));
642
+ }
643
644
+ if (_pins.enable != STM32L0_GPIO_PIN_NONE)
645
646
+ stm32l0_gpio_pin_configure(_pins.enable, (STM32L0_GPIO_PARK_NONE | STM32L0_GPIO_MODE_ANALOG));
647
648
649
if (_pins.backup != STM32L0_GPIO_PIN_NONE)
650
{
0 commit comments