Is the STM32F427VIT6 supported #1455
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @natyshemer , Some pins/alternate functions are available on STM32F427ZG, but not present on STM32F427VIT6. Alternatively: |
Beta Was this translation helpful? Give feedback.
Hi @natyshemer ,
You may face issue with pinout which are different for both MCU mentioned. You can see the difference by comparing their respective PeripheralPins.c:
https://github.com/stm32duino/Arduino_Core_STM32/blob/master/variants/STM32F4xx/F427V(G-I)T_F429V(E-G-I)T_F437V(G-I)T_F439V(G-I)T/PeripheralPins.c
https://github.com/stm32duino/Arduino_Core_STM32/blob/master/variants/STM32F4xx/F427Z(G-I)T_F429ZET_F429Z(G-I)(T-Y)_F437Z(G-I)T_F439Z(G-I)(T-Y)/PeripheralPins.c
Some pins/alternate functions are available on STM32F427ZG, but not present on STM32F427VIT6.
And as you said there is also Flash which is double size on STM32F427VIT6 compare to STM32F427ZG.
So that should work to if you …