aboutsummaryrefslogtreecommitdiffstats
path: root/ds3231.c
diff options
context:
space:
mode:
authorkb0iic <kb0iic@berzerkula.org>2019-07-27 22:34:16 -0500
committerkb0iic <kb0iic@berzerkula.org>2019-07-27 22:34:16 -0500
commitb5825974903b208b5ffc75575e5b253d543e9459 (patch)
tree4fd6440a5ea0347960880ed98bc6e65649fe4fc3 /ds3231.c
parente6bffe23c87a9f6de8abdec747600f674b9cab62 (diff)
Refactor weekofday to weekOfDay
Diffstat (limited to 'ds3231.c')
-rwxr-xr-xds3231.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ds3231.c b/ds3231.c
index 53a944f..ae90d36 100755
--- a/ds3231.c
+++ b/ds3231.c
@@ -63,7 +63,7 @@ void Set_DayOfWeek() {
I2C_Master_Start(); // Start I2C
I2C_Master_Write(0xD0); // RTC Chip address
I2C_Master_Write(3); // send register address
- I2C_Master_Write(dayofweek); //update day of week
+ I2C_Master_Write(dayOfWeek); //update day of week
I2C_Master_Stop();
}