Search results

  1. B

    MTP Problem

    MTP worked for me back in January, but I had the same issue with the EEPROM include starting today in PlatformIO. Setting `lib_ldf_mode = deep` in `platformio.ini` solved the issue for me. Has anyone tested whether this is still needed with teensyduino 1.60? Looks like there's a RC with...
  2. B

    can't find AttachRTS() in HardwareSerial

    Embarrassingly, yes, that's it. I was staring right at it in the header file and on the pjrc website. Sigh. Thanks, -Brett
  3. B

    can't find AttachRTS() in HardwareSerial

    Hi, I'm trying to use hardware flow control when communicating over serial with a SRS RGA. This code: // set this to the hardware serial port you wish to use #define RGA Serial4 void setup() { Serial.begin(9600); RGA.attachRTS(3); RGA.begin(28800, SERIAL_8N1); } gives this error on...
Back
Top