I am working with Teensy 3.6 with the "Dual CAN-Bus adapter for Teensy 3.5, 3.6". Though in all examples, the pins are set to "HIGH", but I must set them to "LOW" to get it work with the example CANTest.
//if using enable pins on a transceiver they need to be set on
pinMode(2, OUTPUT);
pinMode(35, OUTPUT);
//digitalWrite(2, HIGH);
// digitalWrite(35, HIGH);
digitalWrite(2, HIGH);
digitalWrite(35, HIGH);
I am working with Teensy 3.6 with the "Dual CAN-Bus adapter for Teensy 3.5, 3.6". Though in all examples, the pins are set to "HIGH", but I must set them to "LOW" to get it work with the example CANTest.
//if using enable pins on a transceiver they need to be set on
pinMode(2, OUTPUT);
pinMode(35, OUTPUT);
//digitalWrite(2, HIGH);
// digitalWrite(35, HIGH);
digitalWrite(2, HIGH);
digitalWrite(35, HIGH);