diff --git a/Geigerzaehler/main.c b/Geigerzaehler/main.c index d8a6495..dcb034d 100644 --- a/Geigerzaehler/main.c +++ b/Geigerzaehler/main.c @@ -1,16 +1,19 @@ /* * geigerzaehler.main.c.c * - * Created: 28.02.2019 09:07:22 - * Author : John_Ditgens + * Created : 28.02.2019 09:07:22 + * Author : John Ditgens, Alexander Brandscheidt + * Git-Repository : https://gitea.Railduction.eu/JohnD/Geigerzaehler.git + * + * MController : AtMega328P + * Board : Arduino Nano */ -#define F_CPU ...UL // Taktfrequenz (...)Hz +#define F_CPU 20000000UL // Clock speed: 20 MHz - Maximum of AtMega328P +// Imports #include #include -// Todo: Clock speed missing - int main(void) { DDRD &= ~(1<<2); // Activate PD2 @@ -25,8 +28,9 @@ int main(void) EICRA |= (1 << ISC11)|(1 << ISC10); // Only at raising edge EIMSK |= (1 <