ninja2
Well-known member
I'm working on reset control from my T4.1 processor to the ZED-F9P GNSS chip on my Micromod system comprising:
MMod Main Double Board with:
Question which pin should I use on the T4.1 to control B0_04?
I tried digital pin D40 but the ZED-F9P froze as soon as pinMode declared it as an O/P :
Maybe I have the right pin, but output defaults LOW following the pinMode()? (the RESET# line has a 10k pull-up on the GNSS fn Board)
MMod Main Double Board with:
- Processor: T4.1
- F0: ZED-F9P GNSS
- F1: ESP32-WROOM-32 WiFi/Bluetooth
Code:
T4.1 MM processor = B0_04 BGA:C8 Tag:GPIO/40
to
MM connector T4.1 pin:40 G0/BUS0
to
Main Double Board Processor Connector = G0/BUS0 pin:40 Tag:G0-PROCESSOR
to
Main Double Board FC0 Connector = F3 pin:53 Tag:G0-PROCESSOR
to
GNSS ZED-F9P Fn Board Connector = F3 pin:53 Tag:RESET#/ZED_RESET#
to
ZED-F9P chip: RESET# pin:49 tag:ZED_RESET#
Question which pin should I use on the T4.1 to control B0_04?
I tried digital pin D40 but the ZED-F9P froze as soon as pinMode declared it as an O/P :
Code:
#define ZED_RESETpin 40
pinMode(ZED_RESETpin,OUTPUT);
.
.
resetGNSS();
.
.
void resetGNSS(){
Serial << "RESET ZED-F9P GNSS ...\n";
digitalWrite(ZED_RESETpin,LOW);
delay(10);
digitalWrite(ZED_RESETpin,HIGH);
}
Maybe I have the right pin, but output defaults LOW following the pinMode()? (the RESET# line has a 10k pull-up on the GNSS fn Board)