Subversion Repositories NaviCtrl

Rev

Rev 326 | Rev 362 | 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
// + www.MikroKopter.com
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 7
// + Software Nutzungsbedingungen (english version: see below)
8
// + der Fa. HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland - nachfolgend Lizenzgeber genannt -
9
// + Der Lizenzgeber räumt dem Kunden ein nicht-ausschließliches, zeitlich und räumlich* unbeschränktes Recht ein, die im den
10
// + Mikrocontroller verwendete Firmware für die Hardware Flight-Ctrl, Navi-Ctrl, BL-Ctrl, MK3Mag & PC-Programm MikroKopter-Tool 
11
// + - nachfolgend Software genannt - nur für private Zwecke zu nutzen.
12
// + Der Einsatz dieser Software ist nur auf oder mit Produkten des Lizenzgebers zulässig.
1 ingob 13
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 14
// + Die vom Lizenzgeber gelieferte Software ist urheberrechtlich geschützt. Alle Rechte an der Software sowie an sonstigen im
15
// + Rahmen der Vertragsanbahnung und Vertragsdurchführung überlassenen Unterlagen stehen im Verhältnis der Vertragspartner ausschließlich dem Lizenzgeber zu.
16
// + Die in der Software enthaltenen Copyright-Vermerke, Markenzeichen, andere Rechtsvorbehalte, Seriennummern sowie
17
// + sonstige der Programmidentifikation dienenden Merkmale dürfen vom Kunden nicht verändert oder unkenntlich gemacht werden.
18
// + Der Kunde trifft angemessene Vorkehrungen für den sicheren Einsatz der Software. Er wird die Software gründlich auf deren
19
// + Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
20
// + Die Haftung des Lizenzgebers wird - soweit gesetzlich zulässig - begrenzt in Höhe des typischen und vorhersehbaren
21
// + Schadens. Die gesetzliche Haftung bei Personenschäden und nach dem Produkthaftungsgesetz bleibt unberührt. Dem Lizenzgeber steht jedoch der Einwand 
22
// + des Mitverschuldens offen.
23
// + Der Kunde trifft angemessene Vorkehrungen für den Fall, dass die Software ganz oder teilweise nicht ordnungsgemäß arbeitet.
24
// + Er wird die Software gründlich auf deren Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
25
// + Der Kunde wird er seine Daten vor Einsatz der Software nach dem Stand der Technik sichern.
26
// + Der Kunde ist darüber unterrichtet, dass der Lizenzgeber seine Daten im zur Vertragsdurchführung erforderlichen Umfang
27
// + und auf Grundlage der Datenschutzvorschriften erhebt, speichert, verarbeitet und, sofern notwendig, an Dritte übermittelt.
28
// + *) Die räumliche Nutzung bezieht sich nur auf den Einsatzort, nicht auf die Reichweite der programmierten Software.
29
// + #### ENDE DER NUTZUNGSBEDINGUNGEN ####'
30
// +  Hinweis: Informationen über erweiterte Nutzungsrechte (wie z.B. Nutzung für nicht-private Zwecke) sind auf Anfrage per Email an info(@)hisystems.de verfügbar.
1 ingob 31
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 32
// + Software LICENSING TERMS
1 ingob 33
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 34
// + of HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland, Germany - the Licensor -
35
// + The Licensor grants the customer a non-exclusive license to use the microcontroller firmware of the Flight-Ctrl, Navi-Ctrl, BL-Ctrl, and MK3Mag hardware 
36
// + (the Software) exclusively for private purposes. The License is unrestricted with respect to time and territory*.
37
// + The Software may only be used with the Licensor's products.
38
// + The Software provided by the Licensor is protected by copyright. With respect to the relationship between the parties to this
39
// + agreement, all rights pertaining to the Software and other documents provided during the preparation and execution of this
40
// + agreement shall be the property of the Licensor.
41
// + The information contained in the Software copyright notices, trademarks, other legal reservations, serial numbers and other
42
// + features that can be used to identify the program may not be altered or defaced by the customer.
43
// + The customer shall be responsible for taking reasonable precautions
44
// + for the safe use of the Software. The customer shall test the Software thoroughly regarding its suitability for the
45
// + intended purpose before implementing it for actual operation. The Licensor's liability shall be limited to the extent of typical and
46
// + foreseeable damage to the extent permitted by law, notwithstanding statutory liability for bodily injury and product
47
// + liability. However, the Licensor shall be entitled to the defense of contributory negligence.
48
// + The customer will take adequate precautions in the case, that the software is not working properly. The customer will test
49
// + the software for his purpose before any operational usage. The customer will backup his data before using the software.
50
// + The customer understands that the Licensor collects, stores and processes, and, where required, forwards, customer data
51
// + to third parties to the extent necessary for executing the agreement, subject to applicable data protection and privacy regulations.
52
// + *) The territory aspect only refers to the place where the Software is used, not its programmed range.
53
// + #### END OF LICENSING TERMS ####
54
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
1 ingob 55
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 56
#include <string.h>
57
#include "91x_lib.h"
58
#include "i2c.h"
59
#include "uart1.h"
119 killagreg 60
#include "timer1.h"
136 killagreg 61
#include "config.h"
41 ingob 62
#include "led.h"
1 ingob 63
 
248 killagreg 64
 
252 killagreg 65
volatile u8 I2C_State = I2C_STATE_OFF;          // only one byte, because of sync by nesting irqs
66
volatile u8 I2C_Error = I2C_ERROR_NOACK;    // only one byte!
1 ingob 67
 
248 killagreg 68
// number of bytes to send
69
volatile u8 I2C_TxBufferSize;
70
// number of bytes to receive
41 ingob 71
volatile u8 I2C_RxBufferSize;
248 killagreg 72
// the transfer buffer
73
volatile u8 I2C_Buffer[I2C_BUFFER_LEN];
74
// the transfer direction 
41 ingob 75
volatile u8 I2C_Direction;
248 killagreg 76
// the slave address
241 killagreg 77
volatile u8 I2C_SlaveAddress = 0x00;
248 killagreg 78
// function pointer to process the received bytes
241 killagreg 79
I2C_pRxHandler_t I2C_pRxHandler = NULL;
248 killagreg 80
// goblal timeout 
41 ingob 81
volatile u32 I2C1_Timeout = 0;
1 ingob 82
 
83
//--------------------------------------------------------------
84
void I2C1_Init(void)
85
{
41 ingob 86
        I2C_InitTypeDef   I2C_Struct;
87
        GPIO_InitTypeDef  GPIO_InitStructure;
149 killagreg 88
 
241 killagreg 89
        I2C_State = I2C_STATE_OFF;
37 killagreg 90
 
110 killagreg 91
        UART1_PutString("\r\n I2C init...");
41 ingob 92
        // enable Port 2 peripherie
93
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
94
        // disable a reset state
95
        SCU_APBPeriphReset(__GPIO2, DISABLE);
1 ingob 96
 
41 ingob 97
        // free a busy bus
1 ingob 98
 
41 ingob 99
        // At switch on I2C devices can get in a state where they
100
        // are still waiting for a command due to all the bus lines bouncing
101
        // around at startup have started clocking data into the device(s).
102
        // Enable the ports as open collector port outputs
103
        // and clock out at least 9 SCL pulses, then generate a stop
104
        // condition and then leave the clock line high.
37 killagreg 105
 
41 ingob 106
        // configure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT to normal port operation
107
        GPIO_StructInit(&GPIO_InitStructure);
108
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
109
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
110
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
196 killagreg 111
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Disable;
41 ingob 112
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt1;
113
        GPIO_Init(GPIO2, &GPIO_InitStructure);
37 killagreg 114
 
41 ingob 115
        u8 i;
116
        u32 delay;
117
        // set SCL high and then SDA to low (start condition)
118
        GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
119
        delay = SetDelay(1);
120
        while (!CheckDelay(delay));
121
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_RESET);
122
        // toggle SCL at least 10 times from high to low to high
123
        for(i = 0; i < 10; i++)
124
        {
125
                delay = SetDelay(1);
126
                while (!CheckDelay(delay));
1 ingob 127
 
41 ingob 128
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_RESET);
129
                delay = SetDelay(1);
130
                while (!CheckDelay(delay));
131
                GPIO_WriteBit(GPIO2, GPIO_Pin_2, Bit_SET);
132
        }
133
        delay = SetDelay(1);
134
        while (!CheckDelay(delay));
135
        // create stop condition setting SDA HIGH when SCL is HIGH
136
        GPIO_WriteBit(GPIO2, GPIO_Pin_3, Bit_SET);
37 killagreg 137
 
138
 
41 ingob 139
        // reconfigure P2.2->I2C1_CLKOUT and P2.3->I2C1_DOUT
140
        GPIO_StructInit(&GPIO_InitStructure);
141
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
142
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
143
        GPIO_InitStructure.GPIO_Type = GPIO_Type_OpenCollector;
196 killagreg 144
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Enable;
41 ingob 145
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt2; //I2C1_CLKOUT, I2C1_DOUT
146
        GPIO_Init(GPIO2, &GPIO_InitStructure);
147
 
148
        // enable I2C peripherie
149
        SCU_APBPeriphClockConfig(__I2C1,ENABLE);
150
        // reset I2C peripherie
151
        SCU_APBPeriphReset(__I2C1,ENABLE);
152
        SCU_APBPeriphReset(__I2C1,DISABLE);
153
 
154
        I2C_DeInit(I2C1);
155
        I2C_StructInit(&I2C_Struct);
156
        I2C_Struct.I2C_GeneralCall = I2C_GeneralCall_Disable;
157
        I2C_Struct.I2C_Ack = I2C_Ack_Enable;
136 killagreg 158
        I2C_Struct.I2C_CLKSpeed = I2C1_CLOCK;
41 ingob 159
        I2C_Struct.I2C_OwnAddress = 0x00;
160
        I2C_Init(I2C1, &I2C_Struct);
161
 
248 killagreg 162
        // empty rx and tx buffer counters
41 ingob 163
        I2C_TxBufferSize = 0;
164
        I2C_RxBufferSize = 0;
165
 
166
        I2C_Cmd(I2C1, ENABLE);
167
        I2C_ITConfig(I2C1, ENABLE);
168
 
136 killagreg 169
        VIC_Config(I2C1_ITLine, VIC_IRQ , PRIORITY_I2C1);
41 ingob 170
 
189 killagreg 171
        I2C1_Timeout = SetDelay(10*I2C1_TIMEOUT);
41 ingob 172
        I2C_GenerateSTOP(I2C1, ENABLE);
241 killagreg 173
        I2C_State = I2C_STATE_IDLE;
41 ingob 174
 
248 killagreg 175
        // start some dummy transmissions cycles
176
        // to get the irq routine to work
177
        for(i=0;i<10;i++)
178
        {
179
                I2C_State = I2C_STATE_BUFFBUSY;
180
                I2C_Transmission(0,1,0,1);
181
                if(I2C_WaitForEndOfTransmission(10)) break;
182
                UART1_Putchar('.');
183
        }
110 killagreg 184
        UART1_PutString("ok");
1 ingob 185
}
186
 
41 ingob 187
 
1 ingob 188
//--------------------------------------------------------------
41 ingob 189
void I2C1_Deinit(void)
1 ingob 190
{
79 killagreg 191
        GPIO_InitTypeDef  GPIO_InitStructure;
110 killagreg 192
        UART1_PutString("\r\n I2C deinit...");
41 ingob 193
        I2C_GenerateStart(I2C1, DISABLE);
194
        I2C_GenerateSTOP(I2C1, ENABLE);
195
        VIC_ITCmd(I2C1_ITLine, DISABLE);
241 killagreg 196
        I2C_State = I2C_STATE_OFF;
41 ingob 197
        I2C_ITConfig(I2C1, DISABLE);
198
        I2C_Cmd(I2C1, DISABLE);
199
        I2C_DeInit(I2C1);
200
        SCU_APBPeriphClockConfig(__I2C1, DISABLE);
79 killagreg 201
 
41 ingob 202
        // set ports to input
203
        SCU_APBPeriphClockConfig(__GPIO2, ENABLE);
204
        GPIO_StructInit(&GPIO_InitStructure);
205
        GPIO_InitStructure.GPIO_Direction =     GPIO_PinInput;
79 killagreg 206
        GPIO_InitStructure.GPIO_Pin =                   GPIO_Pin_2 | GPIO_Pin_3;
207
        GPIO_InitStructure.GPIO_Type =                  GPIO_Type_PushPull;
196 killagreg 208
        GPIO_InitStructure.GPIO_IPInputConnected =      GPIO_IPInputConnected_Disable;
79 killagreg 209
        GPIO_InitStructure.GPIO_Alternate =     GPIO_InputAlt1;
210
        GPIO_Init(GPIO2, &GPIO_InitStructure);
1 ingob 211
 
241 killagreg 212
        // empty rx and tx buffer
41 ingob 213
        I2C_TxBufferSize = 0;
214
        I2C_RxBufferSize = 0;
37 killagreg 215
 
189 killagreg 216
        I2C1_Timeout = SetDelay(10*I2C1_TIMEOUT);
37 killagreg 217
 
110 killagreg 218
        UART1_PutString("ok");
41 ingob 219
}
1 ingob 220
 
41 ingob 221
//--------------------------------------------------------------
222
void I2C1_IRQHandler(void)
223
{
241 killagreg 224
        static u8 Rx_Idx = 0, Tx_Idx = 0;
41 ingob 225
        u16 status;
189 killagreg 226
 
195 killagreg 227
        //IENABLE;  // do not enable IRQ nesting for I2C!!!!
41 ingob 228
        // detemine I2C State
229
        status = I2C_GetLastEvent(I2C1);
230
 
231
        if(status & (I2C_FLAG_AF|I2C_FLAG_BERR))  // if an acknowledge failure or bus error occured
79 killagreg 232
        {       // Set and subsequently clear the STOP bit while BTF is set.
41 ingob 233
                while(I2C_GetFlagStatus (I2C1, I2C_FLAG_BTF) != RESET)
234
                {
189 killagreg 235
                        I2C_GenerateSTOP (I2C1, ENABLE);  // free the bus
41 ingob 236
                        I2C_GenerateSTOP (I2C1, DISABLE); // free the bus
237
                }
241 killagreg 238
                I2C_State = I2C_STATE_IDLE;
252 killagreg 239
                I2C_Error = I2C_ERROR_NOACK;
189 killagreg 240
                VIC_ITCmd(I2C1_ITLine, DISABLE);
41 ingob 241
                LED_GRN_OFF;
189 killagreg 242
                return;
41 ingob 243
        }
244
        else
245
        {       // depending on current i2c state
241 killagreg 246
                switch(status)
41 ingob 247
                {
248
                        // the start condition was initiated on the bus
249
                        case I2C_EVENT_MASTER_MODE_SELECT:
250
                                LED_GRN_ON;
251
                                // update current bus state variable
241 killagreg 252
                                // jump to rx state if there is nothing to send
41 ingob 253
                                switch(I2C_Direction)
254
                                {
255
                                        case I2C_MODE_TRANSMITTER:
241 killagreg 256
                                                I2C_State = I2C_STATE_TX_PROGRESS;
41 ingob 257
                                                break;
79 killagreg 258
 
41 ingob 259
                                        case I2C_MODE_RECEIVER:
248 killagreg 260
                                                if (I2C_RxBufferSize == 0) // nothing to send?
41 ingob 261
                                                {
262
                                                        I2C_GenerateSTOP (I2C1, ENABLE);
189 killagreg 263
                                                        VIC_ITCmd(I2C1_ITLine, DISABLE);
326 holgerb 264
//                                                      LED_GRN_OFF;
241 killagreg 265
                                                        I2C_State = I2C_STATE_IDLE;
252 killagreg 266
                                                        I2C_Error = I2C_ERROR_NONE;
41 ingob 267
                                                        return;
268
                                                }
269
                                                else
270
                                                {
241 killagreg 271
                                                        I2C_State = I2C_STATE_RX_PROGRESS;
41 ingob 272
                                                }
273
                                                break;
79 killagreg 274
 
41 ingob 275
                                        default: // invalid direction
276
                                                I2C_GenerateSTOP (I2C1, ENABLE);
189 killagreg 277
                                                VIC_ITCmd(I2C1_ITLine, DISABLE);
278
                                                LED_GRN_OFF;
241 killagreg 279
                                                I2C_State = I2C_STATE_IDLE;
252 killagreg 280
                                                I2C_Error = I2C_ERROR_UNKNOWN;
41 ingob 281
                                                return;
282
                                }
283
                                // enable acknowledge
284
                                I2C_AcknowledgeConfig (I2C1, ENABLE);
285
                                // send address/direction byte on the bus
241 killagreg 286
                                I2C_Send7bitAddress(I2C1, I2C_SlaveAddress, I2C_Direction);
41 ingob 287
                                break;
79 killagreg 288
 
41 ingob 289
                        // the address byte was send
290
                        case I2C_EVENT_MASTER_MODE_SELECTED:
291
                                // Clear EV6 by set again the PE bit
79 killagreg 292
                                I2C_Cmd(I2C1, ENABLE);
41 ingob 293
                                switch(I2C_State)
294
                                {
241 killagreg 295
                                        case I2C_STATE_TX_PROGRESS:
296
                                        // send 1st data byte
41 ingob 297
                                        Tx_Idx = 0;
248 killagreg 298
                                        I2C_SendData(I2C1, I2C_Buffer[Tx_Idx]);
241 killagreg 299
                                        Tx_Idx++;
41 ingob 300
                                        // reset timeout
189 killagreg 301
                                        I2C1_Timeout = SetDelay(I2C1_TIMEOUT); // after inactivity the I2C1 bus will be reset
41 ingob 302
                                        break;
79 killagreg 303
 
241 killagreg 304
                                        case I2C_STATE_RX_PROGRESS:
41 ingob 305
                                        Rx_Idx = 0;
241 killagreg 306
                                        // disable acknoledge if only one byte has to be read
307
                                        if(I2C_RxBufferSize == 1) I2C_AcknowledgeConfig (I2C1, DISABLE);               
41 ingob 308
                                        break;
79 killagreg 309
 
41 ingob 310
                                        default: // unknown I2C state
311
                                        // should never happen
312
                                        I2C_GenerateSTOP (I2C1, ENABLE);
189 killagreg 313
                                        LED_GRN_OFF;
314
                                        VIC_ITCmd(I2C1_ITLine, DISABLE);
241 killagreg 315
                                        I2C_State = I2C_STATE_IDLE;
252 killagreg 316
                                        I2C_Error = I2C_ERROR_UNKNOWN;
189 killagreg 317
                                        return;
41 ingob 318
                                        break;
319
                                }
320
                                break;
79 killagreg 321
 
41 ingob 322
                        // the master has transmitted a byte and slave has been acknowledged
323
                        case I2C_EVENT_MASTER_BYTE_TRANSMITTED:
79 killagreg 324
 
41 ingob 325
                                // some bytes have to be transmitted
326
                                if(Tx_Idx < I2C_TxBufferSize)
327
                                {
248 killagreg 328
                                        I2C_SendData(I2C1, I2C_Buffer[Tx_Idx]);
241 killagreg 329
                                        Tx_Idx++;
41 ingob 330
                                }
189 killagreg 331
                                else // last byte was send
332
                                {
41 ingob 333
                                        // generate stop or repeated start condition
241 killagreg 334
                                        if (I2C_RxBufferSize > 0) // is any answer byte expected?
41 ingob 335
                                        {
79 killagreg 336
                                                I2C_Direction = I2C_MODE_RECEIVER; // switch to master receiver after repeated start condition
337
                                                I2C_GenerateStart(I2C1, ENABLE);   // initiate repeated start condition on the bus
41 ingob 338
                                        }
339
                                        else
340
                                        {   // stop communication
341
                                                I2C_GenerateSTOP(I2C1, ENABLE); // generate stop condition to free the bus
189 killagreg 342
                                                VIC_ITCmd(I2C1_ITLine, DISABLE);
326 holgerb 343
//                                              LED_GRN_OFF;
252 killagreg 344
                                                I2C_State = I2C_STATE_IDLE;                     // ready for new actions
345
                                                I2C_Error = I2C_ERROR_NONE;    
41 ingob 346
                                        }
347
                                }
348
                                break;
79 killagreg 349
 
41 ingob 350
                        // the master has received a byte from the slave
79 killagreg 351
                        case I2C_EVENT_MASTER_BYTE_RECEIVED:
41 ingob 352
                                // some bytes have to be received
241 killagreg 353
                                if ( Rx_Idx+1 < I2C_RxBufferSize)
41 ingob 354
                                {       // copy received byte  from the data register to the rx-buffer
248 killagreg 355
                                        I2C_Buffer[Rx_Idx] = I2C_ReceiveData(I2C1);
41 ingob 356
                                }
241 killagreg 357
                                else // if the last byte was received
41 ingob 358
                                {
359
                                        // generate a STOP condition on the bus before reading data register
360
                                        I2C_GenerateSTOP(I2C1, ENABLE);
248 killagreg 361
                                        I2C_Buffer[Rx_Idx] = I2C_ReceiveData(I2C1);
241 killagreg 362
                                        // call the rx handler function to process recieved data
248 killagreg 363
                                        if(I2C_pRxHandler != NULL) (*I2C_pRxHandler)((u8*)I2C_Buffer, I2C_RxBufferSize);
241 killagreg 364
                                        I2C1_Timeout = SetDelay(I2C1_TIMEOUT);
365
                                        DebugOut.Analog[15]++;
189 killagreg 366
                                        VIC_ITCmd(I2C1_ITLine, DISABLE);
326 holgerb 367
//                                      LED_GRN_OFF;
241 killagreg 368
                                        I2C_State = I2C_STATE_IDLE;
252 killagreg 369
                                        I2C_Error = I2C_ERROR_NONE;
189 killagreg 370
                                        return;
41 ingob 371
                                }
372
                                Rx_Idx++;
373
                                // if the 2nd last byte was received disable acknowledge for the last one
241 killagreg 374
                                if ( (Rx_Idx + 1) == I2C_RxBufferSize )
41 ingob 375
                                {
241 killagreg 376
                                        I2C_AcknowledgeConfig(I2C1, DISABLE);
41 ingob 377
                                }
378
                                break;
79 killagreg 379
 
241 killagreg 380
                        default:// unknown event
381
                                // should never happen
382
                                I2C_GenerateSTOP (I2C1, ENABLE);
383
                                LED_GRN_OFF;
384
                                VIC_ITCmd(I2C1_ITLine, DISABLE);
385
                                I2C_State = I2C_STATE_IDLE;
252 killagreg 386
                                I2C_Error = I2C_ERROR_UNKNOWN;
41 ingob 387
                                break;
388
                }
389
        }
195 killagreg 390
        //IDISABLE;      // do not enable IRQ nesting for I2C!!!!
1 ingob 391
}
248 killagreg 392
 
241 killagreg 393
// ----------------------------------------------------------------------------------------
248 killagreg 394
// wait for end of transmission
395
u8 I2C_WaitForEndOfTransmission(u32 timeout)
396
{
397
        u32 time = SetDelay(timeout);
398
        while(I2C_State != I2C_STATE_IDLE)
399
        {
400
                if(CheckDelay(time)) return(0);
401
        }
402
        return(1);
403
}
404
 
405
// ----------------------------------------------------------------------------------------
406
// try to get access to the transfer buffer      within a timeout limit
407
// returs 1 on success and 0 on error/timeout
408
u8 I2C_LockBuffer(u32 timeout)
409
{      
410
        if(I2C_WaitForEndOfTransmission(timeout))
411
        {
412
                I2C_State = I2C_STATE_BUFFBUSY;
252 killagreg 413
                I2C_Error = I2C_ERROR_UNKNOWN;
248 killagreg 414
                return(1);
415
        }
416
        else return(0);
417
}
418
// ----------------------------------------------------------------------------------------
241 killagreg 419
// initate an i2c transmission
248 killagreg 420
u8 I2C_Transmission(u8 SlaveAddr, u8 TxBytes, I2C_pRxHandler_t pRxHandler, u8 RxBytes)
1 ingob 421
{
241 killagreg 422
        u8 retval = 0;
248 killagreg 423
        if(I2C_State == I2C_STATE_BUFFBUSY)
424
        {
425
                if((RxBytes > I2C_BUFFER_LEN) || (TxBytes > I2C_BUFFER_LEN))
426
                {
427
                        I2C_State = I2C_STATE_IDLE;
428
                        return(retval);
429
                }      
241 killagreg 430
                I2C_RxBufferSize = RxBytes;
248 killagreg 431
                I2C_TxBufferSize = TxBytes;
241 killagreg 432
                // set direction to master transmitter
248 killagreg 433
                if( (I2C_TxBufferSize > 0) && (I2C_TxBufferSize < I2C_BUFFER_LEN) ) I2C_Direction = I2C_MODE_TRANSMITTER;
434
                else if (( I2C_RxBufferSize > 0 ) && (I2C_RxBufferSize < I2C_BUFFER_LEN) ) I2C_Direction = I2C_MODE_RECEIVER;
241 killagreg 435
                else // nothing to send or receive
189 killagreg 436
                {
248 killagreg 437
                        I2C_State = I2C_STATE_IDLE;
252 killagreg 438
                        I2C_Error = I2C_ERROR_NONE;
241 killagreg 439
                        I2C_TxBufferSize = 0;
440
                        I2C_RxBufferSize = 0;
441
                        return(retval);
189 killagreg 442
                }
241 killagreg 443
                // update slave address and rx data handler     funbction pointer
444
                I2C_SlaveAddress = SlaveAddr;
445
                I2C_pRxHandler = pRxHandler;
189 killagreg 446
                // test on busy flag and clear it
447
                I2C_CheckEvent( I2C1, I2C_FLAG_BUSY );
242 killagreg 448
                // enable I2C IRQ
449
                VIC_ITCmd(I2C1_ITLine, ENABLE);
189 killagreg 450
                // initiate start condition on the bus
451
                I2C_GenerateStart(I2C1, ENABLE);
241 killagreg 452
                retval = 1;
453
         }
454
         return(retval);
41 ingob 455
}