main.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #include <avr/io.h>
  2. #include <util/delay.h>
  3. #include <avr/pgmspace.h>
  4. #include "main.h"
  5. #include "1wire.h"
  6. #include "gtext.h"
  7. #include "sed1335.h"
  8. #include "ds18b20.h"
  9. #include "display.h"
  10. volatile struct timers timers;
  11. unsigned char getkey(void){
  12. static unsigned char old;
  13. unsigned char key;
  14. DDRA = 0;
  15. PORTA = 0xff;
  16. DDRC |= _BV(PC7);
  17. _delay_ms(2);
  18. key = ~PINA;
  19. DDRC &= ~_BV(PC7);
  20. PORTA = 0;
  21. DDRA = 0xff;
  22. if(key == old) return 0;
  23. old = key;
  24. return key;
  25. }
  26. void main(void){
  27. unsigned char i=0;
  28. /* unsigned char state = STATE_DEFAULT;
  29. unsigned char oldstate = state;*/
  30. OCR2A = 250; // 16ms
  31. TCCR2A = _BV(WGM21);
  32. TCCR2B = _BV(CS22) | _BV(CS21) | _BV(CS20);
  33. TIMSK2 = _BV(OCIE2A);
  34. sei();
  35. PORTC &= _BV(PC7);
  36. DDRB |= _BV(PB2);
  37. GLCD_Initialize();
  38. GLCD_Clear();
  39. for(;;){
  40. _delay_ms(100);
  41. if(i = getkey()){
  42. cursor(0,0);
  43. disp_num(i);
  44. clearline();
  45. }
  46. /* gettemp();
  47. control();
  48. state = state_processors[state](state);
  49. if(oldstate != state){
  50. GLCD_Clear();
  51. settings_update = 1;
  52. }
  53. oldstate = state;
  54. send_595(&led, 1);*/
  55. }
  56. }
  57. ISR(TIMER2_COMPA_vect){ // 16ms
  58. unsigned int *volatile ctimer;
  59. unsigned char i;
  60. for(i=0; i<sizeof(timers)/sizeof(unsigned int); i++){
  61. ctimer = ((unsigned int *)&timers) + i;
  62. if(*ctimer)
  63. (*ctimer)--;
  64. }
  65. }