Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /*
  2. * c_praks.c
  3. *
  4. * Created: 20.04.2018 10:10:02
  5. * Author : Tudeng
  6. */
  7.  
  8. #include <avr/io.h>
  9.  
  10.  
  11. int main(void){
  12. DDRA = 1;
  13.  
  14. MCUCR |= (1<<JTD);
  15. MCUCR |= (1<<JTD);
  16.  
  17. while(1){
  18. PORTA = 1;
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement