diff options
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(); } |