Skip to content

Commit 34fcbdd

Browse files
committed
2.0.5 Added missing semicolon
Added missing semicolon to avr_FingerTimer.cpp
1 parent 7ef5040 commit 34fcbdd

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

extras/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](http://keepachangelog.com/)
88
and this project adheres to [Semantic Versioning](http://semver.org/).
99

10+
## [2.0.5] - Aug 14th, 2017
11+
12+
### Added
13+
- Added missing semicolon to avr_FingerTimer.cpp
14+
15+
1016
## [2.0.4] - Aug 10th, 2017
1117

1218
### Added

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FingerLib
2-
version=2.0.4
2+
version=2.0.5
33
author=Olly McBride
44
maintainer=Olly McBride <ollymcbride@openbionics.com>
55
sentence=Allows for servo-like functionality for finger control. For Atmega 2560 (Almond PCB) and Arduino Zero (Chestnut) only.

src/timers/avr_FingerTimer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ void _posCtrlTimerSetup(void)
6363
ISR(TIMER5_COMPA_vect)
6464
{
6565
static long timer5cnt = 0; // main timer counter increments every call of the interrupt
66-
static long motorCount = 0 // time instance variable for motor position control
67-
static long mSecCount = 0; // time instance variable for millisecond counter
66+
static long motorCount = 0; // time instance variable for motor position control
67+
static long mSecCount = 0; // time instance variable for millisecond counter
6868

6969
timer5cnt++; // increment timer counter every
7070

0 commit comments

Comments
 (0)