Linux Git
[owSlave2.git] / common / I2C / IAQCORE.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 #define F_CPU 8000000UL\r
33 #include <avr/io.h>\r
34 \r
35 #include <util/delay.h>\r
36 \r
37 \r
38 #include "USI_TWI_Master.h"\r
39 #include "IAQCORE.h"\r
40 \r
41 \r
42 uint8_t readIAQCORE(IAQCORE_Data_t *d) {\r
43         uint8_t *da=(uint8_t*)d;\r
44         I2c_StartCondition();\r
45         I2c_WriteByte(0b10110101);\r
46         da[1]=I2c_ReadByte(ACK);\r
47         da[0]=I2c_ReadByte(ACK);\r
48         da[2]=I2c_ReadByte(ACK);\r
49         da[6]=I2c_ReadByte(ACK);\r
50         da[5]=I2c_ReadByte(ACK);\r
51         da[4]=I2c_ReadByte(ACK);\r
52         da[3]=I2c_ReadByte(ACK);\r
53         da[8]=I2c_ReadByte(ACK);\r
54         da[7]=I2c_ReadByte(NO_ACK);\r
55         I2c_StopCondition();\r
56         return 0;\r
57 }\r