- New Device compinations
[owSlave2.git] / DS2423_BMP280 / DS2423_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 _4_COUNTERS_
35 #define _EEPROM_SAVE_
36 //#define _CPULLUP_
37
38 #define F_CPU 8000000UL
39 #include <avr/io.h>
40 #include <avr/interrupt.h>
41 #include <util/delay.h>
42 #include <avr/wdt.h>
43 #include <avr/sleep.h>
44 #include "../common/I2C/USI_TWI_Master.h"
45 #include "../common/I2C/BMP280.h"
46
47
48
49 extern void OWINIT();
50 extern void EXTERN_SLEEP();
51
52 uint8_t owid[8]={0x1D, 0xA2, 0xD9, 0x84, 0x00, 0x26, 0x02, 0x5C};/**/
53 uint8_t config_info[16]={0x09,0x0D,0x09,0x0D,0x01,0x08,0x02,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
54
55         
56
57 extern volatile uint8_t mode;
58 extern uint8_t gcontrol;
59 extern uint8_t reset_indicator;
60
61
62 volatile uint8_t wdcounter;
63
64 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)
65 ISR(WATCHDOG_vect) {
66 #else
67 ISR(WDT_vect) {
68 #endif 
69         wdcounter++;
70         //if (reset_indicator==1) reset_indicator++;
71         //else if (reset_indicator==2) mode=0;
72 }
73
74
75 typedef union {
76         volatile uint8_t bytes[45];
77         struct {
78                 uint16_t addr;
79                 uint8_t status;
80                 uint8_t scratch[32];//3
81                 uint32_t counter;  //35
82                 uint32_t zero;   //39
83                 uint16_t crc;  //43
84         };
85 } counterpack_t;
86 counterpack_t pack;
87
88 volatile uint8_t lastcps;
89 typedef union {
90         uint32_t c32[4];
91         uint8_t c8[16];
92 } counters_t;
93
94 volatile counters_t counters;
95
96 volatile uint8_t istat;
97
98
99 volatile uint8_t wdcounter;
100
101 int main(void){
102      PRR|=(1<<PRADC);  // adc for save Power
103      PORTA=0xFF;
104      PORTB=0xFF-(1<<PORTB0); //Schalter kann gegen Masse sein und zieht dann immer Strom
105      DDRB|=(1<<PORTB0); //Als Ausgang und 0
106      
107      
108      OWINIT();
109
110      ACSR|=(1<<ACD);  //Disable Comparator
111      ADCSRB|=(1<<ACME); //Disable Analog multiplexer
112      MCUCR &=~(1<<PUD); //All Pins Pullup...
113      MCUCR |=(1<<BODS);
114
115      
116      WDTCSR |= ((1<<WDCE) );   // Enable the WD Change Bit//| (1<<WDE)
117      WDTCSR |=   (1<<WDIE) |              // Enable WDT Interrupt
118      (1<<WDP3) | (1<<WDP0);   // Set Timeout to ~8 seconds
119          
120          
121         pack.zero=0;
122         counters.c32[0]=0;
123         counters.c32[2]=0;
124         counters.c32[1]=0;
125         counters.c32[3]=0;
126         ACSR|=(1<<ACD);  //Disable Comparator
127         ADCSRB|=(1<<ACME); //Disable Analog multiplexer
128         MCUCR &=~(1<<PUD); //All Pins Pullup...
129         
130         USI_TWI_Master_Initialise();
131         bmp280Init();   
132
133         uint32_t P;
134         int32_t t;
135         bmp280ConvertInt(&t,&P,1);
136         _delay_ms(200);
137         bmp280ConvertInt(&t,&P,1);
138         counters.c32[3]=P;
139         counters.c32[2]=t;
140         wdcounter=100;
141         sei();
142     while(1)   {
143                 
144                 if (wdcounter>2) {
145                         bmp280ConvertInt(&t,&P,1);
146                         while (mode!=0) ;
147                         cli();
148                         counters.c32[3]=P;
149                         counters.c32[2]=t;
150                         sei();
151                         
152                         wdcounter=0;
153                 }
154
155                 if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))       {
156                         MCUCR|=(1<<SE)|(1<<SM1);
157                         MCUCR&=~(1<<ISC01);
158                 } else {
159                         MCUCR|=(1<<SE);
160                         MCUCR&=~(1<<SM1);
161                 }
162                 asm("SLEEP");
163    }
164 }