Skip to content

Commit

Permalink
Merge pull request #2 from bxparks/develop
Browse files Browse the repository at this point in the history
0.1 - initial push to master
  • Loading branch information
bxparks authored Jun 16, 2019
2 parents 96506ba + 7ad7247 commit c4ee1c5
Show file tree
Hide file tree
Showing 133 changed files with 802,425 additions and 328,767 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

* 0.1 (2018-09-25)
* Initial beta release on GitHub.
* 0.1 (2019-06-15)
* Initial release on GitHub to establish a reference point.
* (2018-08-20)
* Start of library in private repo.
992 changes: 666 additions & 326 deletions README.md

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Documentation

These [Doxygen docs](https://bxparks.github.io/AceTime/html/) are
viewable on GitHub Pages.
2 changes: 1 addition & 1 deletion docs/doxygen.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ PROJECT_NUMBER = 0.1
# for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short.

PROJECT_BRIEF = "Date and time classes for Arduino that supports the TZ DAtabase, and a system clock synchronized from an NTP server or an RTC chip."
PROJECT_BRIEF = "Date and time classes for Arduino that support timezones from the TZ Database, and provide a system clock that can synchronize from an NTP server or an RTC chip."

# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55
Expand Down
5 changes: 1 addition & 4 deletions examples/AutoBenchmark/AutoBenchmark.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
* This should compile on all microcontrollers supported by the Arduino IDE.
*/

#ifdef ARDUINO
#include <AceRoutine.h> // activate SystemTime coroutines
#endif
#include <AceTime.h>
#include "Benchmark.h"

Expand All @@ -21,7 +19,6 @@ void setup() {

Serial.begin(115200); // ESP8266 default of 74880 not supported on Linux
while (!Serial); // Wait until Serial is ready - Leonardo/Micro
pinMode(LED_BENCHMARK, OUTPUT);

// ace_time primitives

Expand Down Expand Up @@ -94,6 +91,7 @@ void setup() {
#if defined(ESP8266) || defined(ESP32)
Serial.print(F("sizeof(NtpTimeProvider): "));
Serial.println(sizeof(NtpTimeProvider));
#endif
#endif

Serial.print(F("sizeof(SystemTimeSyncLoop): "));
Expand All @@ -107,7 +105,6 @@ void setup() {

Serial.print(F("sizeof(SystemTimeHeartbeatCoroutine): "));
Serial.println(sizeof(SystemTimeHeartbeatCoroutine));
#endif

runBenchmarks();
#ifndef ARDUINO
Expand Down
Loading

0 comments on commit c4ee1c5

Please sign in to comment.