|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- * Object Oriented CAN example for Teensy 3.6 with Dual CAN buses
- * By Collin Kidder. Based upon the work of Pawelsky and Teachop
- *
- * Both buses are set to 500k to show things with a faster bus.
- * The reception of frames in this example is done via callbacks
- * to an object rather than polling. Frames are delivered as they come in.
- */
-
- #include <FlexCAN.h>
-
- #ifndef __MK66FX1M0__
- #error "Teensy 3.6 with dual CAN bus is required to run this example"
- #endif
-
- static CAN_message_t msg;
- static uint8_t hex[17] = "0123456789abcdef";
-
- class ExampleClass : public CANListener
- {
- public:
- void printFrame(CAN_message_t &frame, int mailbox);
- bool frameHandler(CAN_message_t &frame, int mailbox, uint8_t controller); //overrides the parent version so we can actually do something
- };
-
- void ExampleClass::printFrame(CAN_message_t &frame, int mailbox)
- {
- Serial.print("ID: ");
- Serial.print(frame.id, HEX);
- Serial.print(" Data: ");
- for (int c = 0; c < frame.len; c++)
- {
- Serial.print(frame.buf[c], HEX);
- Serial.write(' ');
- }
- Serial.write('\r');
- Serial.write('\n');
- }
-
- bool ExampleClass::frameHandler(CAN_message_t &frame, int mailbox, uint8_t controller)
- {
- printFrame(frame, mailbox);
-
- return true;
- }
-
- ExampleClass exampleClass;
-
- // -------------------------------------------------------------
- void setup(void)
- {
- delay(1000);
- Serial.println(F("Hello Teensy 3.6 dual CAN Test With Objects."));
-
- Can0.begin(500000);
- Can1.begin(500000);
-
- //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);
-
- Can0.attachObj(&exampleClass);
- exampleClass.attachGeneralHandler();
-
- msg.ext = 0;
- msg.id = 0x100;
- msg.len = 8;
- msg.buf[0] = 10;
- msg.buf[1] = 20;
- msg.buf[2] = 0;
- msg.buf[3] = 100;
- msg.buf[4] = 128;
- msg.buf[5] = 64;
- msg.buf[6] = 32;
- msg.buf[7] = 16;
- }
-
-
- // -------------------------------------------------------------
- void loop(void)
- {
- msg.buf[0]++;
- Can1.write(msg);
- msg.buf[0]++;
- Can1.write(msg);
- msg.buf[0]++;
- Can1.write(msg);
- msg.buf[0]++;
- Can1.write(msg);
- msg.buf[0]++;
- Can1.write(msg);
- delay(20);
- }
|