Change Slave sends '0' during convert prozess on all DS18B20
[owSlave2.git] / DS18B20_BMP280 / DS18B20_BMP280.c
1
2 // Copyright (c) 2015, Tobias Mueller tm(at)tm3d.de
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 //  * Redistributions of source code must retain the above copyright
10 //    notice, this list of conditions and the following disclaimer.
11 //  * Redistributions in binary form must reproduce the above copyright
12 //    notice, this list of conditions and the following disclaimer in the
13 //    documentation and/or other materials provided with the
14 //    distribution.
15 //  * All advertising materials mentioning features or use of this
16 //    software must display the following acknowledgement: This product
17 //    includes software developed by tm3d.de and its contributors.
18 //  * Neither the name of tm3d.de nor the names of its contributors may
19 //    be used to endorse or promote products derived from this software
20 //    without specific prior written permission.
21 //
22 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34 #define F_CPU 8000000UL
35 #include <avr/io.h>
36 #include <avr/interrupt.h>
37 #include <util/delay.h>
38 #include <avr/wdt.h>
39 #include <avr/sleep.h>
40 #include <avr/pgmspace.h>
41 #include "../common/I2C/USI_TWI_Master.h"
42 #include "../common/I2C/BMP280.h"
43
44
45 extern void OWINIT();
46 extern void EXTERN_SLEEP();
47
48
49
50
51 uint8_t owid[8]={0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x40};/**/
52 uint8_t config_info[16]={0x02,0x03, 0x00,0x00, 0x00,0x00, 0x00,0x00, 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
53         
54 #if (owid>128) 
55 #error "Variable not correct"
56 #endif
57
58 extern uint8_t mode;
59 extern uint8_t gcontrol;
60 extern uint8_t reset_indicator;
61 extern uint8_t alarmflag;
62
63
64
65
66 typedef union {
67         volatile uint8_t bytes[8];
68         struct {
69                 uint16_t temp;  //0
70                 uint8_t TH;  //2
71                 uint8_t TL;  //3
72                 uint8_t config;  //4
73                 uint8_t rrFF; //5
74                 uint8_t rr00; //6
75                 uint8_t rr10; //7
76         };
77 } pack_t;
78 volatile pack_t pack;
79
80
81
82
83
84
85
86
87 int main(void){
88     PRR|=(1<<PRADC);  // adc for save Power
89         pack.temp=0x0550;
90         pack.config=0x7F;
91         pack.TH=75;
92         pack.TL=70;
93         pack.rrFF=0xFF;
94         pack.rr00=0;
95         pack.rr10=0x10;
96         PORTA=0xFF;
97         PORTB=0xFF;
98         OWINIT();
99
100         MCUCR &=~(1<<PUD); //All Pins Pullup...
101         MCUCR |=(1<<BODS);
102
103         MCUSR=0;
104         USI_TWI_Master_Initialise();
105         bmp280Init();
106         //DDRB|=(1<<PINB1);
107         gcontrol=1;
108         sei();
109     while(1)   {
110         
111                 if (gcontrol) {
112                         //PORTB|=(1<<PINB1); //Dauer 5.4ms
113                         uint32_t P;
114                         int32_t t;
115                         bmp280ConvertInt(&t,&P,1);
116                         P=P-70000;
117                         P=P/20;
118                         uint16_t w=P;
119                         uint8_t t8=w>>4;
120                         uint8_t af=0;
121                         if (t8>pack.TH) af=1;
122                         if (t8<=pack.TL) af=1; 
123                         cli();
124                         pack.temp=w;
125                         //pack.temp++;
126                         alarmflag=af;
127                         sei();                  
128                         EXTERN_SLEEP();
129                         //PORTB&=~(1<<PINB1);
130                 }
131
132                 
133 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)
134                         if (((TIMSK & (1<<TOIE0))==0)&& (mode==0))
135 #endif                  
136 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) ||defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)
137                         if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))
138 #endif
139                           {
140
141                         MCUCR|=(1<<SE)|(1<<SM1);
142                         MCUCR&=~(1<<ISC01);
143                 } else {
144                         MCUCR|=(1<<SE);
145                         MCUCR&=~(1<<SM1);
146                 }
147                 //MCUCR&=~(1<<ISC01);
148                 asm("SLEEP");
149    }
150
151
152 }