Many changes from 2018
[owSlave2.git] / DS2438_CDM7160 / DS2438_CDM7160.c
1 // Copyright (c) 2017, Tobias Mueller tm(at)tm3d.de\r
2 // All rights reserved.\r
3 //\r
4 // Redistribution and use in source and binary forms, with or without\r
5 // modification, are permitted provided that the following conditions are\r
6 // met:\r
7 //\r
8 //  * Redistributions of source code must retain the above copyright\r
9 //    notice, this list of conditions and the following disclaimer.\r
10 //  * Redistributions in binary form must reproduce the above copyright\r
11 //    notice, this list of conditions and the following disclaimer in the\r
12 //    documentation and/or other materials provided with the\r
13 //    distribution.\r
14 //  * All advertising materials mentioning features or use of this\r
15 //    software must display the following acknowledgement: This product\r
16 //    includes software developed by tm3d.de and its contributors.\r
17 //  * Neither the name of tm3d.de nor the names of its contributors may\r
18 //    be used to endorse or promote products derived from this software\r
19 //    without specific prior written permission.\r
20 //\r
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
32 \r
33 \r
34 #define F_CPU 8000000UL\r
35 #include <avr/io.h>\r
36 #include <avr/interrupt.h>\r
37 #include <util/delay.h>\r
38 #include <avr/wdt.h>\r
39 #include <avr/sleep.h>\r
40 #include <avr/pgmspace.h>\r
41 #include "../common/I2C/USI_TWI_Master.h"\r
42 #include "../common/I2C/CDM7160.h"\r
43 \r
44 extern void OWINIT();\r
45 extern void EXTERN_SLEEP();\r
46 \r
47 uint8_t owid[8]={0x26, 0xA2, 0xD9, 0x88, 0x00, 0x00, 0x05, 0x04};/**/\r
48 uint8_t config_info[26]={10,13, 0x05,0x08, 10,22, 0x00,0x00, 0x02,0x07,0x00,0x07,0x00,0x00,0x00,0x00, 0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
49         \r
50 \r
51 extern uint8_t mode;\r
52 extern uint8_t gcontrol;\r
53 extern uint8_t reset_indicator;\r
54 extern uint8_t alarmflag;\r
55 \r
56 volatile uint8_t wdcounter=5;\r
57 \r
58 \r
59 typedef union {\r
60 \r
61         volatile uint8_t bytes[64];\r
62         struct {\r
63                 uint8_t status;  //1\r
64                 int16_t temp;  //2\r
65                 uint16_t voltage;  //4\r
66                 uint16_t current;  //6\r
67                 uint8_t threshold; //8\r
68                 \r
69                 uint8_t page1[8]; //9\r
70                 uint8_t page2[8]; //17\r
71                 uint8_t page3[8]; //25\r
72                 uint8_t page4[8];  //33\r
73                 uint8_t page5[8];  //41\r
74                 uint8_t page6[8];  //49\r
75                 uint8_t page7[8];  //57\r
76                 //uint8_t crc;  //65\r
77         };\r
78 } pack_t;\r
79 volatile pack_t pack;\r
80 \r
81 \r
82 \r
83 volatile int16_t am2302_temp;\r
84 volatile uint16_t am2302_hum;\r
85 \r
86 uint8_t userRegister[1];\r
87 double temperatureC,humidityRH;\r
88 volatile double l;\r
89 \r
90 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
91 ISR(WATCHDOG_vect) {\r
92 #else\r
93 ISR(WDT_vect) {\r
94 #endif \r
95         wdcounter++;\r
96         if (reset_indicator==1) reset_indicator++;\r
97         else if (reset_indicator==2) mode=0;\r
98 \r
99 \r
100 }\r
101 \r
102 int testSW(void) {\r
103         uint8_t r;\r
104         DDRB&=~(1<<PORTB0);  //Eingang\r
105          __asm__ __volatile__ ("nop"); \r
106          PORTB|=(1<<PORTB0); //Pullup\r
107          __asm__ __volatile__ ("nop"); \r
108          __asm__ __volatile__ ("nop"); \r
109          __asm__ __volatile__ ("nop"); \r
110          __asm__ __volatile__ ("nop"); \r
111          __asm__ __volatile__ ("nop"); \r
112          r=PINB&(1<<PORTB0);\r
113          __asm__ __volatile__ ("nop"); \r
114          PORTB&=~(1<<PORTB0); \r
115          __asm__ __volatile__ ("nop"); \r
116         DDRB|=(1<<PORTB0);  //Eingang\r
117         return (r==0);\r
118          \r
119          \r
120 }\r
121 \r
122 int main(void){\r
123      PRR|=(1<<PRADC);  // adc for save Power\r
124         PORTA=0xFF;\r
125         PORTB=0xFF-(1<<PORTB0); //Schalter kann gegen Masse sein und zieht dann immer Strom\r
126         DDRB|=(1<<PORTB0); //Als Ausgang und 0\r
127         \r
128         \r
129         OWINIT();\r
130 \r
131         ACSR|=(1<<ACD);  //Disable Comparator\r
132         ADCSRB|=(1<<ACME); //Disable Analog multiplexer\r
133         MCUCR &=~(1<<PUD); //All Pins Pullup...\r
134         MCUCR |=(1<<BODS);\r
135 \r
136         \r
137         WDTCSR |= ((1<<WDCE) );   // Enable the WD Change Bit//| (1<<WDE)\r
138         WDTCSR |=   (1<<WDIE) |              // Enable WDT Interrupt\r
139         (1<<WDP3) | (1<<WDP0);   // Set Timeout to ~8 seconds\r
140 \r
141     uint8_t i;\r
142     for(i=0;i<64;i++) pack.bytes[i]=0;\r
143         pack.page3[0]=0xF4;\r
144         MCUSR=0;\r
145         USI_TWI_Master_Initialise();\r
146         CDM7160softReset();\r
147         _delay_ms(200);\r
148 \r
149         CDM7160setMode(0); //Power Down Mode\r
150         _delay_ms(200);\r
151         CDM7160setAvCount(0x3F);\r
152         CDM7160setFMode(1);\r
153         am2302_temp=CDM7160getCO2();\r
154         CDM7160setMode(1);\r
155         _delay_ms(200); \r
156         sei();\r
157         \r
158          while(1)   { \r
159                  if (gcontrol) {\r
160                          wdcounter=3;\r
161                          gcontrol=0;\r
162                  }\r
163                  if (wdcounter>2) {\r
164                         am2302_temp=CDM7160getCO2();\r
165                         am2302_hum=am2302_temp/10;\r
166                          wdcounter=0;\r
167                  }\r
168 \r
169                 if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))       {\r
170                         MCUCR|=(1<<SE)|(1<<SM1);\r
171                         MCUCR&=~(1<<ISC01);\r
172                 } else {\r
173                         MCUCR|=(1<<SE);\r
174                         MCUCR&=~(1<<SM1);\r
175                 }\r
176                 asm("SLEEP");\r
177         }\r
178 \r
179 \r
180 }