78bb7d640a9da4611e54ebdd8ad36ecd8a95124b
[owSlave2.git] / DS18B20_BMP280 / DS18B20_BMP280.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/BMP280.h"\r
42 \r
43 \r
44 extern void OWINIT();\r
45 extern void EXTERN_SLEEP();\r
46 \r
47 \r
48 \r
49 \r
50 uint8_t owid[8]={0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x40};/**/\r
51 uint8_t config_info[26]={0x02,0x03, 0x00,0x00, 0x00,0x00, 0x00,0x00, 0x02,14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
52         \r
53 #if (owid>128) \r
54 #error "Variable not correct"\r
55 #endif\r
56 \r
57 extern uint8_t mode;\r
58 extern uint8_t gcontrol;\r
59 extern uint8_t reset_indicator;\r
60 extern uint8_t alarmflag;\r
61 \r
62 \r
63 \r
64 \r
65 typedef union {\r
66         volatile uint8_t bytes[8];\r
67         struct {\r
68                 uint16_t temp;  //0\r
69                 uint8_t TH;  //2\r
70                 uint8_t TL;  //3\r
71                 uint8_t config;  //4\r
72                 uint8_t rrFF; //5\r
73                 uint8_t rr00; //6\r
74                 uint8_t rr10; //7\r
75         };\r
76 } pack_t;\r
77 volatile pack_t pack;\r
78 \r
79 \r
80 \r
81 \r
82 \r
83 \r
84 \r
85 \r
86 int main(void){\r
87     PRR|=(1<<PRADC);  // adc for save Power\r
88         pack.temp=0x0550;\r
89         pack.config=0x7F;\r
90         pack.TH=75;\r
91         pack.TL=70;\r
92         pack.rrFF=0xFF;\r
93         pack.rr00=0;\r
94         pack.rr10=0x10;\r
95         PORTA=0xFF;\r
96         PORTB=0xFF;\r
97         OWINIT();\r
98 \r
99         MCUCR &=~(1<<PUD); //All Pins Pullup...\r
100         MCUCR |=(1<<BODS);\r
101 \r
102         MCUSR=0;\r
103         USI_TWI_Master_Initialise();\r
104         bmp280Init();\r
105         //DDRB|=(1<<PINB1);\r
106         gcontrol=1;\r
107         sei();\r
108     while(1)   {\r
109         \r
110                 if (gcontrol) {\r
111                         //PORTB|=(1<<PINB1); //Dauer 5.4ms\r
112                         uint32_t P;\r
113                         int32_t t;\r
114                         bmp280ConvertInt(&t,&P,1);\r
115                         P=P-70000;\r
116                         P=P/20;\r
117                         uint16_t w=P;\r
118                         uint8_t t8=w>>4;\r
119                         uint8_t af=0;\r
120                         if (t8>pack.TH) af=1;\r
121                         if (t8<=pack.TL) af=1; \r
122                         cli();\r
123                         pack.temp=w;\r
124                         //pack.temp++;\r
125                         alarmflag=af;\r
126                         sei();                  \r
127                         EXTERN_SLEEP();\r
128                         //PORTB&=~(1<<PINB1);\r
129                 }\r
130 \r
131                 \r
132 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)\r
133                         if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))\r
134 #endif                  \r
135 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
136                         if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))\r
137 #endif\r
138                           {\r
139 \r
140                         MCUCR|=(1<<SE)|(1<<SM1);\r
141                         MCUCR&=~(1<<ISC01);\r
142                 } else {\r
143                         MCUCR|=(1<<SE);\r
144                         MCUCR&=~(1<<SM1);\r
145                 }\r
146                 //MCUCR&=~(1<<ISC01);\r
147                 asm("SLEEP");\r
148    }\r
149 \r
150 \r
151 }