- minute alarm
- hour alarm
- day alarm
- wday alarm
- minute & hour alarm
- minute & day alarm
- day & wday alarm
- timer
Signed-off-by: Ilya Chichkov
---
v2->v3
Bernhard:
- Fix typo in test header comment section
- Move defines and pcf8563 struct to the header
- Merge test and
Add a unit test for pcf8563_rtc module
- Check default value after initialization
- Check set/get time
- Check minute alarm
- Check hour alarm
- Check day alarm
- Check wday alarm
- Check minute & hour alarm
- Check minute & day alarm
- Check day & wday alarm
- Check timer
---
v1->v2
Phil:
- Add h
Hi Phil and Bernhard,
I would like to apologize for not including you in the initial email regarding
the RTC PCF8563 patch. This was an oversight on my part, and I regret any
inconvenience this may have caused.
От: Ilya Chichkov
Отправлено: 10 марта 2025 г. 14
Add PCF8563 a real-time clock with calendar and I2C interface.
This commit adds support for interfacing with it and implements
functionality of setting timer, alarm, reading and writing time.
Signed-off-by: Ilya Chichkov
---
v1->v2
Phil:
- Add hot reset
- Fix trace message
- Add testing cover
Add PCF8563 a real-time clock with calendar and I2C interface.
This commit adds support for interfacing with it and implements
functionality of setting timer, alarm, reading and writing time.
Datasheet: https://www.micros.com.pl/mediaserver/UZPCF8563ts5_0001.pdf
Signed-off-by: Ilya Chichkov
@@ -0,0 +1,359 @@
+/*
+ * SI705X-A20-IM, Board Mount Temperature Sensors.
+ *
+ * https://www.integrated-circuit.com/pdf/502/391/4.pdf
+ *
+ * Copyright (c) 2024 Ilya Chichkov
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and condition
@@ -0,0 +1,359 @@
+/*
+ * SI705X-A20-IM, Board Mount Temperature Sensors.
+ *
+ * https://www.integrated-circuit.com/pdf/502/391/4.pdf
+ *
+ * Copyright (c) 2024 Ilya Chichkov
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and condition