b46797cceb74c6ad8fc2d5989da6ab537da9df94
[owSlave2.git] / DS18B20_CDM7160 / DS18B20_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 #define F_CPU 8000000UL\r
34 #include <avr/io.h>\r
35 #include <avr/interrupt.h>\r
36 #include <util/delay.h>\r
37 #include <avr/wdt.h>\r
38 #include <avr/sleep.h>\r
39 #include <avr/pgmspace.h>\r
40 #include "../common/I2C/USI_TWI_Master.h"\r
41 #include "../common/I2C/CDM7160.h"\r
42 \r
43 \r
44 extern void OWINIT();\r
45 \r
46 extern void EXTERN_SLEEP();\r
47 \r
48 \r
49 uint8_t owid[8]={0x28, 0xA2, 0xD9, 0x84, 0x00, 0x16, 0x77, 0x6B};/**/\r
50 uint8_t config_info[26]={10,13, 0x00,0x00, 0x00,0x00, 0x00,0x00, 0x02,16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
51         \r
52 #if (owid>128) \r
53 #error "Variable not correct"\r
54 #endif\r
55 \r
56 extern uint8_t mode;\r
57 extern uint8_t gcontrol;\r
58 extern uint8_t reset_indicator;\r
59 extern uint8_t alarmflag;\r
60 volatile uint8_t wdcounter=5;\r
61 \r
62 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
63 ISR(WATCHDOG_vect) {\r
64 #else\r
65 ISR(WDT_vect) {\r
66 #endif \r
67         wdcounter++;\r
68         if (reset_indicator==1) reset_indicator++;\r
69         else if (reset_indicator==2) mode=0;\r
70 \r
71 \r
72 }\r
73 \r
74 uint8_t max_adr=0;\r
75 \r
76 typedef union {\r
77         volatile uint8_t bytes[8];\r
78         struct {\r
79                 uint16_t temp;  //0\r
80                 uint8_t TH;  //2\r
81                 uint8_t TL;  //3\r
82                 uint8_t config;  //4\r
83                 uint8_t rrFF; //5\r
84                 uint8_t rr00; //6\r
85                 uint8_t rr10; //7\r
86         };\r
87 } pack_t;\r
88 volatile pack_t pack;\r
89 \r
90 \r
91 \r
92 \r
93 \r
94 \r
95 \r
96 \r
97 int main(void){\r
98     PRR|=(1<<PRADC);  // adc for save Power\r
99         pack.temp=0x0550;\r
100         pack.config=0x7F;\r
101         pack.TH=75;\r
102         pack.TL=70;\r
103         pack.rrFF=0xFF;\r
104         pack.rr00=0;\r
105         pack.rr10=0x10;\r
106         PORTA=0xFF;\r
107         PORTB=0xFF;\r
108         OWINIT();\r
109         DDRB|=(1<<PINB1);\r
110         PORTB&=~(1<<PINB1);\r
111         PORTA&=~(1<<PINA0);\r
112 \r
113         MCUCR &=~(1<<PUD); //All Pins Pullup...\r
114         MCUCR |=(1<<BODS);\r
115 \r
116         WDTCSR |= ((1<<WDCE) );   // Enable the WD Change Bit//| (1<<WDE)\r
117         WDTCSR |=   (1<<WDIE) |              // Enable WDT Interrupt\r
118         (1<<WDP3) | (1<<WDP0);   // Set Timeout to ~8 seconds\r
119 \r
120         MCUSR=0;\r
121         USI_TWI_Master_Initialise();\r
122         //CDM7160softReset();\r
123         //_delay_ms(100);\r
124 \r
125         CDM7160setMode(0); //Power Down Mode\r
126         CDM7160setAvCount(0x3F);\r
127         CDM7160setFMode(1);\r
128         pack.temp=CDM7160getCO2();\r
129         CDM7160setMode(1);\r
130         gcontrol=1;\r
131         //DDRB|=(1<<PINB1);\r
132         //while (1)                     {volatile double l=CDM7160getCO2();}\r
133 \r
134         sei();\r
135         #define PBR 1\r
136     while(1)   {\r
137         \r
138                 if (gcontrol) {\r
139                         if (wdcounter<PBR)      wdcounter=PBR;\r
140                         gcontrol=0;\r
141                 }\r
142                 if ( wdcounter==PBR) {\r
143                         //CDM7160setMode(1);\r
144                 }\r
145                 if (wdcounter>(PBR+1)) {\r
146                         wdcounter=0;\r
147                         //PORTB|=(1<<PINB1); //Dauer 2.3ms\r
148                         volatile uint16_t l=CDM7160getCO2();    \r
149                         uint16_t w=l;\r
150                         uint8_t t8=w>>4;\r
151                         uint8_t af=0;\r
152                         if (t8>pack.TH) af=1;\r
153                         if (t8<=pack.TL) af=1; \r
154                         cli();\r
155                         pack.temp=w;\r
156                         //pack.temp++;\r
157                         alarmflag=af;\r
158                         sei();  \r
159                         //CDM7160setMode(0);\r
160                         EXTERN_SLEEP();         \r
161                         //PORTB&=~(1<<PINB1);\r
162                                         \r
163                 }\r
164 \r
165                 \r
166 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)\r
167                         if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))\r
168 #endif                  \r
169 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
170                         if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))\r
171 #endif\r
172                           {\r
173 \r
174                         MCUCR|=(1<<SE)|(1<<SM1);\r
175                         MCUCR&=~(1<<ISC01);\r
176                 } else {\r
177                         MCUCR|=(1<<SE);\r
178                         MCUCR&=~(1<<SM1);\r
179                 }\r
180                 //MCUCR&=~(1<<ISC01);\r
181                 asm("SLEEP");\r
182    }\r
183 \r
184 \r
185 }