From 61e68db902f656cf5266863f2927c687360d03a5 Mon Sep 17 00:00:00 2001 From: MarcoIeni Date: Sun, 29 Mar 2020 20:06:10 +0200 Subject: [PATCH] fix fpu double interrupt for new devices As detailed in issue #352, a lot of microcontrollers svd have a duplicated FPU interrupt entry. This problem has already been fixed for all the existing microcontrollers. This commit apply this fix to all the new microcontrollers that need it. --- devices/stm32l4r5.yaml | 4 ++++ devices/stm32l4r7.yaml | 4 ++++ devices/stm32l4r9.yaml | 4 ++++ devices/stm32l4s5.yaml | 4 ++++ devices/stm32l4s7.yaml | 4 ++++ devices/stm32l4s9.yaml | 4 ++++ 6 files changed, 24 insertions(+) create mode 100644 devices/stm32l4r5.yaml create mode 100644 devices/stm32l4r7.yaml create mode 100644 devices/stm32l4r9.yaml create mode 100644 devices/stm32l4s5.yaml create mode 100644 devices/stm32l4s7.yaml create mode 100644 devices/stm32l4s9.yaml diff --git a/devices/stm32l4r5.yaml b/devices/stm32l4r5.yaml new file mode 100644 index 000000000..6249f281f --- /dev/null +++ b/devices/stm32l4r5.yaml @@ -0,0 +1,4 @@ +_svd: ../svd/stm32l4r5.svd + +_include: + - common_patches/fpu_interrupt.yaml diff --git a/devices/stm32l4r7.yaml b/devices/stm32l4r7.yaml new file mode 100644 index 000000000..6e336198f --- /dev/null +++ b/devices/stm32l4r7.yaml @@ -0,0 +1,4 @@ +_svd: ../svd/stm32l4r7.svd + +_include: + - common_patches/fpu_interrupt.yaml diff --git a/devices/stm32l4r9.yaml b/devices/stm32l4r9.yaml new file mode 100644 index 000000000..e34fa9288 --- /dev/null +++ b/devices/stm32l4r9.yaml @@ -0,0 +1,4 @@ +_svd: ../svd/stm32l4r9.svd + +_include: + - common_patches/fpu_interrupt.yaml diff --git a/devices/stm32l4s5.yaml b/devices/stm32l4s5.yaml new file mode 100644 index 000000000..d9939c72b --- /dev/null +++ b/devices/stm32l4s5.yaml @@ -0,0 +1,4 @@ +_svd: ../svd/stm32l4s5.svd + +_include: + - common_patches/fpu_interrupt.yaml diff --git a/devices/stm32l4s7.yaml b/devices/stm32l4s7.yaml new file mode 100644 index 000000000..dc252d5f0 --- /dev/null +++ b/devices/stm32l4s7.yaml @@ -0,0 +1,4 @@ +_svd: ../svd/stm32l4s7.svd + +_include: + - common_patches/fpu_interrupt.yaml diff --git a/devices/stm32l4s9.yaml b/devices/stm32l4s9.yaml new file mode 100644 index 000000000..257639e4b --- /dev/null +++ b/devices/stm32l4s9.yaml @@ -0,0 +1,4 @@ +_svd: ../svd/stm32l4s9.svd + +_include: + - common_patches/fpu_interrupt.yaml