CRC16 correctur by get Info (0x85)
[owSlave2.git] / DS2423_BMP280 / DS2423_BMP280.c
1 \r
2 // Copyright (c) 2015, Tobias Mueller tm(at)tm3d.de\r
3 // All rights reserved.\r
4 //\r
5 // Redistribution and use in source and binary forms, with or without\r
6 // modification, are permitted provided that the following conditions are\r
7 // met:\r
8 //\r
9 //  * Redistributions of source code must retain the above copyright\r
10 //    notice, this list of conditions and the following disclaimer.\r
11 //  * Redistributions in binary form must reproduce the above copyright\r
12 //    notice, this list of conditions and the following disclaimer in the\r
13 //    documentation and/or other materials provided with the\r
14 //    distribution.\r
15 //  * All advertising materials mentioning features or use of this\r
16 //    software must display the following acknowledgement: This product\r
17 //    includes software developed by tm3d.de and its contributors.\r
18 //  * Neither the name of tm3d.de nor the names of its contributors may\r
19 //    be used to endorse or promote products derived from this software\r
20 //    without specific prior written permission.\r
21 //\r
22 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
23 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
24 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
25 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
26 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
27 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
28 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
29 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
30 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
32 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
33 \r
34 #define _4_COUNTERS_\r
35 #define _EEPROM_SAVE_\r
36 //#define _CPULLUP_\r
37 \r
38 #define F_CPU 8000000UL\r
39 #include <avr/io.h>\r
40 #include <avr/interrupt.h>\r
41 #include <util/delay.h>\r
42 #include <avr/wdt.h>\r
43 #include <avr/sleep.h>\r
44 #include "../common/I2C/USI_TWI_Master.h"\r
45 #include "../common/I2C/BMP280.h"\r
46 \r
47 \r
48 \r
49 extern void OWINIT();\r
50 extern void EXTERN_SLEEP();\r
51 \r
52 uint8_t owid[8]={0x1D, 0xA2, 0xD9, 0x84, 0x00, 0x26, 0x02, 0x5C};/**/\r
53 uint8_t config_info[18]={0x09,0x0D,0x09,0x0D,0x01,0x08,0x02,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
54 \r
55         \r
56 \r
57 extern volatile uint8_t mode;\r
58 extern uint8_t gcontrol;\r
59 extern uint8_t reset_indicator;\r
60 \r
61 \r
62 volatile uint8_t wdcounter;\r
63 \r
64 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
65 ISR(WATCHDOG_vect) {\r
66 #else\r
67 ISR(WDT_vect) {\r
68 #endif \r
69         wdcounter++;\r
70         //if (reset_indicator==1) reset_indicator++;\r
71         //else if (reset_indicator==2) mode=0;\r
72 }\r
73 \r
74 \r
75 typedef union {\r
76         volatile uint8_t bytes[45];\r
77         struct {\r
78                 uint16_t addr;\r
79                 uint8_t status;\r
80                 uint8_t scratch[32];//3\r
81                 uint32_t counter;  //35\r
82                 uint32_t zero;   //39\r
83                 uint16_t crc;  //43\r
84         };\r
85 } counterpack_t;\r
86 counterpack_t pack;\r
87 \r
88 volatile uint8_t lastcps;\r
89 typedef union {\r
90         uint32_t c32[4];\r
91         uint8_t c8[16];\r
92 } counters_t;\r
93 \r
94 volatile counters_t counters;\r
95 \r
96 volatile uint8_t istat;\r
97 \r
98 \r
99 volatile uint8_t wdcounter;\r
100 \r
101 int main(void){\r
102      PRR|=(1<<PRADC);  // adc for save Power\r
103      PORTA=0xFF;\r
104      PORTB=0xFF-(1<<PORTB0); //Schalter kann gegen Masse sein und zieht dann immer Strom\r
105      DDRB|=(1<<PORTB0); //Als Ausgang und 0\r
106      \r
107      \r
108      OWINIT();\r
109 \r
110      ACSR|=(1<<ACD);  //Disable Comparator\r
111      ADCSRB|=(1<<ACME); //Disable Analog multiplexer\r
112      MCUCR &=~(1<<PUD); //All Pins Pullup...\r
113      MCUCR |=(1<<BODS);\r
114 \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          \r
121         pack.zero=0;\r
122         counters.c32[0]=0;\r
123         counters.c32[2]=0;\r
124         counters.c32[1]=0;\r
125         counters.c32[3]=0;\r
126         ACSR|=(1<<ACD);  //Disable Comparator\r
127         ADCSRB|=(1<<ACME); //Disable Analog multiplexer\r
128         MCUCR &=~(1<<PUD); //All Pins Pullup...\r
129         \r
130         USI_TWI_Master_Initialise();\r
131         bmp280Init();   \r
132 \r
133         uint32_t P;\r
134         int32_t t;\r
135         bmp280ConvertInt(&t,&P,1);\r
136         _delay_ms(200);\r
137         bmp280ConvertInt(&t,&P,1);\r
138         counters.c32[3]=P;\r
139         counters.c32[2]=t;\r
140         wdcounter=100;\r
141         sei();\r
142     while(1)   {\r
143                 \r
144                 if (wdcounter>2) {\r
145                         bmp280ConvertInt(&t,&P,1);\r
146                         while (mode!=0) ;\r
147                         cli();\r
148                         counters.c32[3]=P;\r
149                         counters.c32[2]=t;\r
150                         sei();\r
151                         \r
152                         wdcounter=0;\r
153                 }\r
154 \r
155                 if (((TIMSK0 & (1<<TOIE0))==0)&& (mode==0))       {\r
156                         MCUCR|=(1<<SE)|(1<<SM1);\r
157                         MCUCR&=~(1<<ISC01);\r
158                 } else {\r
159                         MCUCR|=(1<<SE);\r
160                         MCUCR&=~(1<<SM1);\r
161                 }\r
162                 asm("SLEEP");\r
163    }\r
164 }