Are STM32L0 FT pins 5V tolerant in Analog mode when no Analog peripheral is enabled?
Many ST documents says that FT pins are 5V tolerant only in (Digital) Input mode. They are not 5V tolerant when configured in Analog mode and analog peripheral like ADC or OPAMP is connected to it. But are they 5V (or more precisely Vdda + 3.6V tolerant) when configured in Analog mode, but no peripheral is connected to it?
In AN4899, there are many indications that they are, but I did not find it explicitely speficied anywhere. Some paragraphs indicating are:




Background:
My idea is using STM32L053 powered by 2.0V and I need to measure analog voltage which ranges from 0 - 2.25V when MCU is not powered (VDD=0.0V) and between 2.0 - 5.4V when MCU is powered (VDD=2.0V). For lowering voltage I will use voltage divider which divides voltage by approximately 3. But this voltage divider cause power consumption which is unacceptable in my design. For lowering power consumption as much as possible I need to cut off it for most time. I want to connect it similarly to Figure 14 from AN4899, but instead of using internall pull down I will use externall and it will not be pull-down but rather "pull-open-drain-down". My idea is following:

When ADC will be in progress, FT GPIO2 will be held low and will act as ground. Current will flow from high-voltage source through R1 and R2 to FT GPIO2. Voltage on FT GPIO1 will be reduced by voltage divider to safe level and will be measured by ADC.
When ADC will not be in progress, both FT GPIO1 and 2 will be in Analog mode (High impedance with Schmidt trigger disabled) and ADC will be disconnected from ADC (channel will be disabled). Becase both pins are Hi-Z, current can't flow through them and voltage divider will not cause power consumption anymore. But resistors will not drop voltage and both pins FT GPIO1 and 2 will be exposed to high voltage. Here my question come in: Are FT pins 5V tolerant in this situation? Pins are in Analog mode with deteched all analog peripherals, but not in Input mode. I can't use Input mode because it remains Schmidt trigger enabled which will cause additional power consumption when analog voltage will be at the transition of 0/1 logic level.
Of course I will need to correctly manage transitions between states and manage to change GPIO modes and attach/detach ADC in right order.
