Clock working, I2C communication to be proven

This commit is contained in:
StefansE
2026-03-26 19:26:58 +01:00
parent 6b3f588fb0
commit ba8855eb21
6 changed files with 153 additions and 21 deletions

18
Core/Inc/clock.h Normal file
View File

@@ -0,0 +1,18 @@
/*
* clock.h
*
* Created on: Mar 26, 2026
* Author: ewars
*/
#ifndef INC_CLOCK_H_
#define INC_CLOCK_H_
#include <stdint-gcc.h>
uint8_t clock_convert_hours(uint8_t hours);
uint8_t clock_convert_min_sec(uint8_t min_sec);
#endif /* INC_CLOCK_H_ */