-
Notifications
You must be signed in to change notification settings - Fork 710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added funtions to class RTC_PCF8563 for controlling the timer and int… #218
base: master
Are you sure you want to change the base?
Conversation
…errupt functionality of PCF8563. Also addedd required definition for the respective registers.
@@ -410,6 +412,23 @@ class RTC_PCF8523 { | |||
void calibrate(Pcf8523OffsetMode mode, int8_t offset); | |||
}; | |||
|
|||
/** PCF8563 Timer clock source settings */ | |||
enum PCF8563TimerClockFreq { | |||
PCF8563_TimerClk4096kHz = 0x00, /**< 4096 kHz */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not 4096 kilohertz, but 4096 Hz (or, as the datasheet puts it, “4.096 kHz”.
@@ -1451,6 +1451,90 @@ DateTime RTC_PCF8563::now() { | |||
return DateTime(y, m, d, hh, mm, ss); | |||
} | |||
|
|||
/**************************************************************************/ | |||
/*! | |||
@brief Enable the Countdown Timer Interrupt on the PCF8563. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice if each method had a non-empty @details documentation. And also to have the parameters documented.
RTClib.cpp
Outdated
//write_i2c_register(PCF8563_ADDRESS, PCF8563_TIMER_CONTROL, timer_ctlreg & ~0x03 | clkFreq); | ||
|
||
// Sets the enable bit TE and the clock source bits TD[1:0] in the timer control register | ||
write_i2c_register(PCF8563_ADDRESS, PCF8563_TIMER_CONTROL, (timer_ctlreg & ~0x03) | clkFreq | (1 << 7)); | ||
|
||
// uint8_t timer_ctlreg = read_i2c_register(PCF8563_ADDRESS, PCF8563_TIMER_CONTROL); | ||
// //if (timer_ctlreg & (1 << 5)) { | ||
// write_i2c_register(PCF8563_ADDRESS, PCF8563_TIMER_CONTROL, timer_ctlreg | (1 << 7)); | ||
// //} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, no not commit commented-out code.
RTClib.cpp
Outdated
uint8_t ctlreg = read_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2); | ||
|
||
// Reset the enable bit TIE in the control status 2 register leaving other bits unchanged | ||
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intent should be clearer like this:
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~1); | |
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~PCF8563_CONTROL2_TIE); |
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~1); | ||
} | ||
|
||
uint8_t RTC_PCF8563::getAndClearIntFlags(void) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method also should be documented.
uint8_t ctlreg = read_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2); | ||
|
||
// Clear the AF and TF interrupt flags in control status register 2 | ||
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~12); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clearer intent:
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~12); | |
write_i2c_register(PCF8563_ADDRESS, PCF8563_CONTROL_2, ctlreg & ~(PCF8563_CONTROL2_AF | PCF8563_CONTROL2_TF)); |
Please review my code and consider this PR.
I've implemented functionality to control the timer and timer interrupt facilities of PCF8563. For this I added the following functions to class RTC_PCF8563:
void enableCountdownTimer(PCF8563TimerClockFreq clkFreq, uint8_t numPeriods);
void disableCountdownTimer(void);
void enableCountdownTimerInt(bool pulse);
void disableCountdownTimerInt(void);
uint8_t getAndClearIntFlags(void);
Also added required definitions in RTClib.h.
This does not cover functionality of alarms and alarm interrupt. Adafruit's own PCF8563 breakout doesn't expose the INT pin, but this might be useful for other boards that ise the functionality or in the future if Adafruit produces a breakout board that exposes the INT pin.
I've successfully tested all the added functionality on a PCF8563 breakout from ANGEEK connected to an arduino UNO. Examples are not included. I'm happy to add any if required.