CRC16 correctur by get Info (0x85)
[owSlave2.git] / DS2423 / DS2423.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 \r
45 \r
46 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)\r
47 \r
48 #if defined(_4_COUNTERS_)&&defined(_EEPROM_SAVE_)\r
49 #error on ATtinyX5 you can not enable four counters and EEPROM save\r
50 #endif\r
51 #endif\r
52 \r
53 \r
54 extern void OWINIT();\r
55 \r
56 uint8_t owid[8]={0x1D, 0xA2, 0xD9, 0x84, 0x00, 0x26, 0x02, 0x5C};/**/\r
57 uint8_t config_info[18]={9,13,9,13,9,13,9,13,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; //+2 for CRC\r
58 \r
59         \r
60 \r
61 extern uint8_t mode;\r
62 extern uint8_t gcontrol;\r
63 extern uint8_t reset_indicator;\r
64 \r
65 \r
66 volatile uint8_t wdcounter;\r
67 \r
68 \r
69 \r
70 \r
71 typedef union {\r
72         volatile uint8_t bytes[45];\r
73         struct {\r
74                 uint16_t addr;\r
75                 uint8_t status;\r
76                 uint8_t scratch[32];//3\r
77                 uint32_t counter;  //35\r
78                 uint32_t zero;   //39\r
79                 uint16_t crc;  //43\r
80         };\r
81 } counterpack_t;\r
82 counterpack_t pack;\r
83 \r
84 volatile uint8_t lastcps;\r
85 typedef union {\r
86         uint32_t c32[4];\r
87         uint8_t c8[16];\r
88 } counters_t;\r
89 \r
90 volatile counters_t counters;\r
91 \r
92 volatile uint8_t istat;\r
93 \r
94 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)\r
95 #define PCINT_VECTOR PCINT0_vect\r
96 #define PIN_REG PINB\r
97 #define PIN_DDR DDRB\r
98 #define PIN_CH2 (1<<PINB3)\r
99 #define PIN_CH3 (1<<PINB4)\r
100 #define PIN_CH0 (1<<PINB0)\r
101 #define PIN_CH1 (1<<PINB1)\r
102 #define PORT_EE PINB\r
103 #define PIN_EE (1<<PINB0)\r
104 #define TEST_TIMER  ((TIMSK & (1<<TOIE0))==0)\r
105 #endif\r
106 \r
107 \r
108 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
109 #define PCINT_VECTOR PCINT0_vect\r
110 #define PIN_REG PINA\r
111 #define PIN_DDR DDRA\r
112 #define PIN_CH2 (1<<PINA4)\r
113 #define PIN_CH3 (1<<PINA5)\r
114 #define PIN_CH0 (1<<PINA6)\r
115 #define PIN_CH1 (1<<PINA7)\r
116 #define PORT_EE PINA //WARNING have to be the same PORT like PINREG because of istat\r
117 #define PIN_EE (1<<PINA0)\r
118 #define TEST_TIMER  ((TIMSK0 & (1<<TOIE0))==0)\r
119 \r
120 #endif\r
121 \r
122 \r
123 ISR(PCINT0_vect) {\r
124         if (((PIN_REG&PIN_CH2)==0)&&((istat&PIN_CH2)==PIN_CH2)) {       counters.c32[2]++;      }\r
125         if (((PIN_REG&PIN_CH3)==0)&&((istat&PIN_CH3)==PIN_CH3)) {       counters.c32[3]++;      }\r
126         #ifdef _4_COUNTERS_\r
127         if (((PIN_REG&PIN_CH0)==0)&&((istat&PIN_CH0)==PIN_CH0)) {       counters.c32[0]++;      }\r
128         if (((PIN_REG&PIN_CH1)==0)&&((istat&PIN_CH1)==PIN_CH1)) {       counters.c32[1]++;      }\r
129         #endif\r
130         istat=PIN_REG;\r
131         #ifdef _EEPROM_SAVE_\r
132         if (((PORT_EE&PIN_EE)==0)&&((istat&PIN_EE)==PIN_EE)) {\r
133                 //PORTB&=~(1<<PINB1);\r
134                 EEARH=0;\r
135 #ifndef _4_COUNTERS_\r
136                 counters.c32[0]++;//Count the save cycles \r
137 #endif\r
138                 for(uint8_t i=0;i<16;i++) {\r
139                         uint8_t addr=i^0x0C;\r
140                         while(EECR & (1<<EEPE));\r
141                         EECR = (0<<EEPM1)|(0<<EEPM0);\r
142                         EEARL = i;\r
143                         EEDR = counters.c8[addr];\r
144                         EECR |= (1<<EEMPE);\r
145                         EECR |= (1<<EEPE);\r
146                 }\r
147                 //PORTB|=(1<<PINB1);\r
148         }\r
149         #endif\r
150 }\r
151 \r
152 \r
153 int main(void){\r
154     PRR|=(1<<PRUSI)|(1<<PRADC);  //Switch off usi and adc for save Power\r
155         OWINIT();\r
156         \r
157         pack.zero=0;\r
158         counters.c32[0]=0;\r
159         counters.c32[2]=0;\r
160         counters.c32[1]=0;\r
161         counters.c32[3]=0;\r
162         ACSR|=(1<<ACD);  //Disable Comparator\r
163         ADCSRB|=(1<<ACME); //Disable Analog multiplexer\r
164         MCUCR &=~(1<<PUD); //All Pins Pullup...\r
165         \r
166                 \r
167 #if  defined(__AVR_ATtiny25__)||defined(__AVR_ATtiny45__)  || defined(__AVR_ATtiny85__)\r
168         PORTB|=(1<<PINB5) //Reset\r
169 #ifdef _CPULLUP_\r
170         |PIN_CH2|PIN_CH3\r
171 #ifdef _4_COUNTERS_     \r
172         |PIN_CH0|PIN_CH1\r
173 #endif  \r
174 #endif  \r
175         ;\r
176         \r
177         GIMSK|=(1<<PCIE);\r
178         \r
179         PCMSK=(1<<PCINT3)|(1<<PCINT4)\r
180 #ifdef _4_COUNTERS_\r
181         |(1<<PCINT0)|(1<<PCINT1)\r
182 #endif\r
183         ;\r
184 #ifdef _EEPROM_SAVE_\r
185         DDRB&=~PIN_EE;\r
186         PCMSK|=(1<<PCINT0);\r
187         PORTB&=~PIN_EE; //Spannungsueberpruefung\r
188 #endif\r
189         DDRB &=~((1<<PINB3)|(1<<PINB4)\r
190 #ifdef _4_COUNTERS_\r
191         |(1<<PINB0)|(1<<PINB1)\r
192 #endif\r
193         );\r
194         istat=PIN_REG;\r
195 #endif\r
196 \r
197 \r
198 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
199 \r
200         PORTB|=0xFF-(1<<PINB2); //Make PullUp an all Pins but not OW_PIN\r
201         PORTA|=0xFF; \r
202         if (PINB&(1<<PINB0)) { \r
203         } else {//SW set, PINB0 =0 no pullup, clear PORT of ios\r
204                 PORTA&=~((1<<PINA4)|(1<<PINA5));\r
205 #ifdef _4_COUNTERS_\r
206                 PORTA&=~((1<<PINA6)|(1<<PINA7));\r
207 #endif\r
208                 PORTB&=~(1<<PINB0);  //Disable Pullup io switch to save Power\r
209                                 \r
210         } \r
211 \r
212         GIMSK|=(1<<PCIE0);\r
213         PCMSK0=(1<<PCINT4)|(1<<PCINT5)\r
214 #ifdef _4_COUNTERS_\r
215                 |(1<<PCINT6)|(1<<PCINT7)\r
216 #endif\r
217         ;\r
218         \r
219         \r
220 #ifdef _EEPROM_SAVE_\r
221         DDRA&=~(1<<PINA0);\r
222         PCMSK0|=(1<<PCINT0);\r
223         PORTA&=~(1<<PINA0); //Spannungsueberpruefung\r
224 #endif\r
225         istat=PINB;\r
226 #endif\r
227 \r
228 #ifdef _EEPROM_SAVE_\r
229                 EEARH=0;\r
230                 \r
231                 uint8_t addr;\r
232                 for(uint8_t i=0;i<16;i++) {\r
233                         addr=i^0x0C;\r
234                         while(EECR & (1<<EEPE));   \r
235                         EEARL=i;\r
236                         EECR |= (1<<EERE);\r
237                         counters.c8[addr]=EEDR;\r
238                 }\r
239                 for (uint8_t i=0;i<4;i++) {\r
240                         if (counters.c32[i]==0xFFFFFFFF) counters.c32[i]=0;\r
241                         //counters.c32[i]=0;\r
242                 }\r
243 \r
244                 /*for(uint8_t i=0;i<16;i++) {\r
245                         while(EECR & (1<<EEPE));\r
246                         EECR = (1<<EEPM0);\r
247                         EEARL = i;\r
248                         EECR |= (1<<EEMPE);\r
249                         EECR |= (1<<EEPE);\r
250                 }*/\r
251         \r
252    \r
253 #endif\r
254         sei();\r
255     while(1)   {\r
256                 \r
257                 //Test if timer active and no sleep then Idle else Power Down\r
258                 if (TEST_TIMER&&(mode==0)) {\r
259                         MCUCR|=(1<<SE)|(1<<SM1); //Power Down, only low level on 1-Wire and pin change on PCINT wakes up\r
260                         MCUCR&=~(1<<ISC01);\r
261                 } else {\r
262                         MCUCR|=(1<<SE);\r
263                         MCUCR&=~(1<<SM1); \r
264                 }\r
265                 asm("SLEEP");\r
266    }\r
267 }