Skip to content

Commit

Permalink
V0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
felias-fogg committed Jun 27, 2023
1 parent cae77c8 commit f65cec9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,5 @@ V0.6.3 (28.07.2023)
- fixed problem in setup_* for all MCUs using OSCCAL0
- fixed the same problem in avrCalibrate.cpp
- added ATmega8(A)
- added ATmega16, 32 & 8535

7 changes: 7 additions & 0 deletions license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2021 Bernhard Nebel

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5 changes: 3 additions & 2 deletions utilities/calibTarget/calibTarget.ino
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,12 @@
#define TIFR TIFR0
#define TOV TOV0
#define TCCR0CS TCCR0B
#elif defined(__AVR_ATmega8__) || defined(__AVR_ATmega8A__)
#elif defined(__AVR_ATmega16__) || defined(__AVR_ATmega32__) || defined(__AVR_ATmega8535__) || \
defined(__AVR_ATmega8__) || defined(__AVR_ATmega8A__)
#define TCNT TCNT0
#define TOV TOV0
#define TCCR0CS TCCR0
#define TCCR0A TCCR0
#define TCCR0A TCCR0
#else
#error "Unsupported MCU"
#endif
Expand Down

0 comments on commit f65cec9

Please sign in to comment.