fix gps message when position is not correct
[protos/imu.git] / i2c_protocol.c
1 /*
2  * Copyright (c) 2014, Olivier MATZ <zer0@droids-corp.org>
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <string.h>
29
30 #include <aversive.h>
31 #include <aversive/error.h>
32
33 #include <i2c.h>
34
35 #include "../fpv-common/i2c_commands.h"
36 #include "gps_venus.h"
37 #include "main.h"
38
39 void i2c_protocol_init(void)
40 {
41 }
42
43 /*** LED CONTROL ***/
44 void i2c_led_control(uint8_t l, uint8_t state)
45 {
46         switch(l) {
47         case 1:
48                 state? LED1_ON():LED1_OFF();
49                 break;
50         case 2:
51                 state? LED2_ON():LED2_OFF();
52                 break;
53         default:
54                 break;
55         }
56 }
57
58 #ifdef notyet
59 static void i2c_test(uint16_t val)
60 {
61         static uint16_t prev=0;
62
63         if ( (val-prev) != 1 ) {
64                 WARNING(E_USER_I2C_PROTO, "Duplicated msg %d", val);
65         }
66         prev = val;
67         ext.nb_test_cmd ++;
68 }
69 #endif
70
71 static void i2c_send_status(void)
72 {
73         struct i2c_ans_imuboard_status ans;
74         struct gps_pos gps_pos;
75         uint8_t irq_flags;
76
77         i2c_flush();
78         ans.hdr.cmd =  I2C_ANS_IMUBOARD_STATUS;
79
80         /* gps */
81         IRQ_LOCK(irq_flags);
82         gps_get_pos(&gps_pos);
83         IRQ_UNLOCK(irq_flags);
84
85         ans.flags = 0;
86         if (gps_pos_valid(&gps_pos)) {
87                 ans.flags |= IMUBOARD_STATUS_GPS_OK;
88                 ans.latitude = gps_pos.latitude;
89                 ans.longitude = gps_pos.longitude;
90                 ans.altitude = gps_pos.altitude;
91         }
92
93         i2c_send(I2C_ADD_MASTER, (uint8_t *) &ans,
94                         sizeof(ans), I2C_CTRL_GENERIC);
95 }
96
97 void i2c_recvevent(uint8_t * buf, int8_t size)
98 {
99         void *void_cmd = buf;
100
101 #if 0 /* XXX */
102         static uint8_t a = 0;
103
104         a++;
105         if (a & 0x10)
106                 LED2_TOGGLE();
107
108         if (size <= 0) {
109                 goto error;
110         }
111 #endif
112
113         switch (buf[0]) {
114
115         /* Commands (no answer needed) */
116         case I2C_CMD_GENERIC_LED_CONTROL:
117                 {
118                         struct i2c_cmd_led_control *cmd = void_cmd;
119                         if (size != sizeof (*cmd))
120                                 goto error;
121                         i2c_led_control(cmd->led_num, cmd->state);
122                         break;
123                 }
124
125
126         /* Add other commands here ...*/
127
128         case I2C_REQ_IMUBOARD_STATUS:
129                 {
130                         //struct i2c_req_imuboard_status *cmd = void_cmd;
131                         if (size != sizeof (struct i2c_req_imuboard_status))
132                                 goto error;
133
134                         i2c_send_status();
135                         break;
136                 }
137
138         default:
139                 goto error;
140         }
141
142  error:
143         /* log error on a led ? */
144         return;
145 }
146
147 void i2c_recvbyteevent(__attribute__((unused)) uint8_t hwstatus,
148                        __attribute__((unused)) uint8_t i, 
149                        __attribute__((unused)) int8_t c)
150 {
151 }
152
153 void i2c_sendevent(__attribute__((unused)) int8_t size)
154 {
155 }
156
157