Advertisement
KgCro

L07 Zneki_3

Nov 26th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. /*
  2. #define F_CPU 7372800UL
  3. */
  4. #include <avr/io.h>
  5.  
  6. int main(void){
  7.     DDRD = _BV(3);
  8.    
  9.     TCCR1A = _BV(COM1A0);
  10.     TCCR1B = _BV(WGM12) | _BV(CS11) | _BV(CS10); // bitan je redosljed pisanja pratis kako pise u datasheetu
  11.     OCR1A = 28799; // 7372800 / (2*2*64) - 1
  12.    
  13.     while(1);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement