From 6e3877238ca93cfe3874c6e76ee4134a4715fe88 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Mon, 22 Nov 2021 13:27:04 +0100 Subject: [PATCH] Add overrides for missing GPIO blocks for STM32L432 --- stm32data/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stm32data/__main__.py b/stm32data/__main__.py index 7c7a879..b25eeed 100755 --- a/stm32data/__main__.py +++ b/stm32data/__main__.py @@ -254,6 +254,10 @@ address_overrides = { 'STM32F412VG:GPIOG_BASE': 0x40021800, 'STM32L151CB-A:GPIOF_BASE': 0x40021800, 'STM32L151CB-A:GPIOG_BASE': 0x40021C00, + 'STM32L432KB:GPIOD_BASE': 0x48000C00, + 'STM32L432KB:GPIOE_BASE': 0x48001000, + 'STM32L432KB:GPIOF_BASE': 0x48001400, + 'STM32L432KB:GPIOG_BASE': 0x48001800, }