fork download
  1. #include <iom8535v.h>
  2. #include <macros.h.>
  3. #define S 50
  4.  
  5. void port_init(void)
  6. {
  7. PORTA=0x81; //na vhod
  8. DDRA=0x00;
  9. PORTB=0x00;
  10. DDRB=0xF0; //na vihod
  11. }
  12.  
  13.  
  14. void main(void)
  15. {
  16. long i;
  17. int k=1;
  18. port_init();
  19. while(1)
  20. {
  21. if (PINA&1==1 && k==1)
  22. {
  23. for(i=1;i<S;i++);
  24. PORTB=PINA&128;
  25. k=2;
  26. }
  27. else if(PINA&1==1 && k==2)
  28. {
  29. for(i=1;i<S;i++);
  30. PORTB=PORTB|PINA>>1;
  31. k=3;
  32. }
  33. else if(PINA&1==1 && k==3)
  34. {
  35. for(i=1;i<S;i++);
  36. PORTB=PORTB|PINA>>2;
  37. k=4;
  38. }
  39. else if(PINA&1==1 && k==4)
  40. {
  41. for(i=1;i<S;i++);
  42. PORTB=PORTB|PINA>>3;
  43. k=5;
  44. }
  45. }
  46. }
  47.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:1:22: fatal error: iom8535v.h: No such file or directory
compilation terminated.
stdout
Standard output is empty