Andrew Stone
Andrew Stone
If you look at 1883558887751ccdd00960385311a6925852cace in my repo, you will see a bunch of different variants and some logic that measures timing. You could grab parts of that to do...
Yes, this is very mild. But, qualified by I'm mostly looking at BU, and just skimmed ABC to see that its similar: the block is already constructed so it won't...
> Composable functions should be top-level functions at all times, there is even a lint check for this. Using non-top-level composables is an antipattern in my humble opinion (except for...
Yes, I used the ATA6663: http://www.atmel.com/images/atmel-9146-lin-networking-ata6663-ata6664_datasheet.pdf You absolutely need a transceiver to communicate with LIN devices (unless of course your uP has an integrated transceiver)... I do not think that...
yes look as section 3 (Absolute Maximum Ratings) of http://www.atmel.com/images/atmel-9146-lin-networking-ata6663-ata6664_datasheet.pdf . the LIN pin ranges from -27 to 40 v, the logic pins (including TX) from -0.3 to 5.5v. On...
In lin.h change this: #define LIN_SERIAL HardwareSerial to: #define LIN_SERIAL SoftwareSerial Now my software will use the SoftwareSerial object. This is only going to work if SoftwareSerial has the same...
I've lost my LIN test setup. Can you make a PR with this and your prior report and if it works for you, I'll merge it. I hesitate to make...