Hi,
With the PowerFeather not plugged to anything except 4.1V power supply with a LiPo battery plugged to the battery connector, and the following code:
extern "C" void app_main(void) {
PowerFeather::Board.init(1800);
for(;;) {
PowerFeather::Board.enable3V3(true);
delay(1000);
PowerFeather::Board.enable3V3(false);
delay(1000);
}
I observe a square signal on the 3V3 pin, 0V low and 3.3V high (which is normal).
However if I plug the 3V3 pin to VBAT, then the 3V3 pin goes to 4.1V and does not oscillate any more.
(I am doing this to understand why the 3V3 pin does not go down to 0V any more when I connect it to the EN(able) pin of my 3.3V/5V boost: it always stick to 3.3V).
Do you have an explanation?
Could it be that the board is damaged?
Best regards, thank you!