Many changes from 2018
[owSlave2.git] / DS2438_Fenster_Kontakt / DS2438_Fenster_Kontakt.c
1 // Copyright (c) 2017, Tobias Mueller tm(at)tm3d.de\r
2 // All rights reserved.\r
3 //\r
4 // Redistribution and use in source and binary forms, with or without\r
5 // modification, are permitted provided that the following conditions are\r
6 // met:\r
7 //\r
8 //  * Redistributions of source code must retain the above copyright\r
9 //    notice, this list of conditions and the following disclaimer.\r
10 //  * Redistributions in binary form must reproduce the above copyright\r
11 //    notice, this list of conditions and the following disclaimer in the\r
12 //    documentation and/or other materials provided with the\r
13 //    distribution.\r
14 //  * All advertising materials mentioning features or use of this\r
15 //    software must display the following acknowledgement: This product\r
16 //    includes software developed by tm3d.de and its contributors.\r
17 //  * Neither the name of tm3d.de nor the names of its contributors may\r
18 //    be used to endorse or promote products derived from this software\r
19 //    without specific prior written permission.\r
20 //\r
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
32 \r
33 \r
34 #define F_CPU 8000000UL\r
35 #include <avr/io.h>\r
36 #include <avr/interrupt.h>\r
37 #include <util/delay.h>\r
38 #include <avr/wdt.h>\r
39 #include <avr/sleep.h>\r
40 #include <avr/pgmspace.h>\r
41 \r
42 \r
43 extern void OWINIT();\r
44 extern void EXTERN_SLEEP();\r
45 \r
46 uint8_t owid[8]={0x26, 0xA3, 0xD9, 0x89, 0xDD, 0xDD, 0x05, 0x64};/**/\r
47 uint8_t config_info[26]={0x01,0x06, 0x05,0x08, 0x06,0x08, 0x00,0x00, 0x02,0x09,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};\r
48 \r
49 \r
50 \r
51 extern uint8_t mode;\r
52 extern uint8_t gcontrol;\r
53 extern uint8_t reset_indicator;\r
54 extern uint8_t alarmflag;\r
55 \r
56 volatile uint8_t wdcounter;\r
57 \r
58 \r
59 typedef union {\r
60 \r
61         volatile uint8_t bytes[64];\r
62         struct {\r
63                 uint8_t status;  //1\r
64                 int16_t temp;  //2\r
65                 uint16_t voltage;  //4\r
66                 uint16_t current;  //6\r
67                 uint8_t threshold; //8\r
68                 \r
69                 uint8_t page1[8]; //9\r
70                 uint8_t page2[8]; //17\r
71                 uint8_t page3[8]; //25\r
72                 uint8_t page4[8];  //33\r
73                 uint8_t page5[8];  //41\r
74                 uint8_t page6[8];  //49\r
75                 uint8_t page7[8];  //57\r
76                 //uint8_t crc;  //65\r
77         };\r
78 } pack_t;\r
79 volatile pack_t pack;\r
80 \r
81 \r
82 volatile int16_t ds_temp;\r
83 volatile uint16_t ds_vad;\r
84 volatile uint16_t ds_vdd;\r
85 \r
86 #define CH1 (1<<PORTA0)\r
87 #define CH2 (1<<PORTA1)\r
88 #define CH3 (1<<PORTA2)\r
89 #define PIN_CH1 PINA\r
90 #define PIN_CH2 PINA\r
91 #define PIN_CH3 PINA\r
92 \r
93 volatile uint8_t ch1,ch2,ch3;\r
94 \r
95 \r
96 #if  defined(__AVR_ATtiny24__)||defined(__AVR_ATtiny44__)  || defined(__AVR_ATtiny84__) || defined(__AVR_ATtiny24A__)||defined(__AVR_ATtiny44A__)  || defined(__AVR_ATtiny84A__)\r
97 ISR(WATCHDOG_vect) {\r
98         #else\r
99 ISR(WDT_vect) {\r
100         #endif\r
101         wdcounter++;if (wdcounter==11) wdcounter=10;\r
102         if (ch1>1) ch1++;\r
103         if (ch2>1) ch2++;\r
104         if (ch3>1) ch3++;\r
105         if (reset_indicator==1) reset_indicator++;\r
106         else if (reset_indicator==2) mode=0;\r
107 \r
108 }\r
109         \r
110 ISR(PCINT0_vect) {\r
111 \r
112                                 if ((PIN_CH1&CH1)==0) {if (ch1==0) ch1=1;} else {ds_temp=25600;ch1=0;}\r
113                                 if ((PIN_CH2&CH2)==0) {if (ch2==0) ch2=1;} else {ds_vdd=0x1f4;ch2=0;}\r
114                                 if ((PIN_CH3&CH3)==0) {if (ch3==0) ch3=1;} else {ds_vad=0x1f4;ch3=0;}\r
115         \r
116         wdcounter=10;\r
117 }\r
118 \r
119 int testSW(void) {\r
120         uint8_t r;\r
121         DDRB&=~(1<<PORTB0);  //Eingang\r
122         __asm__ __volatile__ ("nop");\r
123         PORTB|=(1<<PORTB0); //Pullup\r
124         __asm__ __volatile__ ("nop");\r
125         __asm__ __volatile__ ("nop");\r
126         __asm__ __volatile__ ("nop");\r
127         __asm__ __volatile__ ("nop");\r
128         __asm__ __volatile__ ("nop");\r
129         r=PINB&(1<<PORTB0);\r
130         __asm__ __volatile__ ("nop");\r
131         PORTB&=~(1<<PORTB0);\r
132         __asm__ __volatile__ ("nop");\r
133         DDRB|=(1<<PORTB0);  //Eingang\r
134         return (r==0);\r
135 }\r
136 \r
137 \r
138 \r
139 \r
140 \r
141 \r
142 \r
143 \r
144         int main(void){\r
145                 PRR|=(1<<PRUSI);   //  usi for save Power\r
146                 PORTA=0xFF;  \r
147                 PORTB=0xFF-(1<<PORTB0); //Schalter kann gegen Masse sein und zieht dann immer Strom\r
148                 DDRB|=(1<<PORTB0); //Als Ausgang und 0\r
149                 \r
150                 \r
151                 OWINIT();\r
152 \r
153                 ACSR|=(1<<ACD);  //Disable Comparator\r
154                 //ADCSRB|=(1<<ACME); //Disable Analog multiplexer\r
155                 MCUCR &=~(1<<PUD); //All Pins Pullup...\r
156                 \r
157                 // Set up Watch Dog Timer for Inactivity\r
158                 WDTCSR |= (1<<WDCE) ;   // Enable the WD Change Bit\r
159                 WDTCSR =   (1<<WDIE) |              // Enable WDT Interrupt\r
160                         (1<<WDP2) | (1<<WDP1);   // Set Timeout to ~2 seconds           \r
161                 \r
162                 GIMSK|=(1<<PCIE0);\r
163                 PCMSK0=(CH1)|(CH2)|(CH3);\r
164 \r
165                 \r
166                 sei();\r
167                 \r
168                 while(1)   {\r
169                                 if ((PIN_CH1&CH1)==0) {if (ch1==0) ch1=1;} else {ds_temp=25600;ch1=0;}\r
170                                 if ((PIN_CH2&CH2)==0){if (ch2==0) ch2=1;} else {ds_vdd=0x1f4;ch2=0;}\r
171                                 if ((PIN_CH3&CH3)==0) {if (ch3==0) ch3=1;} else {ds_vad=0x1f4;ch3=0;}\r
172 \r
173                                 if (ch1==10) {ch1=0;ds_temp=0;};\r
174                                 if (ch2==10) {ch2=0;ds_vdd=0;};\r
175                                 if (ch3==10) {ch3=0;ds_vad=0;};\r
176 \r
177                                 if ((gcontrol&1)==1) {\r
178                                         if (ch1==1) {\r
179                                                 ch1=2;\r
180                                         }\r
181                                 }\r
182                                 if ((gcontrol&2)==2) {\r
183                                         if ((ch2==1)) {\r
184                                                 ch2=2;\r
185                                         }\r
186                                 }\r
187                                 if ((gcontrol&4)==4) {\r
188                                         if (ch3==1) {\r
189                                                 ch3=2;\r
190                                         }\r
191                                 }\r
192                                 gcontrol=0;\r
193         \r
194 \r
195         #define TEST_TIMER  ((TIMSK0 & (1<<TOIE0))==0)\r
196         if (TEST_TIMER&&(mode==0)) {\r
197                 MCUCR|=(1<<SE)|(1<<SM1); //Power Down, only low level on 1-Wire and pin change on PCINT wakes up\r
198                 MCUCR&=~(1<<ISC01);\r
199                 } else {\r
200                 MCUCR|=(1<<SE);\r
201                 MCUCR&=~(1<<SM1);\r
202         }\r
203         asm("SLEEP");\r
204 \r
205                 }\r
206 \r
207 \r
208         }