Skip to content

Commit ba59a6f

Browse files
committed
Docs - thanks to @rtek1000
1 parent b2863b6 commit ba59a6f

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

contributors.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ pk17r - https://github.com/pk17r - EOSC flag, improvements, DoW correction, docu
1717
pk17r - https://github.com/pk17r - Yes, again. 12/24h, improvements and bugfixes ( #27 ): PR #35
1818
Ben Wheeler - https://github.com/BenUniqcode - Add error check to refresh function. Now this function returns bool value, false on errors: PR #36
1919
Ben Wheeler - https://github.com/BenUniqcode - Access to last one byte of RTCs RAM : PR #37
20+
rtek1000 - https://github.com/rtek1000 - Fix doc typo - Issue #40
21+
rtek1000 - https://github.com/rtek1000 - I2C unlock procedure and PIC implementation - Issue #42
2022

2123

2224

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=uRTCLib
2-
version=6.9.1
2+
version=6.9.2
33
author=Naguissa <naguissa@foroelectro.net>
44
maintainer=Naguissa <naguissa@foroelectro.net>
55
sentence=Really tiny library to basic RTC functionality on Arduino. DS1307, DS3231 and DS3232 RTCs are supported. See https://github.com/Naguissa/uEEPROMLib for EEPROM support. Temperature, Alarms, SQWG, Power lost and RAM support.

src/uRTCLib.cpp

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,20 @@
1717
* Note: For AtTiny you need TinyWireM library from Adafruit installed (available on library manager).
1818
*
1919
*
20+
* I2C locked in unknown state
21+
*
22+
* If uC crashes and I2C communication is locked in a unknown state you have a procedure to unlock it.
23+
* It's not implemented in this library but you can find an explanation and a PIC implementation thanks
24+
* to @rtek1000 in #42 : https://github.com/Naguissa/uRTCLib/issues/42
25+
*
2026
* @file uRTCLib.cpp
2127
* @copyright Naguissa
2228
* @author Naguissa
2329
* @see <a href="https://github.com/Naguissa/uRTCLib">https://github.com/Naguissa/uRTCLib</a>
2430
* @see <a href="https://www.foroelectro.net/librerias-arduino-ide-f29/rtclib-arduino-libreria-simple-y-eficaz-para-rtc-y-t95.html">https://www.foroelectro.net/librerias-arduino-ide-f29/rtclib-arduino-libreria-simple-y-eficaz-para-rtc-y-t95.html</a>
2531
* @see <a href="mailto:naguissa@foroelectro.net">naguissa@foroelectro.net</a>
2632
* @see <a href="https://github.com/Naguissa/uEEPROMLib">See uEEPROMLib for EEPROM support.</a>
27-
* @version 6.9.1
33+
* @version 6.9.2
2834
*/
2935

3036
#include <Arduino.h>
@@ -341,7 +347,7 @@ bool uRTCLib::lostPower() {
341347
/**
342348
* \brief Clears lost power VBAT staus
343349
*
344-
* DS1307 has a 'CH' Clock Halt Bit in Register 00h -> When cleared to 0, the oscillator is enabled and time starts incermenting
350+
* DS1307 has a 'CH' Clock Halt Bit in Register 00h -> When cleared to 0, the oscillator is enabled and the time starts to increase
345351
*
346352
* Others have a 'OSF' Oscillator Stop Flag in Register 0Fh
347353
*/

src/uRTCLib.h

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,18 @@
1717
* Note: For AtTiny you need TinyWireM library from Adafruit installed (available on library manager).
1818
*
1919
*
20+
* I2C locked in unknown state
21+
*
22+
* If uC crashes and I2C communication is locked in a unknown state you have a procedure to unlock it.
23+
* It's not implemented in this library but you can find an explanation and a PIC implementation thanks
24+
* to @rtek1000 in #42 : https://github.com/Naguissa/uRTCLib/issues/42
25+
*
26+
*
2027
* @see <a href="https://github.com/Naguissa/uRTCLib">https://github.com/Naguissa/uRTCLib</a>
2128
* @see <a href="https://www.foroelectro.net/librerias-arduino-ide-f29/rtclib-arduino-libreria-simple-y-eficaz-para-rtc-y-t95.html">https://www.foroelectro.net/librerias-arduino-ide-f29/rtclib-arduino-libreria-simple-y-eficaz-para-rtc-y-t95.html</a>
2229
* @see <a href="mailto:naguissa@foroelectro.net">naguissa@foroelectro.net</a>
2330
* @see <a href="https://github.com/Naguissa/uEEPROMLib">See uEEPROMLib for EEPROM support.</a>
24-
* @version 6.9.1
31+
* @version 6.9.2
2532
*/
2633
/** \file uRTCLib.h
2734
* \brief uRTCLib header file

0 commit comments

Comments
 (0)