Subversion Repositories NaviCtrl

Rev

Rev 37 | Rev 61 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 37 Rev 41
Line 52... Line 52...
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
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
54
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
55
// +  POSSIBILITY OF SUCH DAMAGE.
55
// +  POSSIBILITY OF SUCH DAMAGE.
56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
 
57
#include <stdlib.h>
-
 
58
#include <string.h>
-
 
59
#include "91x_lib.h"
-
 
60
#include "i2c.h"
-
 
61
#include "uart1.h"
-
 
62
#include "timer.h"
57
#include "main.h"
63
#include "main.h"
-
 
64
#include "led.h"
-
 
65
#include "spi_slave.h"
-
 
66
 
-
 
67
 
-
 
68
volatile I2C_State_t I2C_State = I2C_OFF;
-
 
69
 
-
 
70
// rxbuffer
-
 
71
volatile u8 I2C_RxBufferSize;
-
 
72
volatile u8 *I2C_RxBuffer;
-
 
73
volatile u8 Rx_Idx = 0;
-
 
74
// txbuffer
-
 
75
volatile u8 I2C_TxBufferSize;
-
 
76
volatile u8 *I2C_TxBuffer;
-
 
77
volatile u8 Tx_Idx = 0;
-
 
78
 
-
 
79
volatile u8 I2C_Direction;
-
 
80
volatile u8 I2C_Command;
-
 
81
 
-
 
82
volatile I2C_Heading_t                  I2C_Heading;
-
 
83
volatile I2C_WriteAttitude_t    I2C_WriteAttitude;
-
 
84
volatile I2C_Mag_t                              I2C_Mag;
-
 
85
volatile I2C_Version_t                  MK3MAG_Version;
-
 
86
volatile I2C_Cal_t                              I2C_WriteCal;
-
 
87
volatile I2C_Cal_t                              I2C_ReadCal;
Line 58... Line -...
58
 
-
 
59
u8 I2C_RxBufferSize, I2C_TxBufferSize;
-
 
60
u8 *I2C_TxBuffer, *I2C_RxBuffer;
-
 
61
u8 Tx_Idx=0, Rx_Idx=0, I2C_Direction;
-
 
62
u8 I2C_Command;
-
 
63
 
-
 
64
struct str_I2C_Heading       I2C_Heading;
-
 
65
struct str_I2C_WriteNickRoll I2C_WriteNickRoll;
-
 
66
struct str_I2C_Mag           I2C_Mag;
-
 
67
struct str_I2C_EEPROM        I2C_ReadEEPROM, I2C_WriteEEPROM;
-
 
68
struct str_I2C_Version       I2C_Version;
-
 
69
struct str_I2C_WriteCal      I2C_WriteCal;
-
 
70
u8 CompassUpdateActiv = 0;
-
 
71
u8 CompassCalState = 0;
88
 
-
 
89
volatile u8 I2C_ReadRequest = 0;
-
 
90
volatile u32 I2C1_Timeout = 0;
-
 
91
volatile u32 CheckI2COkay = 0;
-
 
92
volatile u8 I2C_PrimRxBuffer[10]; // must be larger than any of the secondary rx buffers
Line 72... Line 93...
72
volatile u8 I2C_ReadRequest = 0;
93
 
73
 
94
 
74
//--------------------------------------------------------------
95
//--------------------------------------------------------------
75
void I2C1_Init(void)
96
void I2C1_Init(void)
76
{
97
{
Line 77... Line 98...
77
    I2C_InitTypeDef   I2C_Struct;
98
        I2C_InitTypeDef   I2C_Struct;
-
 
99
        GPIO_InitTypeDef  GPIO_InitStructure;
78
  GPIO_InitTypeDef  GPIO_Struct;
100
 
-
 
101
        SerialPutString("\r\n I2C init...");
-
 
102
        // enable Port 2 peripherie
-
 
103
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
-
 
104
        // disable a reset state
-
 
105
        SCU_APBPeriphReset(__GPIO2, DISABLE);
-
 
106
 
-
 
107
        // free a busy bus
-
 
108
 
-
 
109
        // At switch on I2C devices can get in a state where they
-
 
110
        // are still waiting for a command due to all the bus lines bouncing
-
 
111
        // around at startup have started clocking data into the device(s).
-
 
112
        // Enable the ports as open collector port outputs
-
 
113
        // and clock out at least 9 SCL pulses, then generate a stop
-
 
114
        // condition and then leave the clock line high.
-
 
115
 
-
 
116
        // configure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT to normal port operation
-
 
117
        GPIO_StructInit(&GPIO_InitStructure);
-
 
118
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
-
 
119
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
-
 
120
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
-
 
121
        GPIO_InitStructure.GPIO_IPConnected = GPIO_IPConnected_Disable;
-
 
122
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt1;
-
 
123
        GPIO_Init(GPIO2, &GPIO_InitStructure);
-
 
124
 
-
 
125
        u8 i;
-
 
126
        u32 delay;
-
 
127
        // set SCL high and then SDA to low (start condition)
-
 
128
        GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
-
 
129
        delay = SetDelay(1);
-
 
130
        while (!CheckDelay(delay));
-
 
131
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_RESET);
-
 
132
        // toggle SCL at least 10 times from high to low to high
-
 
133
        for(i = 0; i < 10; i++)
-
 
134
        {
-
 
135
                delay = SetDelay(1);
-
 
136
                while (!CheckDelay(delay));
-
 
137
 
-
 
138
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_RESET);
-
 
139
                delay = SetDelay(1);
79
 
140
                while (!CheckDelay(delay));
-
 
141
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
-
 
142
        }
-
 
143
        delay = SetDelay(1);
-
 
144
        while (!CheckDelay(delay));
-
 
145
        // create stop condition setting SDA HIGH when SCL is HIGH
-
 
146
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_SET);
-
 
147
 
-
 
148
 
-
 
149
        // reconfigure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT
-
 
150
        GPIO_StructInit(&GPIO_InitStructure);
-
 
151
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
-
 
152
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
-
 
153
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
Line 80... Line 154...
80
  SerialPutString("I2C init...");
154
        GPIO_InitStructure.GPIO_IPConnected = GPIO_IPConnected_Enable;
81
  SCU_APBPeriphClockConfig(__I2C1,ENABLE);
155
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt2; //I2C1_CLKOUT, I2C1_DOUT
82
  I2C_DeInit(I2C1);
156
        GPIO_Init(GPIO2, &GPIO_InitStructure);
83
 
157
 
84
  GPIO_Struct.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
158
        // enable I2C peripherie
Line -... Line 159...
-
 
159
        SCU_APBPeriphClockConfig(__I2C1,ENABLE);
-
 
160
        // reset I2C peripherie
85
  GPIO_Struct.GPIO_Type = GPIO_Type_OpenCollector;
161
        SCU_APBPeriphReset(__I2C1,ENABLE);
86
  GPIO_Struct.GPIO_IPConnected = GPIO_IPConnected_Enable;
162
        SCU_APBPeriphReset(__I2C1,DISABLE);
87
  GPIO_Struct.GPIO_Alternate=GPIO_OutputAlt2;
163
 
88
  GPIO_Init(GPIO2, &GPIO_Struct);
164
        I2C_DeInit(I2C1);
89
 
165
        I2C_StructInit(&I2C_Struct);
Line -... Line 166...
-
 
166
        I2C_Struct.I2C_GeneralCall = I2C_GeneralCall_Disable;
-
 
167
        I2C_Struct.I2C_Ack = I2C_Ack_Enable;
-
 
168
        I2C_Struct.I2C_CLKSpeed = 20000;
-
 
169
        I2C_Struct.I2C_OwnAddress = 0x00;
-
 
170
        I2C_Init(I2C1, &I2C_Struct);
-
 
171
 
-
 
172
        I2C_TxBuffer = NULL;
-
 
173
        Tx_Idx = 0;
90
  I2C_Struct.I2C_GeneralCall = I2C_GeneralCall_Disable;
174
        I2C_TxBufferSize = 0;
91
  I2C_Struct.I2C_Ack = I2C_Ack_Enable;
175
 
Line 92... Line 176...
92
  I2C_Struct.I2C_CLKSpeed = 20000;
176
        I2C_RxBuffer = NULL;
93
  I2C_Struct.I2C_OwnAddress = I2C_SLAVE_ADDRESS;
177
        Rx_Idx = 0;
Line -... Line 178...
-
 
178
        I2C_RxBufferSize = 0;
94
  I2C_Init(I2C1, &I2C_Struct);
179
 
-
 
180
        I2C_Cmd(I2C1, ENABLE);
-
 
181
        I2C_ITConfig(I2C1, ENABLE);
-
 
182
 
95
 
183
        VIC_Config(I2C1_ITLine, VIC_IRQ , 0);
-
 
184
        VIC_ITCmd(I2C1_ITLine, ENABLE);
-
 
185
 
-
 
186
        I2C1_Timeout = SetDelay(1000);
-
 
187
        I2C_Heading.Heading = -1;
-
 
188
        I2C_GenerateSTOP(I2C1, ENABLE);
-
 
189
        I2C_State = I2C_IDLE;
-
 
190
 
-
 
191
        SerialPutString("ok");
-
 
192
}
-
 
193
 
-
 
194
 
-
 
195
//--------------------------------------------------------------
-
 
196
void I2C1_Deinit(void)
-
 
197
{
-
 
198
        GPIO_InitTypeDef  GPIO_InitStructure;  
-
 
199
 
-
 
200
        SerialPutString("\r\n I2C deinit...");
-
 
201
        I2C_GenerateStart(I2C1, DISABLE);
-
 
202
        I2C_GenerateSTOP(I2C1, ENABLE);
-
 
203
        VIC_ITCmd(I2C1_ITLine, DISABLE);
-
 
204
        I2C_ITConfig(I2C1, DISABLE);
-
 
205
        I2C_Cmd(I2C1, DISABLE);
-
 
206
        I2C_DeInit(I2C1);
-
 
207
        SCU_APBPeriphClockConfig(__I2C1, DISABLE);
-
 
208
       
-
 
209
        // set ports to input
-
 
210
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
-
 
211
        GPIO_StructInit(&GPIO_InitStructure);
-
 
212
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
-
 
213
    GPIO_InitStructure.GPIO_Pin =                       GPIO_Pin_2 | GPIO_Pin_3;
-
 
214
    GPIO_InitStructure.GPIO_Type =                      GPIO_Type_PushPull;
-
 
215
        GPIO_InitStructure.GPIO_IPConnected =   GPIO_IPConnected_Disable;
-
 
216
    GPIO_InitStructure.GPIO_Alternate =         GPIO_InputAlt1;
-
 
217
    GPIO_Init(GPIO2, &GPIO_InitStructure);
Line -... Line 218...
-
 
218
 
Line -... Line 219...
-
 
219
        I2C_TxBuffer = NULL;
-
 
220
        Tx_Idx = 0;
-
 
221
        I2C_TxBufferSize = 0;
-
 
222
 
96
  I2C_Cmd(I2C1, ENABLE);
223
        I2C_RxBuffer = NULL;
Line -... Line 224...
-
 
224
        Rx_Idx = 0;
97
  I2C_ITConfig(I2C1, ENABLE);
225
        I2C_RxBufferSize = 0;
98
 
226
 
99
  VIC_Config(I2C1_ITLine,VIC_IRQ , 8);
227
        I2C_State = I2C_OFF;
-
 
228
 
-
 
229
        I2C1_Timeout = 0;
-
 
230
        I2C_Heading.Heading = -1;
-
 
231
 
-
 
232
        SerialPutString("ok");
-
 
233
}
-
 
234
 
-
 
235
 
-
 
236
//--------------------------------------------------------------
-
 
237
void I2C1_IRQHandler(void)
-
 
238
{
-
 
239
        u16 status;
-
 
240
        static u8 crc;
-
 
241
        // detemine I2C State
-
 
242
        status = I2C_GetLastEvent(I2C1);
-
 
243
 
-
 
244
        if(status & (I2C_FLAG_AF|I2C_FLAG_BERR))  // if an acknowledge failure or bus error occured
-
 
245
        {   // Set and subsequently clear the STOP bit while BTF is set.
-
 
246
                while(I2C_GetFlagStatus (I2C1, I2C_FLAG_BTF) != RESET)
-
 
247
                {
-
 
248
                        I2C_GenerateSTOP (I2C1, ENABLE); // free the bus
-
 
249
                        I2C_GenerateSTOP (I2C1, DISABLE); // free the bus
-
 
250
                }
-
 
251
                I2C_State = I2C_IDLE;
-
 
252
                LED_GRN_OFF;
-
 
253
        }
-
 
254
        else
-
 
255
        {       // depending on current i2c state
Line 100... Line 256...
100
  VIC_ITCmd(I2C1_ITLine, ENABLE);
256
                switch (status)
-
 
257
                {
101
 
258
                        // the start condition was initiated on the bus
102
  I2C_Heading.Heading = 0;
259
                        case I2C_EVENT_MASTER_MODE_SELECT:
-
 
260
                                LED_GRN_ON;
-
 
261
                                // update current bus state variable
-
 
262
                                switch(I2C_Direction)
-
 
263
                                {
-
 
264
                                        case I2C_MODE_TRANSMITTER:
-
 
265
                                                I2C_State = I2C_TX_PROGRESS;
-
 
266
                                                break;
-
 
267
       
-
 
268
                                        case I2C_MODE_RECEIVER:
-
 
269
                                                if ((I2C_RxBuffer == NULL) || (I2C_RxBufferSize == 0))
-
 
270
                                                {
-
 
271
                                                        I2C_GenerateSTOP (I2C1, ENABLE);
103
  SerialPutString("ok\n\r");
272
                                                        I2C_State = I2C_IDLE;
104
 
273
                                                        return;
-
 
274
                                                }
-
 
275
                                                else
-
 
276
                                                {
-
 
277
                                                        I2C_State = I2C_RX_PROGRESS;
105
 
278
                                                }
106
}
-
 
107
 
279
                                                break;
Line -... Line 280...
-
 
280
       
108
//--------------------------------------------------------------
281
                                        default: // invalid direction
109
void I2C1_IRQHandler(void)
282
                                                I2C_GenerateSTOP (I2C1, ENABLE);
110
{
283
                                                I2C_State = I2C_IDLE;
-
 
284
                                                LED_GRN_OFF;
-
 
285
                                                return;
111
 
286
                                }
112
  switch (I2C_GetLastEvent(I2C1))
287
                                // enable acknowledge
-
 
288
                                I2C_AcknowledgeConfig (I2C1, ENABLE);
-
 
289
                                // send address/direction byte on the bus
113
  {
290
                                I2C_Send7bitAddress(I2C1, I2C_SLAVE_ADDRESS, I2C_Direction);
-
 
291
                                break;
-
 
292
       
-
 
293
                        // the address byte was send
-
 
294
                        case I2C_EVENT_MASTER_MODE_SELECTED:
-
 
295
                                // Clear EV6 by set again the PE bit
-
 
296
                                I2C_Cmd(I2C1, ENABLE);
-
 
297
                                // reset checksum
-
 
298
                                crc = 0;
-
 
299
                                switch(I2C_State)
-
 
300
                                {
-
 
301
                                        case I2C_TX_PROGRESS:
-
 
302
                                        // send command 1st data byte (allways the command id) 
-
 
303
                                        I2C_SendData(I2C1, I2C_Command);
-
 
304
                                        crc += I2C_Command;
-
 
305
                                        Tx_Idx = 0;
114
    case I2C_EVENT_MASTER_MODE_SELECT:             // EV5
306
                                        // reset timeout
115
      Tx_Idx = 0;
307
                                        I2C1_Timeout = SetDelay(500); // after 500 ms of inactivity the I2C1 bus will be reset
Line -... Line 308...
-
 
308
                                        break;
116
          Rx_Idx = 0;
309
       
-
 
310
                                        case I2C_RX_PROGRESS:
117
          I2C_Send7bitAddress(I2C1, I2C_SLAVE_ADDRESS, I2C_Direction);
311
                                        Rx_Idx = 0;
118
//        DebugOut.Analog[16]++;
312
                                        break;
119
      break;
313
       
120
 
314
                                        default: // unknown I2C state
121
    case I2C_EVENT_MASTER_MODE_SELECTED:           // EV6
-
 
122
      // Clear EV6 by set again the PE bit
-
 
123
      I2C1->CR |=  0x20;
315
                                        // should never happen
124
      if (I2C_Direction == I2C_MODE_TRANSMITTER)
316
                                        I2C_GenerateSTOP (I2C1, ENABLE);
125
      {
317
                                        I2C_State = I2C_IDLE;
126
             I2C_SendData(I2C1, I2C_Command);//EV8 just after EV6
-
 
127
          }
318
                                        break;
128
      break;
319
                                }
129
 
320
                                break;
130
    case I2C_EVENT_MASTER_BYTE_TRANSMITTED:         // EV8
321
       
-
 
322
                        // the master has transmitted a byte and slave has been acknowledged
-
 
323
                        case I2C_EVENT_MASTER_BYTE_TRANSMITTED:
-
 
324
                                       
-
 
325
                                // some bytes have to be transmitted
131
//      DebugOut.Analog[17]++;
326
                                if(Tx_Idx < I2C_TxBufferSize)
-
 
327
                                {
-
 
328
                                        if(I2C_TxBuffer != NULL)
-
 
329
                                        {
-
 
330
                                                I2C_SendData(I2C1, I2C_TxBuffer[Tx_Idx]);
-
 
331
                                                crc += I2C_TxBuffer[Tx_Idx];
-
 
332
                                        }
132
          if ( Tx_Idx >= I2C_TxBufferSize )
333
                                        else
-
 
334
                                        {
-
 
335
                                                I2C_SendData(I2C1, 0x00);
-
 
336
                                        }
-
 
337
                                }
-
 
338
                                else // the last tx buffer byte was send
-
 
339
                                {
-
 
340
                                        // send crc byte at the end
-
 
341
                                        I2C_SendData(I2C1, crc);
-
 
342
                                        // generate stop or repeated start condition
133
      {
343
                                        if ((I2C_RxBuffer != NULL) && (I2C_RxBufferSize > 0)) // is any answer byte expected?
Line -... Line 344...
-
 
344
                                        {
134
        I2C_GenerateSTOP (I2C1, ENABLE);
345
                                                I2C_Direction = I2C_MODE_RECEIVER; // switch to master receiver after repeated start condition 
135
        Tx_Idx = 0;
346
                                                I2C_GenerateStart(I2C1, ENABLE);   // initiate repeated start condition on the bus
136
                if (I2C_RxBufferSize > 0)                  // wird Antwort erwartet ?
-
 
137
                {
347
                                        }
138
                  I2C_ReadRequest = 1;
348
                                        else
139
                  TimerI2CReadDelay = SetDelay(10);
-
 
140
                }
349
                                        {   // stop communication
141
      }
-
 
142
      else
350
                                                I2C_GenerateSTOP(I2C1, ENABLE); // generate stop condition to free the bus
143
      {
351
                                                I2C_State = I2C_IDLE;                   // ready for new actions
144
        I2C_SendData(I2C1, I2C_TxBuffer[Tx_Idx]);
-
 
145
        Tx_Idx++;
-
 
146
      }
352
                                                LED_GRN_OFF;
-
 
353
                                                DebugOut.Analog[15]++;
147
      break;
354
                                        }
148
 
355
                                }
-
 
356
                                Tx_Idx++;      
149
    case I2C_EVENT_MASTER_BYTE_RECEIVED:           // EV7
357
                                break;
-
 
358
       
-
 
359
                        // the master has received a byte from the slave
150
          DebugOut.Analog[16]++;
360
                case I2C_EVENT_MASTER_BYTE_RECEIVED:
-
 
361
                                // some bytes have to be received
-
 
362
                                if (Rx_Idx < I2C_RxBufferSize)
-
 
363
                                {       // copy received byte  from the data register to the rx-buffer
-
 
364
                                        I2C_PrimRxBuffer[Rx_Idx] = I2C_ReceiveData(I2C1);
-
 
365
                                        // update checksum
-
 
366
                                        crc += I2C_PrimRxBuffer[Rx_Idx];
-
 
367
                                }
-
 
368
                                // if the last byte (crc) was received
-
 
369
                                else if ( Rx_Idx == I2C_RxBufferSize)
-
 
370
                                {
-
 
371
                                        // generate a STOP condition on the bus before reading data register
-
 
372
                                        I2C_GenerateSTOP(I2C1, ENABLE);
-
 
373
                                        // compare last byte with checksum
-
 
374
                                        if(crc == I2C_ReceiveData(I2C1))
-
 
375
                                        {       // copy primary rx buffer content to rx buffer if exist
-
 
376
                                                if(I2C_RxBuffer != NULL)
-
 
377
                                                {
-
 
378
                                                        memcpy((u8 *)I2C_RxBuffer, (u8 *)I2C_PrimRxBuffer, I2C_RxBufferSize);
-
 
379
                                                }
151
          //if (Rx_Idx == 1) DebugOut.Analog[19] = I2C_RxBuffer[0];
380
                                                DebugOut.Analog[15]++;
152
          if (Rx_Idx < I2C_RxBufferSize)
381
                                                CheckI2COkay++;
Line 153... Line 382...
153
          { I2C_RxBuffer[Rx_Idx] = I2C_ReceiveData(I2C1);
382
                                        }
154
 
383
                                        else // checksum error detected
155
          }     else I2C_ReceiveData(I2C1);
384
                                        {
156
 
385
                                                DebugOut.Analog[14]++;
-
 
386
                                        }
157
          Rx_Idx++;
387
                                        I2C_State = I2C_IDLE;
158
          if ( Rx_Idx == I2C_RxBufferSize+1 )
388
                                        LED_GRN_OFF;   
159
      {
389
                                }
-
 
390
                                Rx_Idx++;
-
 
391
                                // if the 2nd last byte was received disable acknowledge for the last one
-
 
392
                                if ( Rx_Idx == I2C_RxBufferSize )
-
 
393
                                {
-
 
394
                                        I2C_AcknowledgeConfig (I2C1, DISABLE);
-
 
395
                                }
160
        I2C_AcknowledgeConfig (I2C1, DISABLE);
396
                                break;
161
      }
397
       
162
      if ( Rx_Idx == I2C_RxBufferSize+2 )
-
 
163
      {
398
                        default:
164
        I2C_GenerateSTOP(I2C1, ENABLE);
399
                                break;
165
                if (I2C_Command == I2C_CMD_READ_HEADING) CompassUpdateActiv = 0;
400
                }
166
      }
401
        }
167
      break;
402
}
-
 
403
//----------------------------------------------------------------
168
 
404
void I2C1_SendCommand(u8 command)
169
    default:
405
{
170
      break;
-
 
171
  }
-
 
172
}
-
 
173
//----------------------------------------------------------------
-
 
174
void SendI2C_Command(u8 command)
-
 
175
{
406
        // If I2C transmission is in progress
176
  I2C_Command = command;
407
        while (I2C_State != I2C_IDLE) return; // return imediatly if a transfer is still in progress
177
  //I2C_GenerateSTOP(I2C1, ENABLE);
408
        // disable I2C IRQ to avoid read/write access to the tx/rx buffer pointers during
178
 
409
        // update of that buffer pointers and length
179
  switch (command)
410
        I2C_ITConfig(I2C1, DISABLE);
180
  {
411
        // update current command id
181
    case I2C_CMD_VERSION:
-
 
182
           I2C_RxBuffer = (u8 *)&I2C_Version;
-
 
183
                   I2C_RxBufferSize = sizeof(I2C_Version);
-
 
184
                   I2C_TxBufferSize = 0;
-
 
185
          break;
-
 
186
        case I2C_CMD_WRITE_EEPROM:
-
 
187
                   I2C_RxBufferSize = 0;
412
        I2C_Command = command;
188
                   I2C_TxBuffer = (u8 *)&I2C_WriteEEPROM;
413
        // set pointers to data area with respect to the command id
189
                   I2C_TxBufferSize = sizeof(I2C_WriteEEPROM);
414
        switch (command)
-
 
415
        {
190
          break;
416
            case I2C_CMD_VERSION:
191
        case I2C_CMD_WRITE_CAL:
417
                        I2C_RxBuffer = (u8 *)&MK3MAG_Version;
192
                   I2C_RxBufferSize = 0;
418
                        I2C_RxBufferSize = sizeof(MK3MAG_Version);
193
                   I2C_WriteCal.CalByte = CompassCalState;
419
                        I2C_TxBuffer = NULL;
194
                   I2C_TxBuffer = (u8 *)&I2C_WriteCal;
420
                        I2C_TxBufferSize = 0;
195
                   I2C_TxBufferSize = sizeof(I2C_WriteCal);
421
                        break;
-
 
422
                case I2C_CMD_WRITE_CAL:
-
 
423
                        I2C_RxBuffer = (u8 *)&I2C_ReadCal;
-
 
424
                        I2C_RxBufferSize = sizeof(I2C_ReadCal);
196
          break;
425
                        I2C_TxBuffer = (u8 *)&I2C_WriteCal;
197
    case I2C_CMD_READ_EEPROM:
426
                        I2C_TxBufferSize = sizeof(I2C_WriteCal);
198
           I2C_RxBuffer = (u8 *)&I2C_ReadEEPROM.Inhalt;
427
                        break;
-
 
428
            case I2C_CMD_READ_MAG:
-
 
429
                        I2C_RxBuffer = (u8 *)&I2C_Mag;
-
 
430
                        I2C_RxBufferSize = sizeof(I2C_Mag);
-
 
431
                        I2C_TxBuffer = NULL;
-
 
432
                        I2C_TxBufferSize = 0;
-
 
433
                        break;
-
 
434
            case I2C_CMD_READ_HEADING:
-
 
435
                        DebugOut.Analog[26] = I2C_Heading.Heading;
-
 
436
                        I2C_RxBuffer = (u8 *)&I2C_Heading;
-
 
437
                        I2C_RxBufferSize = sizeof(I2C_Heading);
-
 
438
                        // updat atitude from spi rx buffer
-
 
439
                        I2C_WriteAttitude.Roll = FromFlightCtrl.IntegralRoll;
-
 
440
                        I2C_WriteAttitude.Nick = FromFlightCtrl.IntegralNick;
-
 
441
                        I2C_TxBuffer =  (u8 *)&I2C_WriteAttitude;
-
 
442
                        I2C_TxBufferSize = sizeof(I2C_WriteAttitude);
-
 
443
                        break;
-
 
444
                default: // unknown command id
-
 
445
                        I2C_RxBuffer = NULL;
Line 199... Line 446...
199
                   I2C_RxBufferSize = 2;
446
                        I2C_RxBufferSize = 0;
200
                   I2C_TxBuffer = (u8 *)&I2C_ReadEEPROM;
447
                        I2C_TxBuffer =  NULL;
-
 
448
                        I2C_TxBufferSize = 0;
201
                   I2C_TxBufferSize = 1;
449
                        break;
202
          break;
450
        }
203
    case I2C_CMD_READ_MAG:
451
        // enable I2C IRQ again
204
           I2C_RxBuffer = (u8 *)&I2C_Mag;
452
        I2C_ITConfig(I2C1, ENABLE);
205
                   I2C_RxBufferSize = sizeof(I2C_Mag);
-
 
Line -... Line 453...
-
 
453
        // set direction to master transmitter
-
 
454
        I2C_Direction = I2C_MODE_TRANSMITTER;
206
                   I2C_TxBufferSize = 0;
455
        // test on busy flag and clear it 
207
          break;
456
        I2C_CheckEvent( I2C1, I2C_FLAG_BUSY );
Line -... Line 457...
-
 
457
        // initiale start condition on the bus 
-
 
458
        I2C_GenerateStart(I2C1, ENABLE);
208
    case I2C_CMD_READ_HEADING:
459
        // to be continued in the I2C1_IRQHandler() above
-
 
460
 
-
 
461
       
-
 
462
   
-
 
463
}
-
 
464
 
-
 
465
//----------------------------------------------------------------
-
 
466
void I2C1_GetMK3MagVersion(void)
-
 
467
{
-
 
468
        u8 msg[20];
-
 
469
    u8 repeat = 10;
-
 
470
 
-
 
471
        MK3MAG_Version.Major = 0xFF;
-
 
472
        MK3MAG_Version.Minor = 0xFF;
Line 209... Line 473...
209
               CompassUpdateActiv = 1;
473
        MK3MAG_Version.Patch = 0xFF;