Skip to content

Commit

Permalink
V1.1.1 (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
felias-fogg committed Jun 30, 2023
1 parent 9fd9d5f commit bc59dc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,4 @@ V1.1.0
V1.1.1
- had to add ATtiny13 conditionals in the init function in order to avoid getting an error from the
Vcc library
- and it had to be added to avrCalibrate.h as well (sigh)
3 changes: 2 additions & 1 deletion src/avrCalibrate.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

#include <Arduino.h>
#include <avr/eeprom.h>
#if !defined(__AVR_ATtiny2313__) && !defined(__AVR_ATtiny2313A__) && !defined(__AVR_ATtiny4313__)
#if !defined(__AVR_ATtiny2313__) && !defined(__AVR_ATtiny2313A__) && !defined(__AVR_ATtiny4313__) && \
!defined(__AVR_ATtiny13__) && !defined(__AVR_ATtiny13A__)
#include <Vcc.h>
#endif

Expand Down

0 comments on commit bc59dc2

Please sign in to comment.