application: add dev_id for STM32F4xx in version action

This commit is contained in:
King Kévin 2020-03-17 09:32:29 +01:00
parent 25c0ae0271
commit 87f8e3a157
1 changed files with 8 additions and 1 deletions

View File

@ -232,13 +232,20 @@ static void command_version(void* argument)
case 0x442:
puts("STM32F09x");
break;
// from RM0444
// from RM0444 STM32G0x1
case 0x460:
puts("STM32G071xx/STM32G081xx");
break;
case 0x466:
puts("STM32G031xx/STM32G041xx");
break;
// from RM0090 STM32F4x5/STM32F4x7
case 0x413:
puts("STM32F405/STM32F407/STM32F415/STM32F417");
break;
case 0x419:
puts("STM32F42x/STM32F43x");
break;
default:
puts("unknown");
fake = true;