0.2.2 timing

This commit is contained in:
rob tillaart 2021-05-28 13:47:03 +02:00
parent eb5b781770
commit 9b57767237
6 changed files with 24 additions and 6 deletions

View File

@ -7,9 +7,11 @@
// URL: https://github.com/RobTillaart/timing
//
#include "timing.h"
#include "printHelpers.h" // https://github.com/RobTillaart/printHelpers
void setup()
{
Serial.begin(115200);
@ -30,10 +32,12 @@ void setup()
Serial.println("\nDone...");
}
void loop()
{
}
uint64_t fibonaci(uint32_t n)
{
uint64_t p = 0;
@ -53,4 +57,5 @@ uint64_t fibonaci(uint32_t n)
return q;
}
// -- END OF FILE --

View File

@ -7,8 +7,10 @@
// URL: https://github.com/RobTillaart/timing
//
#include "timing.h"
void setup()
{
Serial.begin(115200);
@ -40,8 +42,10 @@ void setup()
Serial.println("\nDone...");
}
void loop()
{
}
// -- END OF FILE --

View File

@ -7,6 +7,7 @@
// URL: https://github.com/RobTillaart/timing
//
#include "timing.h"
@ -23,6 +24,7 @@ uint16_t primes[MAXPRIMES];
uint16_t idx = 0;
uint32_t x = 1;
void setup()
{
Serial.begin(115200);
@ -52,10 +54,12 @@ void setup()
Serial.println("\nDone...");
}
void loop()
{
}
// sort of sieve.
int nextPrime()
{
@ -78,4 +82,5 @@ int nextPrime()
return x;
}
// -- END OF FILE --
// -- END OF FILE --

View File

@ -15,7 +15,8 @@
"type": "git",
"url": "https://github.com/RobTillaart/timing"
},
"version":"0.2.1",
"version": "0.2.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
}

View File

@ -1,10 +1,10 @@
name=timing
version=0.2.1
version=0.2.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library with wrapper classes for seconds millis micros.
paragraph=These wrappers allow to reset the value of the time.
category=dataprocessing
category=Data Processing
url=https://github.com/RobTillaart/timing
architectures=*
includes=timing.h

View File

@ -2,7 +2,7 @@
//
// FILE: timing.h
// AUTHOR: Rob Tillaart
// VERSION: 0.2.0
// VERSION: 0.2.2
// PURPOSE: Arduino library with wrapper classes for seconds millis micros
// URL: https://github.com/RobTillaart/timing
//
@ -12,9 +12,11 @@
// 0.1.02 2015-03-02 move all to mymillis.h file so compiler can optimize
// 0.2.0 2020-07-07 renamed to timing.h
// 0.2.1 2021-01-09 added Arduino-CI + unit test
// 0.2.1 2021-05-27 added Arduino-lint
#define TIMING_LIB_VERSION (F("0.2.1"))
#define TIMING_LIB_VERSION (F("0.2.2"))
class microSeconds
{
@ -54,4 +56,5 @@ private:
uint32_t _offset = 0UL;
};
// -- END OF FILE --