Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <avr/io.h>
  2. #include <avr/interrupt.h>
  3.  
  4.  
  5. int main(void)
  6. {
  7. TCCR1A = 0x00;
  8. TCCR1B = 0x01;
  9. cli();
  10. TCNT1 = 400;
  11. sei();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement