Subversion Repositories NaviCtrl

Rev

Rev 137 | Rev 146 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
/*#######################################################################################*/
2
/* !!! THIS IS NOT FREE SOFTWARE !!!                                                     */
3
/*#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) 2008 Ingo Busker, Holger Buss
6
// + Nur für den privaten Gebrauch
7
// + FOR NON COMMERCIAL USE ONLY
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37 killagreg 10
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
11
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
12
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
13
// + bzgl. der Nutzungsbedingungen aufzunehmen.
1 ingob 14
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
15
// + Verkauf von Luftbildaufnahmen, usw.
16
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37 killagreg 17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
1 ingob 18
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
21
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
22
// + eindeutig als Ursprung verlinkt werden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
25
// + Benutzung auf eigene Gefahr
26
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
27
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37 killagreg 28
// + Die PORTIERUNG der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
1 ingob 29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37 killagreg 33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
1 ingob 34
// + this list of conditions and the following disclaimer.
35
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
36
// +     from this software without specific prior written permission.
37 killagreg 37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permitted
1 ingob 38
// +     for non-commercial use (directly or indirectly)
37 killagreg 39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
1 ingob 40
// +     with our written permission
37 killagreg 41
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
42
// +     clearly linked as origin
1 ingob 43
// +   * PORTING this software (or part of it) to systems (other than hardware from www.mikrokopter.de) is NOT allowed
44
//
45
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
46
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
49
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 killagreg 55
// +  POSSIBILITY OF SUCH DAMAGE.
1 ingob 56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 57
#include <stdlib.h>
58
#include <string.h>
59
#include "91x_lib.h"
60
#include "i2c.h"
61
#include "uart1.h"
119 killagreg 62
#include "timer1.h"
136 killagreg 63
#include "config.h"
1 ingob 64
#include "main.h"
41 ingob 65
#include "led.h"
66
#include "spi_slave.h"
1 ingob 67
 
68
 
41 ingob 69
volatile I2C_State_t I2C_State = I2C_OFF;
70
 
71
// rxbuffer
72
volatile u8 I2C_RxBufferSize;
73
volatile u8 *I2C_RxBuffer;
74
volatile u8 Rx_Idx = 0;
75
// txbuffer
76
volatile u8 I2C_TxBufferSize;
77
volatile u8 *I2C_TxBuffer;
78
volatile u8 Tx_Idx = 0;
79
 
80
volatile u8 I2C_Direction;
81
volatile u8 I2C_Command;
82
 
83
volatile I2C_Heading_t                  I2C_Heading;
84
volatile I2C_WriteAttitude_t    I2C_WriteAttitude;
85
volatile I2C_Mag_t                              I2C_Mag;
86
volatile I2C_Version_t                  MK3MAG_Version;
87
volatile I2C_Cal_t                              I2C_WriteCal;
88
volatile I2C_Cal_t                              I2C_ReadCal;
89
 
1 ingob 90
volatile u8 I2C_ReadRequest = 0;
41 ingob 91
volatile u32 I2C1_Timeout = 0;
92
volatile u32 CheckI2COkay = 0;
93
volatile u8 I2C_PrimRxBuffer[10]; // must be larger than any of the secondary rx buffers
1 ingob 94
 
41 ingob 95
 
1 ingob 96
//--------------------------------------------------------------
97
void I2C1_Init(void)
98
{
41 ingob 99
        I2C_InitTypeDef   I2C_Struct;
100
        GPIO_InitTypeDef  GPIO_InitStructure;
37 killagreg 101
 
110 killagreg 102
        UART1_PutString("\r\n I2C init...");
41 ingob 103
        // enable Port 2 peripherie
104
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
105
        // disable a reset state
106
        SCU_APBPeriphReset(__GPIO2, DISABLE);
1 ingob 107
 
41 ingob 108
        // free a busy bus
1 ingob 109
 
41 ingob 110
        // At switch on I2C devices can get in a state where they
111
        // are still waiting for a command due to all the bus lines bouncing
112
        // around at startup have started clocking data into the device(s).
113
        // Enable the ports as open collector port outputs
114
        // and clock out at least 9 SCL pulses, then generate a stop
115
        // condition and then leave the clock line high.
37 killagreg 116
 
41 ingob 117
        // configure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT to normal port operation
118
        GPIO_StructInit(&GPIO_InitStructure);
119
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
120
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
121
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
122
        GPIO_InitStructure.GPIO_IPConnected = GPIO_IPConnected_Disable;
123
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt1;
124
        GPIO_Init(GPIO2, &GPIO_InitStructure);
37 killagreg 125
 
41 ingob 126
        u8 i;
127
        u32 delay;
128
        // set SCL high and then SDA to low (start condition)
129
        GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
130
        delay = SetDelay(1);
131
        while (!CheckDelay(delay));
132
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_RESET);
133
        // toggle SCL at least 10 times from high to low to high
134
        for(i = 0; i < 10; i++)
135
        {
136
                delay = SetDelay(1);
137
                while (!CheckDelay(delay));
1 ingob 138
 
41 ingob 139
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_RESET);
140
                delay = SetDelay(1);
141
                while (!CheckDelay(delay));
142
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
143
        }
144
        delay = SetDelay(1);
145
        while (!CheckDelay(delay));
146
        // create stop condition setting SDA HIGH when SCL is HIGH
147
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_SET);
37 killagreg 148
 
149
 
41 ingob 150
        // reconfigure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT
151
        GPIO_StructInit(&GPIO_InitStructure);
152
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
153
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
154
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
155
        GPIO_InitStructure.GPIO_IPConnected = GPIO_IPConnected_Enable;
156
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt2; //I2C1_CLKOUT, I2C1_DOUT
157
        GPIO_Init(GPIO2, &GPIO_InitStructure);
158
 
159
        // enable I2C peripherie
160
        SCU_APBPeriphClockConfig(__I2C1,ENABLE);
161
        // reset I2C peripherie
162
        SCU_APBPeriphReset(__I2C1,ENABLE);
163
        SCU_APBPeriphReset(__I2C1,DISABLE);
164
 
165
        I2C_DeInit(I2C1);
166
        I2C_StructInit(&I2C_Struct);
167
        I2C_Struct.I2C_GeneralCall = I2C_GeneralCall_Disable;
168
        I2C_Struct.I2C_Ack = I2C_Ack_Enable;
136 killagreg 169
        I2C_Struct.I2C_CLKSpeed = I2C1_CLOCK;
41 ingob 170
        I2C_Struct.I2C_OwnAddress = 0x00;
171
        I2C_Init(I2C1, &I2C_Struct);
172
 
173
        I2C_TxBuffer = NULL;
174
        Tx_Idx = 0;
175
        I2C_TxBufferSize = 0;
176
 
177
        I2C_RxBuffer = NULL;
178
        Rx_Idx = 0;
179
        I2C_RxBufferSize = 0;
180
 
181
        I2C_Cmd(I2C1, ENABLE);
182
        I2C_ITConfig(I2C1, ENABLE);
183
 
136 killagreg 184
        VIC_Config(I2C1_ITLine, VIC_IRQ , PRIORITY_I2C1);
41 ingob 185
        VIC_ITCmd(I2C1_ITLine, ENABLE);
186
 
187
        I2C1_Timeout = SetDelay(1000);
188
        I2C_Heading.Heading = -1;
189
        I2C_GenerateSTOP(I2C1, ENABLE);
190
        I2C_State = I2C_IDLE;
191
 
110 killagreg 192
        UART1_PutString("ok");
1 ingob 193
}
194
 
41 ingob 195
 
1 ingob 196
//--------------------------------------------------------------
41 ingob 197
void I2C1_Deinit(void)
1 ingob 198
{
79 killagreg 199
        GPIO_InitTypeDef  GPIO_InitStructure;
37 killagreg 200
 
110 killagreg 201
        UART1_PutString("\r\n I2C deinit...");
41 ingob 202
        I2C_GenerateStart(I2C1, DISABLE);
203
        I2C_GenerateSTOP(I2C1, ENABLE);
204
        VIC_ITCmd(I2C1_ITLine, DISABLE);
205
        I2C_ITConfig(I2C1, DISABLE);
206
        I2C_Cmd(I2C1, DISABLE);
207
        I2C_DeInit(I2C1);
208
        SCU_APBPeriphClockConfig(__I2C1, DISABLE);
79 killagreg 209
 
41 ingob 210
        // set ports to input
211
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
212
        GPIO_StructInit(&GPIO_InitStructure);
213
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
79 killagreg 214
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_2 | GPIO_Pin_3;
215
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
41 ingob 216
        GPIO_InitStructure.GPIO_IPConnected =   GPIO_IPConnected_Disable;
79 killagreg 217
        GPIO_InitStructure.GPIO_Alternate =     GPIO_InputAlt1;
218
        GPIO_Init(GPIO2, &GPIO_InitStructure);
1 ingob 219
 
41 ingob 220
        I2C_TxBuffer = NULL;
79 killagreg 221
        Tx_Idx = 0;
41 ingob 222
        I2C_TxBufferSize = 0;
1 ingob 223
 
41 ingob 224
        I2C_RxBuffer = NULL;
225
        Rx_Idx = 0;
226
        I2C_RxBufferSize = 0;
37 killagreg 227
 
41 ingob 228
        I2C_State = I2C_OFF;
37 killagreg 229
 
41 ingob 230
        I2C1_Timeout = 0;
231
        I2C_Heading.Heading = -1;
37 killagreg 232
 
110 killagreg 233
        UART1_PutString("ok");
41 ingob 234
}
1 ingob 235
 
41 ingob 236
 
237
//--------------------------------------------------------------
238
void I2C1_IRQHandler(void)
239
{
240
        u16 status;
241
        static u8 crc;
242
        // detemine I2C State
243
        status = I2C_GetLastEvent(I2C1);
244
 
245
        if(status & (I2C_FLAG_AF|I2C_FLAG_BERR))  // if an acknowledge failure or bus error occured
79 killagreg 246
        {       // Set and subsequently clear the STOP bit while BTF is set.
41 ingob 247
                while(I2C_GetFlagStatus (I2C1, I2C_FLAG_BTF) != RESET)
248
                {
249
                        I2C_GenerateSTOP (I2C1, ENABLE); // free the bus
250
                        I2C_GenerateSTOP (I2C1, DISABLE); // free the bus
251
                }
252
                I2C_State = I2C_IDLE;
253
                LED_GRN_OFF;
254
        }
255
        else
256
        {       // depending on current i2c state
257
                switch (status)
258
                {
259
                        // the start condition was initiated on the bus
260
                        case I2C_EVENT_MASTER_MODE_SELECT:
261
                                LED_GRN_ON;
262
                                // update current bus state variable
263
                                switch(I2C_Direction)
264
                                {
265
                                        case I2C_MODE_TRANSMITTER:
266
                                                I2C_State = I2C_TX_PROGRESS;
267
                                                break;
79 killagreg 268
 
41 ingob 269
                                        case I2C_MODE_RECEIVER:
270
                                                if ((I2C_RxBuffer == NULL) || (I2C_RxBufferSize == 0))
271
                                                {
272
                                                        I2C_GenerateSTOP (I2C1, ENABLE);
273
                                                        I2C_State = I2C_IDLE;
274
                                                        return;
275
                                                }
276
                                                else
277
                                                {
278
                                                        I2C_State = I2C_RX_PROGRESS;
279
                                                }
280
                                                break;
79 killagreg 281
 
41 ingob 282
                                        default: // invalid direction
283
                                                I2C_GenerateSTOP (I2C1, ENABLE);
284
                                                I2C_State = I2C_IDLE;
285
                                                LED_GRN_OFF;
286
                                                return;
287
                                }
288
                                // enable acknowledge
289
                                I2C_AcknowledgeConfig (I2C1, ENABLE);
290
                                // send address/direction byte on the bus
291
                                I2C_Send7bitAddress(I2C1, I2C_SLAVE_ADDRESS, I2C_Direction);
292
                                break;
79 killagreg 293
 
41 ingob 294
                        // the address byte was send
295
                        case I2C_EVENT_MASTER_MODE_SELECTED:
296
                                // Clear EV6 by set again the PE bit
79 killagreg 297
                                I2C_Cmd(I2C1, ENABLE);
41 ingob 298
                                // reset checksum
299
                                crc = 0;
300
                                switch(I2C_State)
301
                                {
302
                                        case I2C_TX_PROGRESS:
79 killagreg 303
                                        // send command 1st data byte (allways the command id)
41 ingob 304
                                        I2C_SendData(I2C1, I2C_Command);
305
                                        crc += I2C_Command;
306
                                        Tx_Idx = 0;
307
                                        // reset timeout
308
                                        I2C1_Timeout = SetDelay(500); // after 500 ms of inactivity the I2C1 bus will be reset
309
                                        break;
79 killagreg 310
 
41 ingob 311
                                        case I2C_RX_PROGRESS:
312
                                        Rx_Idx = 0;
313
                                        break;
79 killagreg 314
 
41 ingob 315
                                        default: // unknown I2C state
316
                                        // should never happen
317
                                        I2C_GenerateSTOP (I2C1, ENABLE);
318
                                        I2C_State = I2C_IDLE;
319
                                        break;
320
                                }
321
                                break;
79 killagreg 322
 
41 ingob 323
                        // the master has transmitted a byte and slave has been acknowledged
324
                        case I2C_EVENT_MASTER_BYTE_TRANSMITTED:
79 killagreg 325
 
41 ingob 326
                                // some bytes have to be transmitted
327
                                if(Tx_Idx < I2C_TxBufferSize)
328
                                {
329
                                        if(I2C_TxBuffer != NULL)
330
                                        {
331
                                                I2C_SendData(I2C1, I2C_TxBuffer[Tx_Idx]);
332
                                                crc += I2C_TxBuffer[Tx_Idx];
333
                                        }
334
                                        else
335
                                        {
336
                                                I2C_SendData(I2C1, 0x00);
337
                                        }
338
                                }
339
                                else // the last tx buffer byte was send
340
                                {
341
                                        // send crc byte at the end
137 killagreg 342
                                        crc = ~crc; // flip all bits in the checksum
41 ingob 343
                                        I2C_SendData(I2C1, crc);
344
                                        // generate stop or repeated start condition
345
                                        if ((I2C_RxBuffer != NULL) && (I2C_RxBufferSize > 0)) // is any answer byte expected?
346
                                        {
79 killagreg 347
                                                I2C_Direction = I2C_MODE_RECEIVER; // switch to master receiver after repeated start condition
348
                                                I2C_GenerateStart(I2C1, ENABLE);   // initiate repeated start condition on the bus
41 ingob 349
                                        }
350
                                        else
351
                                        {   // stop communication
352
                                                I2C_GenerateSTOP(I2C1, ENABLE); // generate stop condition to free the bus
353
                                                I2C_State = I2C_IDLE;                   // ready for new actions
354
                                                LED_GRN_OFF;
355
                                                DebugOut.Analog[15]++;
356
                                        }
357
                                }
79 killagreg 358
                                Tx_Idx++;
41 ingob 359
                                break;
79 killagreg 360
 
41 ingob 361
                        // the master has received a byte from the slave
79 killagreg 362
                        case I2C_EVENT_MASTER_BYTE_RECEIVED:
41 ingob 363
                                // some bytes have to be received
364
                                if (Rx_Idx < I2C_RxBufferSize)
365
                                {       // copy received byte  from the data register to the rx-buffer
366
                                        I2C_PrimRxBuffer[Rx_Idx] = I2C_ReceiveData(I2C1);
367
                                        // update checksum
368
                                        crc += I2C_PrimRxBuffer[Rx_Idx];
369
                                }
370
                                // if the last byte (crc) was received
79 killagreg 371
                                else if ( Rx_Idx == I2C_RxBufferSize)
41 ingob 372
                                {
373
                                        // generate a STOP condition on the bus before reading data register
374
                                        I2C_GenerateSTOP(I2C1, ENABLE);
375
                                        // compare last byte with checksum
137 killagreg 376
                                        crc = ~crc;// flip all bits in calulated checksum
41 ingob 377
                                        if(crc == I2C_ReceiveData(I2C1))
378
                                        {       // copy primary rx buffer content to rx buffer if exist
379
                                                if(I2C_RxBuffer != NULL)
380
                                                {
381
                                                        memcpy((u8 *)I2C_RxBuffer, (u8 *)I2C_PrimRxBuffer, I2C_RxBufferSize);
382
                                                }
141 killagreg 383
                                                I2C1_Timeout = SetDelay(500);
41 ingob 384
                                                DebugOut.Analog[15]++;
385
                                                CheckI2COkay++;
386
                                        }
387
                                        else // checksum error detected
388
                                        {
389
                                                DebugOut.Analog[14]++;
390
                                        }
391
                                        I2C_State = I2C_IDLE;
79 killagreg 392
                                        LED_GRN_OFF;
41 ingob 393
                                }
394
                                Rx_Idx++;
395
                                // if the 2nd last byte was received disable acknowledge for the last one
396
                                if ( Rx_Idx == I2C_RxBufferSize )
397
                                {
398
                                        I2C_AcknowledgeConfig (I2C1, DISABLE);
399
                                }
400
                                break;
79 killagreg 401
 
41 ingob 402
                        default:
403
                                break;
404
                }
405
        }
1 ingob 406
}
407
//----------------------------------------------------------------
41 ingob 408
void I2C1_SendCommand(u8 command)
1 ingob 409
{
41 ingob 410
        // If I2C transmission is in progress
411
        while (I2C_State != I2C_IDLE) return; // return imediatly if a transfer is still in progress
412
        // disable I2C IRQ to avoid read/write access to the tx/rx buffer pointers during
413
        // update of that buffer pointers and length
414
        I2C_ITConfig(I2C1, DISABLE);
415
        // update current command id
416
        I2C_Command = command;
417
        // set pointers to data area with respect to the command id
418
        switch (command)
419
        {
79 killagreg 420
                case I2C_CMD_VERSION:
41 ingob 421
                        I2C_RxBuffer = (u8 *)&MK3MAG_Version;
422
                        I2C_RxBufferSize = sizeof(MK3MAG_Version);
423
                        I2C_TxBuffer = NULL;
424
                        I2C_TxBufferSize = 0;
425
                        break;
426
                case I2C_CMD_WRITE_CAL:
427
                        I2C_RxBuffer = (u8 *)&I2C_ReadCal;
428
                        I2C_RxBufferSize = sizeof(I2C_ReadCal);
429
                        I2C_TxBuffer = (u8 *)&I2C_WriteCal;
430
                        I2C_TxBufferSize = sizeof(I2C_WriteCal);
431
                        break;
79 killagreg 432
                case I2C_CMD_READ_MAG:
41 ingob 433
                        I2C_RxBuffer = (u8 *)&I2C_Mag;
434
                        I2C_RxBufferSize = sizeof(I2C_Mag);
435
                        I2C_TxBuffer = NULL;
436
                        I2C_TxBufferSize = 0;
437
                        break;
79 killagreg 438
                case I2C_CMD_READ_HEADING:
61 holgerb 439
                        DebugOut.Analog[10] = I2C_Heading.Heading;
41 ingob 440
                        I2C_RxBuffer = (u8 *)&I2C_Heading;
441
                        I2C_RxBufferSize = sizeof(I2C_Heading);
442
                        // updat atitude from spi rx buffer
62 killagreg 443
                        I2C_WriteAttitude.Roll = FromFlightCtrl.AngleRoll;
444
                        I2C_WriteAttitude.Nick = FromFlightCtrl.AngleNick;
41 ingob 445
                        I2C_TxBuffer =  (u8 *)&I2C_WriteAttitude;
446
                        I2C_TxBufferSize = sizeof(I2C_WriteAttitude);
447
                        break;
448
                default: // unknown command id
449
                        I2C_RxBuffer = NULL;
450
                        I2C_RxBufferSize = 0;
451
                        I2C_TxBuffer =  NULL;
452
                        I2C_TxBufferSize = 0;
453
                        break;
454
        }
455
        // enable I2C IRQ again
456
        I2C_ITConfig(I2C1, ENABLE);
457
        // set direction to master transmitter
458
        I2C_Direction = I2C_MODE_TRANSMITTER;
79 killagreg 459
        // test on busy flag and clear it
41 ingob 460
        I2C_CheckEvent( I2C1, I2C_FLAG_BUSY );
79 killagreg 461
        // initiale start condition on the bus
41 ingob 462
        I2C_GenerateStart(I2C1, ENABLE);
463
        // to be continued in the I2C1_IRQHandler() above
464
}
1 ingob 465
 
41 ingob 466
//----------------------------------------------------------------
467
void I2C1_GetMK3MagVersion(void)
468
{
78 holgerb 469
        u8 msg[64];
79 killagreg 470
        u8 repeat = 10;
1 ingob 471
 
41 ingob 472
        MK3MAG_Version.Major = 0xFF;
473
        MK3MAG_Version.Minor = 0xFF;
474
        MK3MAG_Version.Patch = 0xFF;
475
        MK3MAG_Version.Compatible = 0xFF;
37 killagreg 476
 
41 ingob 477
        while ((MK3MAG_Version.Major == 0xFF)  && (repeat != 0))
478
        {
79 killagreg 479
                I2C1_SendCommand(I2C_CMD_VERSION);
480
                I2C1_Timeout = SetDelay(500);
41 ingob 481
                while (!CheckDelay(I2C1_Timeout)) if (MK3MAG_Version.Major != 0xFF) break;
482
                repeat--;
483
        }
79 killagreg 484
 
41 ingob 485
        if (MK3MAG_Version.Major != 0xFF)
79 killagreg 486
        {
41 ingob 487
                sprintf(msg, "\n\r MK3Mag V%d.%d%c", MK3MAG_Version.Major, MK3MAG_Version.Minor, 'a' + MK3MAG_Version.Patch);
110 killagreg 488
                UART1_PutString(msg);
41 ingob 489
                sprintf(msg, " Compatible: %d", MK3MAG_Version.Compatible);
110 killagreg 490
                UART1_PutString(msg);
41 ingob 491
        }
110 killagreg 492
        else UART1_PutString("\n\rNo version information from MK3Mag.");
1 ingob 493
 
494
}