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