File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
77The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
88and 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
Original file line number Diff line number Diff line change 11name =FingerLib
2- version =2.0.4
2+ version =2.0.5
33author =Olly McBride
44maintainer =Olly McBride <ollymcbride@openbionics.com>
55sentence =Allows for servo-like functionality for finger control. For Atmega 2560 (Almond PCB) and Arduino Zero (Chestnut) only.
Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ void _posCtrlTimerSetup(void)
6363ISR (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
You can’t perform that action at this time.
0 commit comments