Hi,
I have a problem that my SAMD21 switch on Portb3 for a short time (ms) during start up.
I'm using Arduino M0 Pro as a bootloader. The problem is that on this pin have a relais to switch off the whole circuit. So when starting up it switching off right now because of that pulse on portb3.
How can I prevent this?
That's the text program so far:
#define RELAIS_RESET_PIN 30 // PB3, 48 an IC
void setup() {
pinMode(RELAIS_RESET_PIN, OUTPUT);digitalWrite(RELAIS_RESET_PIN, LOW);
}
void loop() {
}