TinyWireM icon indicating copy to clipboard operation
TinyWireM copied to clipboard

Attiny 2313/4313 not compiling

Open camhan22 opened this issue 7 years ago • 0 comments

Hello, I have been trying to use this library and I found a small issue. In the USI_TWI_Master.h, I found that the board definitions for the 2313/4313 fail to compile. I have made some changes to that file and now it compiles. I have not tested it as of 5/22/2017 yet but will do so in the future.

Line 92 contains: #if defined(AVR_AT90Tiny2313) | defined(AVR_ATtiny2313) This is what it was before I changed it

Line 92 should contain: #if defined(AVR_ATtiny2313) | defined(AVR_ATtiny4313) This is what I changed it to and the code will compile now.

camhan22 avatar May 22 '17 04:05 camhan22