Many changes from 2018
[owSlave2.git] / common / OWCRC8_16.s
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 .comm crc16,2\r
35 .comm crc8,2\r
36 #define _CRC8_16_\r
37 \r
38 CRC16_alg:\r
39         ;crc\r
40         \r
41         lds r_crc,crc16;lade low byte fuer vergleich mit bit\r
42         mov r_temp,r_crc\r
43         andi r_temp,0x01 ;nur bit 0\r
44         cp r_temp2,r_temp  ;r_temp2 wird in interruptroutine gesetzt\r
45         brne crc2_16 ;nur schieben\r
46         ;schieben und XOR\r
47         lds r_temp2,crc16+1\r
48         lsr     r_temp2\r
49         ror     r_crc\r
50         ldi     r_temp, 0x01    \r
51         eor     r_crc, r_temp\r
52         ldi     r_temp, 0xA0    ;\r
53         eor     r_temp2, r_temp\r
54         rjmp crce_16\r
55 crc2_16:\r
56         lds r_temp2,crc16+1\r
57         lsr     r_temp2\r
58         ror     r_crc\r
59 crce_16:\r
60         sts crc16,r_crc\r
61         sts crc16+1,r_temp2\r
62         \r
63         ret\r
64 \r
65 .macro CRCS ; CRC beim Senden\r
66         push r_crc\r
67         push r_temp2\r
68         rcall CRC16_alg\r
69         pop r_temp2\r
70                 ;crc\r
71         lds r_crc,crc8\r
72         mov r_temp,r_crc\r
73         andi r_temp,0x01\r
74         cp r_temp2,r_temp\r
75         brne crc2_8\r
76         lsr r_crc\r
77         ldi r_temp,0x8c\r
78         eor r_crc,r_temp\r
79         rjmp crce_8\r
80 crc2_8:\r
81         lsr r_crc\r
82 crce_8:\r
83         sts crc8,r_crc\r
84         pop r_crc\r
85 .endm\r
86 \r
87 .macro CRCR; CRC beim Empfangen\r
88         ;clr r_temp2\r
89         ;sbrc r_rwbyte,7\r
90         ;ldi r_temp2,1\r
91         push r_crc\r
92         rcall CRC16_alg\r
93         pop r_crc\r
94 .endm\r
95 \r
96 .macro CRCInit1; CRC initialisierung bei READ_COMMAND\r
97         ldi r_temp,0\r
98         sts crc16,r_temp\r
99         sts crc16+1,r_temp\r
100 .endm\r
101 \r
102 .macro CRCInit2; CRC initialisierung bei READ_DATA\r
103         ldi r_temp,0\r
104         sts crc8,r_temp\r
105 .endm\r