diff options
author | William Harrington <kb0iic@berzerkula.org> | 2019-07-27 22:34:16 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2019-07-27 22:37:02 -0500 |
commit | 7d7c43b4c9993af3eb5e32b1ac9fcd83d37b6a6a (patch) | |
tree | 4fd6440a5ea0347960880ed98bc6e65649fe4fc3 /build/default/production/ds3231.i | |
parent | e6bffe23c87a9f6de8abdec747600f674b9cab62 (diff) |
Refactor weekofday to weekOfDay
Diffstat (limited to 'build/default/production/ds3231.i')
-rwxr-xr-x | build/default/production/ds3231.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/default/production/ds3231.i b/build/default/production/ds3231.i index 717d2e9..c360bea 100755 --- a/build/default/production/ds3231.i +++ b/build/default/production/ds3231.i @@ -1764,7 +1764,7 @@ unsigned short I2C_Master_Read(unsigned short); unsigned int sec = 30; unsigned int min = 42; unsigned int hour = 21; -unsigned int dayofweek = 7; +unsigned int dayOfWeek = 7; unsigned int date = 27; unsigned int month = 7; unsigned int year = 19; @@ -1866,7 +1866,7 @@ void Set_DayOfWeek() { I2C_Master_Start(); I2C_Master_Write(0xD0); I2C_Master_Write(3); - I2C_Master_Write(dayofweek); + I2C_Master_Write(dayOfWeek); I2C_Master_Stop(); } |