Added some more projects and libraries.

This commit is contained in:
Johannes Findeisen 2022-11-27 16:14:05 +01:00
commit 1e1459fa50
94 changed files with 11904 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#ifndef RTC_DCF_config_h
#define RTC_DCF_config_h
/******************************************************************************
Definitionen
******************************************************************************/
/* Wahl der Kommunikationsart
mögliche Werte: 0x00 UART
0x01 SPI
Ox02 I2C */
#define RTC_DCF_COMMUNICATION 0x02
/* eingestellte I2C-Adresse des RTC-DCF (wird nur bei I2C-Kommunikation benötigt) */
#define RTC_DCF_I2C_ADDRESS 0x01
/* eingestellte Baudrate des RTC-DCF (wird nur bei UART-Kommunikation benötigt) */
#define RTC_DCF_UART_BAUDRATE 4800
#endif /* RTC_DCF_config_h */