Advertisement
Ostu

Untitled

Mar 21st, 2021
2,219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include<avr/io.h>
  2. #define PortLED PORTA
  3. #define CzasJednostkowy 65536-31250
  4. int main(void)
  5. {
  6. DDRA=0xFF;
  7.  
  8. TCCR1B=(1<<CS12);
  9.  
  10.  
  11. while(1)
  12.     {
  13. PortLED=PortLED^3;
  14. TIFR|=(1<<TOV1);
  15. TCNT1=CzasJednostkowy;
  16. while(~TIFR&(1<<TOV1));
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement