Changed the Makefile for gmake.
[kokare.git] / kokare.c
index 8d151df..f7033d8 100644 (file)
--- a/kokare.c
+++ b/kokare.c
@@ -1,5 +1,6 @@
 #include <avr/io.h>
 #include <avr/interrupt.h>
+#include <avr/eeprom.h>
 #include <inttypes.h>
 #include <math.h>
 
@@ -135,10 +136,10 @@ unsigned char bindisp(unsigned char num)
     return(ret);
 }
 
-void display(char num)
+void display(char num, char d0, char d1)
 {
-    dsp[0] = font[(num / 10) % 10];
-    dsp[1] = font[num % 10];
+    dsp[0] = font[(num / 10) % 10] | (d0?SEGP:0);
+    dsp[1] = font[num % 10] | (d1?SEGP:0);
 }
 
 void disphex(unsigned char num)
@@ -147,36 +148,18 @@ void disphex(unsigned char num)
     dsp[1] = font[num & 0x0f];
 }
 
-/*
- * This version is used outside interrupts.
- * It spins until no overflow has happened.
- */
 unsigned long getticks(void)
 {
     uint16_t v;
     unsigned long r;
     
-    do {
-       v = oticks;
-       r = TCNT1 + (((unsigned long)oticks) << 16);
-    } while(v != oticks);
-    return(r);
-}
-
-/*
- * This version is used in interrupts
- */
-unsigned long getticks2(void)
-{
-    uint16_t v;
-    unsigned long r;
-    
+    cli();
     v = TCNT1;
     r = v + (((unsigned long)oticks) << 16);
     if((TIFR1 & 0x01) && !(v & 0x8000))
-       return(r + 0x10000);
-    else
-       return(r);
+       r += 0x10000;
+    sei();
+    return(r);
 }
 
 void ledcycle(void)
@@ -245,16 +228,23 @@ void convcycle(void)
      * Theoretically:
      *  t = RC * ln(2) => R = t / (C * ln(2))
      *  R = A * exp(B / T) => T = B / ln(R / A)
-     *  T = B / ln(R / (A * C * ln(2)))
-     * In the following: 
+     *  T = B / ln(t / (A * C * ln(2)))
+     * Where:
+     *  t = The measured time (s)
+     *  R = The resistance of the thermistor (Ohm)
+     *  C = The capacitance of the capacitor (F)
+     *  T = The temperature (K)
+     *  A, B are the thermistor-specific constants
+     *
+     * In the following code:
      *  a = ttimea as float
-     *  C = 1e6 / (A * C * ln(2))
+     *  C = 1e-6 / (A * C * ln(2))
      *  ra = a * C
      *  l = ln(ra)
      *  t = B / l
      * Note, temperature is in Kelvin
      */
-#define C 9.792934
+#define C 10.819112      /* A is 0.1333469 */
 #define B 4020.0
     if(state == 0) {
        if((mnow - last > 200000) && tavgok) {
@@ -281,15 +271,24 @@ void convcycle(void)
 
 int main(void)
 {
-    int state, cur, run;
+    int state, cur, run, rstate, delta;
     unsigned long utime;
     
-    state = 0;
-    cur = 100;
+    state = 1;
+    cur = eeprom_read_byte(0);
+    if(cur < 0)
+       cur = 0;
+    if(cur > 100)
+       cur = 100;
     run = 0;
+    rstate = 0;
+    utime = getticks();
     init();
     sei();
-    display(0);
+    if(cur < 100)
+       display(cur, 0, 0);
+    else
+       dsp[0] = dsp[1] = SEGG;
 
     while(1) {
        mnow = getticks();
@@ -306,9 +305,10 @@ int main(void)
            if(ktok) {
                ktok = 0;
                if((tempk >= 273) && (tempk <= 372)) {
-                   display(tempk - 273);
+                   display(tempk - 273, 0, run);
                } else {
-                   dsp[0] = dsp[1] = SEGG;
+                   dsp[0] = SEGG;
+                   dsp[1] = SEGG | (run?SEGP:0);
                }
            }
            if(pval != 0)
@@ -320,10 +320,6 @@ int main(void)
                else
                    run = !run;
            }
-           if(run)
-               dsp[1] |= SEGP;
-           else
-               dsp[1] &= ~SEGP;
        } else if(state == 1) {
            /* Temp setting */
            if(pval != 0) {
@@ -333,27 +329,28 @@ int main(void)
                    cur = 0;
                if(cur > 100)
                    cur = 100;
-               if(cur < 100)
-                   display(cur);
-               else
-                   dsp[0] = dsp[1] = SEGG;
                utime = mnow;
            }
-           if(mnow - utime > 1000000)
+           if(mnow - utime > 2000000) {
                state = 0;
+               eeprom_write_byte(0, cur);
+           }
            if(sstate == 2) {
                run = !run;
                sstate = 0;
            }
+           if(cur < 100) {
+               display(cur, 0, run);
+           } else {
+               dsp[0] = SEGG;
+               dsp[1] = SEGG | (run?SEGP:0);
+           }
        } else if(state == 2) {
            /* Display raw temp time reading */
            if(ttimea < 20000) {
-               display((ttimea / 100) % 100);
-               dsp[0] |= SEGP;
-               if(ttimea >= 10000)
-                   dsp[1] |= SEGP;
+               display((ttimea / 100) % 100, 1, ttimea >= 10000);
            } else {
-               display(ttimea / 1000);
+               display(ttimea / 1000, 0, 0);
            }
            if(sstate == 2) {
                state = 0;
@@ -364,22 +361,26 @@ int main(void)
         * Set Triac to match temperature
         */
        if(run) {
-           if(tempk - 273 < cur) {
-               tron = 1;
-               if(cur - (tempk - 273) > 5) {
-                   /* For some reason, the Triac currently doesn't
-                    * trigger on one of the AC half-cycles below 0.7
-                    * ms. */
-                   trdelay = 7;
-               } else if(cur - (tempk - 273) >= 3) {
-                   trdelay = 20;
-               } else if(cur - (tempk - 273) >= 2) {
-                   trdelay = 40;
+           delta = cur - (tempk - 273);
+           if(rstate == 0) {
+               if(delta > 0) {
+                   tron = 1;
+                   if(delta > 8) {
+                       /* For some reason, the Triac currently doesn't
+                        * trigger on one of the AC half-cycles below 0.7
+                        * ms. */
+                       trdelay = 7;
+                   } else {
+                       trdelay = 75 - (delta * 5);
+                   }
                } else {
-                   trdelay = 70;
+                   tron = 0;
+                   rstate = 1;
                }
-           } else {
+           } else if(rstate == 1) {
                tron = 0;
+               if(delta >= 2)
+                   rstate = 0;
            }
        } else {
            tron = 0;
@@ -475,7 +476,7 @@ ISR(SIG_INTERRUPT1)
 {
     unsigned long now;
     
-    now = getticks2();
+    now = getticks();
     if(tstate == 0) {
        tstate = 1;
        if(tlock != 2)