Electronic – Has anybody used STM32F417IG microcontroller with 1.8V input supply

stm32

https://www.st.com/resource/en/datasheet/dm00035129.pdf

Currently, I am using STM32F417IG with a 3.3V supply. If I want to use a microcontroller with a 1.8V supply to avoid level translators in the new design. Is there anything I should consider if I change the supply voltage to 1.8V from 3.3V?

If anybody has used stm32 with 1.8V as an input supply. Please help me with this.

Thank you

Best Answer

You should read the datasheet carefully, and consider all elements in your system. Programming flash requires 2.7V min. Some of the analog-ish functions may not work as well or at all. Operation at a restricted temperature range allows a bit more voltage margin on the low side.

The core works off an internal regulator that is something like 1.2 so it is not affected.

But everything you connect to the I/O will need to work with 1.8V or have a voltage translator. Driving a blue or white LED directly becomes an issue. Not many MOSFETs are characterized for 1.8V drive. GPIO output drive current is not guaranteed for Vdd < 2.7V. Maximum IO frequency such as SPI is reduced. You want guarantees at 1.7V or so to allow some tolerance on 1.8V. USB ... I don't think that part has a Vddusb pin (which would need 2.7V).

The 12-bit ADC (and other aspects of analog functions):

  1. VDD/VDDA minimum value of 1.7 V is obtained when the device operates in reduced temperature range, and with the use of an external power supply supervisor (refer to Section : Internal reset OFF).

If it's only guaranteed to work at 1.8V and your 1.8V nominal regulator happens to output 1.75V then functionality is not guaranteed for some parts of the chip, so the reduced temperature range is probably a must if you're using those functions.

None of these things are necessarily show-stoppers, just a fair bit of due diligence is necessary, and only you can do that.