Browse Source
Merge pull request #313 from UweBonnes/stm32f3_ccm
stm32f1.c: Add missing fall through statement needed by GCC7.
pull/314/head
Gareth McMullin
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/target/stm32f1.c
|
|
@ -140,6 +140,7 @@ bool stm32f1_probe(target *t) |
|
|
|
case 0x422: /* STM32F30x */ |
|
|
|
case 0x446: /* STM32F303xD/E and STM32F398xE */ |
|
|
|
target_add_ram(t, 0x10000000, 0x4000); |
|
|
|
/* fall through */ |
|
|
|
case 0x432: /* STM32F37x */ |
|
|
|
case 0x439: /* STM32F302C8 */ |
|
|
|
t->driver = "STM32F3"; |
|
|
|