Subversion Repositories NaviCtrl

Rev

Rev 196 | 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
171 ingob 6
// + Nur für den privaten Gebrauch / NON-COMMERCIAL USE ONLY
1 ingob 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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
171 ingob 28
// + Die Portierung oder Nutzung 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
171 ingob 43
// +   * porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
1 ingob 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 <string.h>
58
#include "91x_lib.h"
59
#include "i2c.h"
60
#include "uart1.h"
119 killagreg 61
#include "timer1.h"
136 killagreg 62
#include "config.h"
1 ingob 63
#include "main.h"
41 ingob 64
#include "led.h"
65
#include "spi_slave.h"
1 ingob 66
 
189 killagreg 67
#define I2C_SLAVE_ADDRESS               0x50
1 ingob 68
 
189 killagreg 69
// I2C states
70
#define I2C_UNDEF               0
71
#define I2C_IDLE                1
72
#define I2C_TX_PROGRESS 2
73
#define I2C_RX_PENDING  3
74
#define I2C_RX_PROGRESS 4
75
#define I2C_OFF                 5
41 ingob 76
 
189 killagreg 77
volatile u8 I2C_State = I2C_OFF; // only on byte! because of sync by nesting irqs
78
u8 I2C_StopPolling = 1;
79
 
41 ingob 80
// rxbuffer
81
volatile u8 I2C_RxBufferSize;
82
volatile u8 *I2C_RxBuffer;
83
// txbuffer
84
volatile u8 I2C_TxBufferSize;
85
volatile u8 *I2C_TxBuffer;
86
 
87
volatile u8 I2C_Direction;
88
volatile u8 I2C_Command;
189 killagreg 89
// I2C Transfer buffers
41 ingob 90
volatile I2C_Heading_t                  I2C_Heading;
91
volatile I2C_WriteAttitude_t    I2C_WriteAttitude;
92
volatile I2C_Mag_t                              I2C_Mag;
93
volatile I2C_Version_t                  MK3MAG_Version;
94
volatile I2C_Cal_t                              I2C_WriteCal;
95
volatile I2C_Cal_t                              I2C_ReadCal;
96
 
146 killagreg 97
#define I2C1_TIMEOUT 500 // 500 ms
41 ingob 98
volatile u32 I2C1_Timeout = 0;
1 ingob 99
 
100
//--------------------------------------------------------------
101
void I2C1_Init(void)
102
{
41 ingob 103
        I2C_InitTypeDef   I2C_Struct;
104
        GPIO_InitTypeDef  GPIO_InitStructure;
149 killagreg 105
 
106
        I2C_State = I2C_OFF;
37 killagreg 107
 
110 killagreg 108
        UART1_PutString("\r\n I2C init...");
41 ingob 109
        // enable Port 2 peripherie
110
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
111
        // disable a reset state
112
        SCU_APBPeriphReset(__GPIO2, DISABLE);
1 ingob 113
 
41 ingob 114
        // free a busy bus
1 ingob 115
 
41 ingob 116
        // At switch on I2C devices can get in a state where they
117
        // are still waiting for a command due to all the bus lines bouncing
118
        // around at startup have started clocking data into the device(s).
119
        // Enable the ports as open collector port outputs
120
        // and clock out at least 9 SCL pulses, then generate a stop
121
        // condition and then leave the clock line high.
37 killagreg 122
 
41 ingob 123
        // configure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT to normal port operation
124
        GPIO_StructInit(&GPIO_InitStructure);
125
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
126
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
127
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
196 killagreg 128
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Disable;
41 ingob 129
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt1;
130
        GPIO_Init(GPIO2, &GPIO_InitStructure);
37 killagreg 131
 
41 ingob 132
        u8 i;
133
        u32 delay;
134
        // set SCL high and then SDA to low (start condition)
135
        GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
136
        delay = SetDelay(1);
137
        while (!CheckDelay(delay));
138
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_RESET);
139
        // toggle SCL at least 10 times from high to low to high
140
        for(i = 0; i < 10; i++)
141
        {
142
                delay = SetDelay(1);
143
                while (!CheckDelay(delay));
1 ingob 144
 
41 ingob 145
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_RESET);
146
                delay = SetDelay(1);
147
                while (!CheckDelay(delay));
148
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
149
        }
150
        delay = SetDelay(1);
151
        while (!CheckDelay(delay));
152
        // create stop condition setting SDA HIGH when SCL is HIGH
153
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_SET);
37 killagreg 154
 
155
 
41 ingob 156
        // reconfigure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT
157
        GPIO_StructInit(&GPIO_InitStructure);
158
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
159
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
160
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
196 killagreg 161
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Enable;
41 ingob 162
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt2; //I2C1_CLKOUT, I2C1_DOUT
163
        GPIO_Init(GPIO2, &GPIO_InitStructure);
164
 
165
        // enable I2C peripherie
166
        SCU_APBPeriphClockConfig(__I2C1,ENABLE);
167
        // reset I2C peripherie
168
        SCU_APBPeriphReset(__I2C1,ENABLE);
169
        SCU_APBPeriphReset(__I2C1,DISABLE);
170
 
171
        I2C_DeInit(I2C1);
172
        I2C_StructInit(&I2C_Struct);
173
        I2C_Struct.I2C_GeneralCall = I2C_GeneralCall_Disable;
174
        I2C_Struct.I2C_Ack = I2C_Ack_Enable;
136 killagreg 175
        I2C_Struct.I2C_CLKSpeed = I2C1_CLOCK;
41 ingob 176
        I2C_Struct.I2C_OwnAddress = 0x00;
177
        I2C_Init(I2C1, &I2C_Struct);
178
 
179
        I2C_TxBuffer = NULL;
180
        I2C_TxBufferSize = 0;
181
 
182
        I2C_RxBuffer = NULL;
183
        I2C_RxBufferSize = 0;
184
 
185
        I2C_Cmd(I2C1, ENABLE);
186
        I2C_ITConfig(I2C1, ENABLE);
187
 
136 killagreg 188
        VIC_Config(I2C1_ITLine, VIC_IRQ , PRIORITY_I2C1);
41 ingob 189
 
189 killagreg 190
        I2C1_Timeout = SetDelay(10*I2C1_TIMEOUT);
41 ingob 191
        I2C_Heading.Heading = -1;
192
        I2C_GenerateSTOP(I2C1, ENABLE);
193
        I2C_State = I2C_IDLE;
194
 
154 killagreg 195
        I2C_StopPolling = 0; // start polling
196
 
110 killagreg 197
        UART1_PutString("ok");
1 ingob 198
}
199
 
41 ingob 200
 
1 ingob 201
//--------------------------------------------------------------
41 ingob 202
void I2C1_Deinit(void)
1 ingob 203
{
79 killagreg 204
        GPIO_InitTypeDef  GPIO_InitStructure;
154 killagreg 205
        I2C_StopPolling = 1;// stop polling
110 killagreg 206
        UART1_PutString("\r\n I2C deinit...");
41 ingob 207
        I2C_GenerateStart(I2C1, DISABLE);
208
        I2C_GenerateSTOP(I2C1, ENABLE);
209
        VIC_ITCmd(I2C1_ITLine, DISABLE);
154 killagreg 210
        I2C_State = I2C_OFF;
41 ingob 211
        I2C_ITConfig(I2C1, DISABLE);
212
        I2C_Cmd(I2C1, DISABLE);
213
        I2C_DeInit(I2C1);
214
        SCU_APBPeriphClockConfig(__I2C1, DISABLE);
79 killagreg 215
 
41 ingob 216
        // set ports to input
217
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
218
        GPIO_StructInit(&GPIO_InitStructure);
219
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
79 killagreg 220
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_2 | GPIO_Pin_3;
221
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
196 killagreg 222
        GPIO_InitStructure.GPIO_IPInputConnected =      GPIO_IPInputConnected_Disable;
79 killagreg 223
        GPIO_InitStructure.GPIO_Alternate =     GPIO_InputAlt1;
224
        GPIO_Init(GPIO2, &GPIO_InitStructure);
1 ingob 225
 
41 ingob 226
        I2C_TxBuffer = NULL;
227
        I2C_TxBufferSize = 0;
1 ingob 228
 
41 ingob 229
        I2C_RxBuffer = NULL;
230
        I2C_RxBufferSize = 0;
37 killagreg 231
 
189 killagreg 232
        I2C1_Timeout = SetDelay(10*I2C1_TIMEOUT);
41 ingob 233
        I2C_Heading.Heading = -1;
37 killagreg 234
 
110 killagreg 235
        UART1_PutString("ok");
41 ingob 236
}
1 ingob 237
 
41 ingob 238
 
239
//--------------------------------------------------------------
240
void I2C1_IRQHandler(void)
241
{
189 killagreg 242
        static u8 Rx_Idx = 0, Tx_Idx = 0, crc = 0;
243
        static u8 I2C_PrimRxBuffer[10]; // must be larger than any of the secondary rx buffers
41 ingob 244
        u16 status;
189 killagreg 245
 
195 killagreg 246
        //IENABLE;  // do not enable IRQ nesting for I2C!!!!
247
 
41 ingob 248
        // detemine I2C State
249
        status = I2C_GetLastEvent(I2C1);
250
 
251
        if(status & (I2C_FLAG_AF|I2C_FLAG_BERR))  // if an acknowledge failure or bus error occured
79 killagreg 252
        {       // Set and subsequently clear the STOP bit while BTF is set.
41 ingob 253
                while(I2C_GetFlagStatus (I2C1, I2C_FLAG_BTF) != RESET)
254
                {
189 killagreg 255
                        I2C_GenerateSTOP (I2C1, ENABLE);  // free the bus
41 ingob 256
                        I2C_GenerateSTOP (I2C1, DISABLE); // free the bus
257
                }
258
                I2C_State = I2C_IDLE;
189 killagreg 259
                VIC_ITCmd(I2C1_ITLine, DISABLE);
41 ingob 260
                LED_GRN_OFF;
189 killagreg 261
                return;
41 ingob 262
        }
263
        else
264
        {       // depending on current i2c state
265
                switch (status)
266
                {
267
                        // the start condition was initiated on the bus
268
                        case I2C_EVENT_MASTER_MODE_SELECT:
269
                                LED_GRN_ON;
270
                                // update current bus state variable
271
                                switch(I2C_Direction)
272
                                {
273
                                        case I2C_MODE_TRANSMITTER:
274
                                                I2C_State = I2C_TX_PROGRESS;
275
                                                break;
79 killagreg 276
 
41 ingob 277
                                        case I2C_MODE_RECEIVER:
278
                                                if ((I2C_RxBuffer == NULL) || (I2C_RxBufferSize == 0))
279
                                                {
280
                                                        I2C_GenerateSTOP (I2C1, ENABLE);
189 killagreg 281
                                                        VIC_ITCmd(I2C1_ITLine, DISABLE);
282
                                                        LED_GRN_OFF;
41 ingob 283
                                                        I2C_State = I2C_IDLE;
284
                                                        return;
285
                                                }
286
                                                else
287
                                                {
288
                                                        I2C_State = I2C_RX_PROGRESS;
289
                                                }
290
                                                break;
79 killagreg 291
 
41 ingob 292
                                        default: // invalid direction
293
                                                I2C_GenerateSTOP (I2C1, ENABLE);
189 killagreg 294
                                                VIC_ITCmd(I2C1_ITLine, DISABLE);
295
                                                LED_GRN_OFF;
41 ingob 296
                                                I2C_State = I2C_IDLE;
297
                                                return;
298
                                }
299
                                // enable acknowledge
300
                                I2C_AcknowledgeConfig (I2C1, ENABLE);
301
                                // send address/direction byte on the bus
302
                                I2C_Send7bitAddress(I2C1, I2C_SLAVE_ADDRESS, I2C_Direction);
303
                                break;
79 killagreg 304
 
41 ingob 305
                        // the address byte was send
306
                        case I2C_EVENT_MASTER_MODE_SELECTED:
307
                                // Clear EV6 by set again the PE bit
79 killagreg 308
                                I2C_Cmd(I2C1, ENABLE);
41 ingob 309
                                // reset checksum
310
                                crc = 0;
311
                                switch(I2C_State)
312
                                {
313
                                        case I2C_TX_PROGRESS:
79 killagreg 314
                                        // send command 1st data byte (allways the command id)
41 ingob 315
                                        I2C_SendData(I2C1, I2C_Command);
316
                                        crc += I2C_Command;
317
                                        Tx_Idx = 0;
318
                                        // reset timeout
189 killagreg 319
                                        I2C1_Timeout = SetDelay(I2C1_TIMEOUT); // after inactivity the I2C1 bus will be reset
41 ingob 320
                                        break;
79 killagreg 321
 
41 ingob 322
                                        case I2C_RX_PROGRESS:
323
                                        Rx_Idx = 0;
324
                                        break;
79 killagreg 325
 
41 ingob 326
                                        default: // unknown I2C state
327
                                        // should never happen
328
                                        I2C_GenerateSTOP (I2C1, ENABLE);
189 killagreg 329
                                        LED_GRN_OFF;
330
                                        VIC_ITCmd(I2C1_ITLine, DISABLE);
41 ingob 331
                                        I2C_State = I2C_IDLE;
189 killagreg 332
                                        return;
41 ingob 333
                                        break;
334
                                }
335
                                break;
79 killagreg 336
 
41 ingob 337
                        // the master has transmitted a byte and slave has been acknowledged
338
                        case I2C_EVENT_MASTER_BYTE_TRANSMITTED:
79 killagreg 339
 
41 ingob 340
                                // some bytes have to be transmitted
341
                                if(Tx_Idx < I2C_TxBufferSize)
342
                                {
343
                                        if(I2C_TxBuffer != NULL)
344
                                        {
345
                                                I2C_SendData(I2C1, I2C_TxBuffer[Tx_Idx]);
346
                                                crc += I2C_TxBuffer[Tx_Idx];
347
                                        }
348
                                        else
349
                                        {
350
                                                I2C_SendData(I2C1, 0x00);
351
                                        }
352
                                }
189 killagreg 353
                                else if(Tx_Idx == I2C_TxBufferSize) // the last tx buffer byte was send
41 ingob 354
                                {
355
                                        // send crc byte at the end
137 killagreg 356
                                        crc = ~crc; // flip all bits in the checksum
41 ingob 357
                                        I2C_SendData(I2C1, crc);
189 killagreg 358
                                }
359
                                else if(Tx_Idx == (I2C_TxBufferSize+1) )
360
                                {
361
                                        I2C_SendData(I2C1, 0xAA); // send a dummybyte
362
                                }
363
                                else // last byte was send
364
                                {
41 ingob 365
                                        // generate stop or repeated start condition
366
                                        if ((I2C_RxBuffer != NULL) && (I2C_RxBufferSize > 0)) // is any answer byte expected?
367
                                        {
79 killagreg 368
                                                I2C_Direction = I2C_MODE_RECEIVER; // switch to master receiver after repeated start condition
369
                                                I2C_GenerateStart(I2C1, ENABLE);   // initiate repeated start condition on the bus
41 ingob 370
                                        }
371
                                        else
372
                                        {   // stop communication
373
                                                I2C_GenerateSTOP(I2C1, ENABLE); // generate stop condition to free the bus
189 killagreg 374
                                                VIC_ITCmd(I2C1_ITLine, DISABLE);
41 ingob 375
                                                LED_GRN_OFF;
376
                                                DebugOut.Analog[15]++;
189 killagreg 377
                                                I2C_State = I2C_IDLE;                   // ready for new actions
378
 
41 ingob 379
                                        }
380
                                }
79 killagreg 381
                                Tx_Idx++;
41 ingob 382
                                break;
79 killagreg 383
 
41 ingob 384
                        // the master has received a byte from the slave
79 killagreg 385
                        case I2C_EVENT_MASTER_BYTE_RECEIVED:
41 ingob 386
                                // some bytes have to be received
387
                                if (Rx_Idx < I2C_RxBufferSize)
388
                                {       // copy received byte  from the data register to the rx-buffer
389
                                        I2C_PrimRxBuffer[Rx_Idx] = I2C_ReceiveData(I2C1);
390
                                        // update checksum
391
                                        crc += I2C_PrimRxBuffer[Rx_Idx];
392
                                }
393
                                // if the last byte (crc) was received
79 killagreg 394
                                else if ( Rx_Idx == I2C_RxBufferSize)
41 ingob 395
                                {
396
                                        // generate a STOP condition on the bus before reading data register
397
                                        I2C_GenerateSTOP(I2C1, ENABLE);
398
                                        // compare last byte with checksum
137 killagreg 399
                                        crc = ~crc;// flip all bits in calulated checksum
41 ingob 400
                                        if(crc == I2C_ReceiveData(I2C1))
189 killagreg 401
                                        {      
402
                                                // copy primary rx buffer content to rx buffer if exist
41 ingob 403
                                                if(I2C_RxBuffer != NULL)
404
                                                {
405
                                                        memcpy((u8 *)I2C_RxBuffer, (u8 *)I2C_PrimRxBuffer, I2C_RxBufferSize);
406
                                                }
189 killagreg 407
                                                I2C1_Timeout = SetDelay(I2C1_TIMEOUT);
41 ingob 408
                                                DebugOut.Analog[15]++;
409
                                        }
410
                                        else // checksum error detected
411
                                        {
189 killagreg 412
                                                DebugOut.Analog[14]++;
41 ingob 413
                                        }
189 killagreg 414
                                        VIC_ITCmd(I2C1_ITLine, DISABLE);
415
                                        LED_GRN_OFF;
41 ingob 416
                                        I2C_State = I2C_IDLE;
189 killagreg 417
                                        return;
41 ingob 418
                                }
419
                                Rx_Idx++;
420
                                // if the 2nd last byte was received disable acknowledge for the last one
421
                                if ( Rx_Idx == I2C_RxBufferSize )
422
                                {
423
                                        I2C_AcknowledgeConfig (I2C1, DISABLE);
424
                                }
425
                                break;
79 killagreg 426
 
41 ingob 427
                        default:
428
                                break;
429
                }
430
        }
195 killagreg 431
 
432
        //IDISABLE;      // do not enable IRQ nesting for I2C!!!!
1 ingob 433
}
434
//----------------------------------------------------------------
41 ingob 435
void I2C1_SendCommand(u8 command)
1 ingob 436
{
189 killagreg 437
        // disable I2C IRQ to check state
438
        VIC_ITCmd(I2C1_ITLine, DISABLE);
41 ingob 439
        // If I2C transmission is in progress
189 killagreg 440
        if(I2C_State == I2C_IDLE)
41 ingob 441
        {
189 killagreg 442
                // update current command id
443
                I2C_Command = command;
444
                // set pointers to data area with respect to the command id
445
                switch (command)
446
                {
447
                        case I2C_CMD_VERSION:
448
                                I2C_RxBuffer = (u8 *)&MK3MAG_Version;
449
                                I2C_RxBufferSize = sizeof(MK3MAG_Version);
450
                                I2C_TxBuffer = NULL;
451
                                I2C_TxBufferSize = 0;
452
                                break;
453
                        case I2C_CMD_WRITE_CAL:
454
                                I2C_RxBuffer = (u8 *)&I2C_ReadCal;
455
                                I2C_RxBufferSize = sizeof(I2C_ReadCal);
456
                                I2C_TxBuffer = (u8 *)&I2C_WriteCal;
457
                                I2C_TxBufferSize = sizeof(I2C_WriteCal);
458
                                break;
459
                        case I2C_CMD_READ_MAG:
460
                                I2C_RxBuffer = (u8 *)&I2C_Mag;
461
                                I2C_RxBufferSize = sizeof(I2C_Mag);
462
                                I2C_TxBuffer = NULL;
463
                                I2C_TxBufferSize = 0;
464
                                break;
465
                        case I2C_CMD_READ_HEADING:
466
                                I2C_RxBuffer = (u8 *)&I2C_Heading;
467
                                I2C_RxBufferSize = sizeof(I2C_Heading);
468
                                I2C_TxBuffer =  (u8 *)&I2C_WriteAttitude;
469
                                I2C_TxBufferSize = sizeof(I2C_WriteAttitude);
470
                                // update attitude from spi rx buffer
471
                                VIC_ITCmd(SSP0_ITLine, DISABLE); // avoid spi buffer update during copy
472
                                I2C_WriteAttitude.Roll = FromFlightCtrl.AngleRoll;
473
                                I2C_WriteAttitude.Nick = FromFlightCtrl.AngleNick;
474
                                VIC_ITCmd(SSP0_ITLine, ENABLE);
475
                                break;
476
                        default: // unknown command id
477
                                I2C_RxBuffer = NULL;
478
                                I2C_RxBufferSize = 0;
479
                                I2C_TxBuffer =  NULL;
480
                                I2C_TxBufferSize = 0;
481
                                break;
482
                }
483
                // set direction to master transmitter
484
                I2C_Direction = I2C_MODE_TRANSMITTER;
485
                // test on busy flag and clear it
486
                I2C_CheckEvent( I2C1, I2C_FLAG_BUSY );
487
                // enable I2C IRQ again
488
                VIC_ITCmd(I2C1_ITLine, ENABLE);
489
                // initiate start condition on the bus
490
                I2C_GenerateStart(I2C1, ENABLE);
491
                // to be continued in the I2C1_IRQHandler() above
492
        } // EOF I2C_State == I2C_IDLE
493
        else // I2C_State != I2C_IDLE
494
        {
495
                // re-enable I2C IRQ again
496
                VIC_ITCmd(I2C1_ITLine, ENABLE);
497
        }      
41 ingob 498
}
1 ingob 499
 
41 ingob 500
//----------------------------------------------------------------
501
void I2C1_GetMK3MagVersion(void)
502
{
78 holgerb 503
        u8 msg[64];
154 killagreg 504
        u8 repeat;
149 killagreg 505
        u32 timeout;
150 killagreg 506
 
154 killagreg 507
        UART1_PutString("\r\n Getting Version from MK3MAG");
508
        // stop polling of other commands
150 killagreg 509
        I2C_StopPolling = 1;
1 ingob 510
 
41 ingob 511
        MK3MAG_Version.Major = 0xFF;
512
        MK3MAG_Version.Minor = 0xFF;
513
        MK3MAG_Version.Patch = 0xFF;
514
        MK3MAG_Version.Compatible = 0xFF;
150 killagreg 515
        // polling of version info
154 killagreg 516
        repeat = 0;
517
        do
41 ingob 518
        {
79 killagreg 519
                I2C1_SendCommand(I2C_CMD_VERSION);
154 killagreg 520
                timeout = SetDelay(250);
521
                do
522
                {
523
                        if (MK3MAG_Version.Major != 0xFF) break; // break loop on success
524
                }while (!CheckDelay(timeout));
525
                UART1_PutString(".");
526
                repeat++;
527
        }while ((MK3MAG_Version.Major == 0xFF) && (repeat < 12)); // 12*250ms=3s
528
        // if we got it
41 ingob 529
        if (MK3MAG_Version.Major != 0xFF)
79 killagreg 530
        {
154 killagreg 531
                sprintf(msg, "\r\n MK3MAG V%d.%d%c", MK3MAG_Version.Major, MK3MAG_Version.Minor, 'a' + MK3MAG_Version.Patch);
110 killagreg 532
                UART1_PutString(msg);
41 ingob 533
                sprintf(msg, " Compatible: %d", MK3MAG_Version.Compatible);
110 killagreg 534
                UART1_PutString(msg);
41 ingob 535
        }
154 killagreg 536
        else UART1_PutString("\n\r No version information from MK3Mag.");
150 killagreg 537
 
154 killagreg 538
        I2C_StopPolling = 0; // enable polling of heading command
146 killagreg 539
}
1 ingob 540
 
146 killagreg 541
 
542
//----------------------------------------------------------------
543
void I2C1_UpdateCompass(void)
544
{
545
        static u32 TimerCompassUpdate = 0;
546
 
154 killagreg 547
        if( (I2C_State == I2C_OFF) || I2C_StopPolling ) return;
149 killagreg 548
 
549
        if(CheckDelay(TimerCompassUpdate))
146 killagreg 550
        {
149 killagreg 551
                // check for incomming compass calibration request
552
                // update CalByte from spi input queue
553
                fifo_get(&CompassCalcStateFiFo, (u8 *)&(I2C_WriteCal.CalByte));
554
                // send new calstate
555
                if(I2C_ReadCal.CalByte != I2C_WriteCal.CalByte)
146 killagreg 556
                {
149 killagreg 557
                        I2C1_SendCommand(I2C_CMD_WRITE_CAL);
146 killagreg 558
                }
149 killagreg 559
                else // request current heading
560
                {
561
                        I2C1_SendCommand(I2C_CMD_READ_HEADING);
562
                }
195 killagreg 563
                TimerCompassUpdate = SetDelay(20);    // every 20 ms are 50 Hz
146 killagreg 564
        }
1 ingob 565
}