main.c 1.4 KB

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