ds3231.rs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. use field_offset::offset_of;
  2. use stm32l4xx_hal::{
  3. prelude::{_embedded_hal_blocking_i2c_Read, _embedded_hal_blocking_i2c_Write},
  4. };
  5. use tock_registers::{
  6. interfaces::{ReadWriteable, Readable},
  7. register_bitfields, register_structs,
  8. registers::InMemoryRegister,
  9. };
  10. register_bitfields![
  11. u8,
  12. T_SECOND [
  13. Value OFFSET(0) NUMBITS(7) [],
  14. ],
  15. T_MINUTE [
  16. Value OFFSET(0) NUMBITS(7) [],
  17. ],
  18. T_HOUR [
  19. Value OFFSET(0) NUMBITS(6) [],
  20. n24 OFFSET(6) NUMBITS(1) [],
  21. ],
  22. T_DAY [
  23. Value OFFSET(0) NUMBITS(3) [],
  24. ],
  25. T_DATE [
  26. Value OFFSET(0) NUMBITS(6) [],
  27. ],
  28. T_MONTH [
  29. Value OFFSET(0) NUMBITS(5) [],
  30. Century OFFSET(7) NUMBITS(1) [],
  31. ],
  32. T_YEAR [
  33. Value OFFSET(0) NUMBITS(8) [],
  34. ],
  35. A_SECOND [
  36. Value OFFSET(0) NUMBITS(7) [],
  37. M1 OFFSET(7) NUMBITS(1) [],
  38. ],
  39. A_MINUTE [
  40. Value OFFSET(0) NUMBITS(7) [],
  41. M2 OFFSET(7) NUMBITS(1) [],
  42. ],
  43. A_HOUR [
  44. Value OFFSET(0) NUMBITS(6) [],
  45. n24 OFFSET(6) NUMBITS(1) [],
  46. M3 OFFSET(7) NUMBITS(1) [],
  47. ],
  48. A_DAY_DATE [
  49. Value OFFSET(0) NUMBITS(6) [],
  50. nDT OFFSET(6) NUMBITS(1) [],
  51. M4 OFFSET(7) NUMBITS(1) [],
  52. ],
  53. CONTROL_1 [
  54. A1IE 0,
  55. A2IE 1,
  56. INTCN 2,
  57. RS1 3,
  58. RS2 4,
  59. CONV 5,
  60. BBSQW 6,
  61. nEOSC 7,
  62. ],
  63. CONTROL_2 [
  64. A1F 0,
  65. A2F 1,
  66. BSY 2,
  67. EN32KHZ 3,
  68. OSF 7,
  69. ],
  70. AGING_OFFSET [
  71. Value OFFSET(0) NUMBITS(7) [],
  72. Sign OFFSET(7) NUMBITS(1) [],
  73. ],
  74. TEMP_MSB [
  75. Value OFFSET(0) NUMBITS(7) [],
  76. Sign OFFSET(7) NUMBITS(1) [],
  77. ],
  78. TEMP_LSB [
  79. Value OFFSET(6) NUMBITS(2) [],
  80. ],
  81. ];
  82. register_structs! {
  83. Ds3231Registers {
  84. (0x00 => t_second: InMemoryRegister<u8, T_SECOND::Register>),
  85. (0x01 => t_minute: InMemoryRegister<u8, T_MINUTE::Register>),
  86. (0x02 => t_hour: InMemoryRegister<u8, T_HOUR::Register>),
  87. (0x03 => t_weekday: InMemoryRegister<u8, T_DAY::Register>),
  88. (0x04 => t_day: InMemoryRegister<u8, T_DATE::Register>),
  89. (0x05 => t_month: InMemoryRegister<u8, T_MONTH::Register>),
  90. (0x06 => t_year: InMemoryRegister<u8, T_YEAR::Register>),
  91. (0x07 => a1_second: InMemoryRegister<u8, A_SECOND::Register>),
  92. (0x08 => a1_minute: InMemoryRegister<u8, A_MINUTE::Register>),
  93. (0x09 => a1_hour: InMemoryRegister<u8, A_HOUR::Register>),
  94. (0x0A => a1_day_date: InMemoryRegister<u8, A_DAY_DATE::Register>),
  95. (0x0B => a2_minute: InMemoryRegister<u8, A_MINUTE::Register>),
  96. (0x0C => a2_hour: InMemoryRegister<u8, A_HOUR::Register>),
  97. (0x0D => a2_day_date: InMemoryRegister<u8, A_DAY_DATE::Register>),
  98. (0x0E => control_1: InMemoryRegister<u8, CONTROL_1::Register>),
  99. (0x0F => control_2: InMemoryRegister<u8, CONTROL_2::Register>),
  100. (0x10 => aging_offset: InMemoryRegister<u8, AGING_OFFSET::Register>),
  101. (0x11 => temp_msb: InMemoryRegister<u8, TEMP_MSB::Register>),
  102. (0x12 => temp_lsb: InMemoryRegister<u8, TEMP_LSB::Register>),
  103. (0x13 => @END),
  104. }
  105. }
  106. pub enum Weekday {
  107. SUNDAY = 0,
  108. MONDAY = 1,
  109. TUESDAY = 2,
  110. WEDNESDAY = 3,
  111. THURSDAY = 4,
  112. FRIDAY = 5,
  113. SATURDAY = 6,
  114. }
  115. impl Ds3231Registers {
  116. fn i2c_read_regs(&mut self, i2c: &mut impl _embedded_hal_blocking_i2c_Read) {}
  117. fn set_time(second: &u32, minute: &u32, hour: &u32) {}
  118. fn set_date(weekday: &Weekday, day: &u32, month: &u32, year: &u32, century: &u32) {}
  119. fn get_time(second: &mut u32, minute: &mut u32, hour: &mut u32) {}
  120. fn get_date(
  121. weekday: &mut Weekday,
  122. day: &mut u32,
  123. month: &mut u32,
  124. year: &mut u32,
  125. century: &mut u32,
  126. ) {
  127. }
  128. }
  129. pub fn in_dst(weekday: Weekday, day: u32, month: u32, hour_24: u32) -> bool {
  130. let prev_sunday: i32 = day as i32 - weekday as i32;
  131. match month {
  132. 0..=2 | 12.. => false,
  133. 4..=10 => true,
  134. 3 => {
  135. if prev_sunday < 8 {
  136. false
  137. } else if prev_sunday > 14 {
  138. true
  139. } else if prev_sunday == day as i32 {
  140. hour_24 >= 2
  141. } else {
  142. true
  143. }
  144. }
  145. 11 => {
  146. if prev_sunday <= 0 {
  147. true
  148. } else if day > 7 {
  149. false
  150. } else if prev_sunday == day as i32 {
  151. hour_24 < 2
  152. } else {
  153. false
  154. }
  155. }
  156. }
  157. }
  158. #[cfg(test)]
  159. mod test {
  160. use super::*;
  161. #[test]
  162. fn dst_test() {
  163. // 2020 - begins Mar 8th @ 2AM (Sunday), ends Nov 1st @ 2AM (Sunday)
  164. assert!(in_dst(Weekday::SUNDAY, 8, 3, 1) == false);
  165. assert!(in_dst(Weekday::SUNDAY, 8, 3, 2) == true);
  166. assert!(in_dst(Weekday::SUNDAY, 8, 3, 3) == true);
  167. assert!(in_dst(Weekday::SUNDAY, 1, 11, 1) == true);
  168. assert!(in_dst(Weekday::SUNDAY, 1, 11, 2) == false);
  169. assert!(in_dst(Weekday::SUNDAY, 1, 11, 3) == false);
  170. // 2021 - begins Mar 14th @ 2AM (Sunday), ends Nov 7th @ 2AM (Sunday)
  171. assert!(in_dst(Weekday::SUNDAY, 14, 3, 1) == false);
  172. assert!(in_dst(Weekday::SUNDAY, 14, 3, 2) == true);
  173. assert!(in_dst(Weekday::SUNDAY, 14, 3, 3) == true);
  174. assert!(in_dst(Weekday::SUNDAY, 7, 11, 1) == true);
  175. assert!(in_dst(Weekday::SUNDAY, 7, 11, 2) == false);
  176. assert!(in_dst(Weekday::SUNDAY, 7, 11, 3) == false);
  177. // 2022 - begins Mar 13th @ 2AM (Sunday), ends Nov 6th @ 2AM (Sunday)
  178. assert!(in_dst(Weekday::SUNDAY, 13, 3, 1) == false);
  179. assert!(in_dst(Weekday::SUNDAY, 13, 3, 2) == true);
  180. assert!(in_dst(Weekday::SUNDAY, 13, 3, 3) == true);
  181. assert!(in_dst(Weekday::SUNDAY, 6, 11, 1) == true);
  182. assert!(in_dst(Weekday::SUNDAY, 6, 11, 2) == false);
  183. assert!(in_dst(Weekday::SUNDAY, 6, 11, 3) == false);
  184. // 2023 - begins Mar 12th @ 2AM (Sunday), ends Nov 5th @ 2AM (Sunday)
  185. assert!(in_dst(Weekday::SUNDAY, 12, 3, 1) == false);
  186. assert!(in_dst(Weekday::SUNDAY, 12, 3, 2) == true);
  187. assert!(in_dst(Weekday::SUNDAY, 12, 3, 3) == true);
  188. assert!(in_dst(Weekday::SUNDAY, 5, 11, 1) == true);
  189. assert!(in_dst(Weekday::SUNDAY, 5, 11, 2) == false);
  190. assert!(in_dst(Weekday::SUNDAY, 5, 11, 3) == false);
  191. // Sanity check other dates in 2021
  192. assert!(in_dst(Weekday::FRIDAY, 1, 1, 0) == false);
  193. assert!(in_dst(Weekday::MONDAY, 1, 2, 0) == false);
  194. assert!(in_dst(Weekday::MONDAY, 1, 3, 0) == false);
  195. assert!(in_dst(Weekday::THURSDAY, 1, 4, 0) == true);
  196. assert!(in_dst(Weekday::SATURDAY, 1, 5, 0) == true);
  197. assert!(in_dst(Weekday::TUESDAY, 1, 6, 0) == true);
  198. assert!(in_dst(Weekday::THURSDAY, 1, 7, 0) == true);
  199. assert!(in_dst(Weekday::SUNDAY, 1, 8, 0) == true);
  200. assert!(in_dst(Weekday::WEDNESDAY, 1, 9, 0) == true);
  201. assert!(in_dst(Weekday::FRIDAY, 1, 10, 0) == true);
  202. assert!(in_dst(Weekday::MONDAY, 1, 11, 0) == true);
  203. assert!(in_dst(Weekday::WEDNESDAY, 1, 12, 0) == false);
  204. }
  205. }