typo in blinkLED function

This commit is contained in:
Robert van den Breemen 2021-03-06 10:54:53 +01:00
parent 1a64053e55
commit e1e6b3e5e8
2 changed files with 6 additions and 6 deletions

View File

@ -102,7 +102,7 @@ void blinkLEDms(uint32_t delay){
}
}
void blinkLED(uint8_t led, int nr, uint32_t waittime_ms, ){
void blinkLED(uint8_t led, int nr, uint32_t waittime_ms){
for (int i = nr; i>0; i--){
blinkLEDnow(led);
delayms(waittime_ms);

View File

@ -2,13 +2,13 @@
#define _VERSION_MAJOR 0
#define _VERSION_MINOR 8
#define _VERSION_PATCH 0
#define _VERSION_BUILD 747
#define _VERSION_BUILD 749
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
#define _VERSION_DATE "06-03-2021"
#define _VERSION_TIME "10:41:58"
#define _VERSION_TIME "10:54:24"
#define _SEMVER_CORE "0.8.0"
#define _SEMVER_BUILD "0.8.0+747"
#define _SEMVER_FULL "0.8.0+747"
#define _SEMVER_BUILD "0.8.0+749"
#define _SEMVER_FULL "0.8.0+749"
#define _SEMVER_NOBUILD "0.8.0 (06-03-2021)"
#define _VERSION "0.8.0+747 (06-03-2021)"
#define _VERSION "0.8.0+749 (06-03-2021)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver