Subversion Repositories MK3Mag

Rev

Rev 19 | Rev 23 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 19 Rev 22
Line 59... Line 59...
59
#include <util/twi.h>
59
#include <util/twi.h>
60
#include "twislave.h"
60
#include "twislave.h"
61
#include "uart.h"
61
#include "uart.h"
62
#include "main.h"
62
#include "main.h"
63
#include "timer0.h"
63
#include "timer0.h"
-
 
64
#include "led.h"
Line 64... Line -...
64
 
-
 
65
#define TWI_BUS_ERR_1   0x00
-
 
Line 66... Line -...
66
#define TWI_BUS_ERR_2   0xF8
-
 
67
 
-
 
68
// Status Slave RX Mode
-
 
69
#define SR_SLA_ACK      0x60
-
 
70
#define SR_LOST_ACK     0x68
-
 
71
#define SR_GEN_CALL_ACK 0x70
-
 
72
#define GEN_LOST_ACK    0x78
-
 
73
#define SR_PREV_ACK     0x80
-
 
74
#define SR_PREV_NACK    0x88
-
 
75
#define GEN_PREV_ACK    0x90
-
 
76
#define GEN_PREV_NACK   0x98
-
 
77
#define STOP_CONDITION  0xA0
-
 
78
#define REPEATED_START  0xA0
-
 
79
 
-
 
80
// Status Slave TX mode
-
 
81
#define SW_SLA_ACK      0xA8
-
 
82
#define SW_LOST_ACK     0xB0
-
 
83
#define SW_DATA_ACK     0xB8
-
 
84
#define SW_DATA_NACK    0xC0
-
 
85
#define SW_LAST_ACK     0xC8
-
 
86
 
65
 
87
 
66
 
88
uint8_t I2C_RxBufferSize, I2C_TxBufferSize;
67
uint8_t I2C_RxBufferSize = 0, I2C_TxBufferSize = 0;
89
uint8_t *I2C_TxBuffer, *I2C_RxBuffer;
-
 
-
 
68
uint8_t *I2C_TxBuffer = 0, *I2C_RxBuffer = 0;
Line 90... Line 69...
90
uint8_t Tx_Idx = 0, Rx_Idx = 0, I2C_Direction;
69
uint8_t Tx_Idx = 0, Rx_Idx = 0;
91
uint8_t I2C_Command;
70
 
92
 
71
 
Line 99... Line 78...
99
I2C_WriteCal_t      I2C_WriteCal;
78
I2C_WriteCal_t      I2C_WriteCal;
Line 100... Line 79...
100
 
79
 
101
 
80
 
-
 
81
void I2C_Init(void)
102
void I2C_Init(void)
82
{
-
 
83
 
-
 
84
        uint8_t sreg;
-
 
85
 
-
 
86
        // backup status register
103
{
87
        sreg = SREG;
Line 104... Line 88...
104
        uint8_t sreg = SREG;
88
    // disable global interrupts
Line 105... Line 89...
105
        cli();
89
        cli();
106
 
90
 
107
        //SPI SCK/SCL and  MISO/SDA are at put together on the same connector pin in the schematic
91
        // SCK/SCL and  MISO/SDA are at put together on the same connector pin in the schematic
Line 108... Line 92...
108
 
92
 
109
        // set PB4 (SCK) and PB5 (MISO) as input pull up
93
        // set PB4 (SCK) and PB5 (MISO) as input tristate
110
        DDRB &= ~((1<<DDB4)|(1<<DDB5));
94
        DDRB &= ~((1<<DDB4)|(1<<DDB5));
-
 
95
        PORTB &= ~((1<<PORTB4)|(1<<PORTB5));
-
 
96
 
-
 
97
        // set PC4 (SDA) and PC5 (SCL) as input tristate
-
 
98
        DDRC &= ~((1<<DDC4)|(1<<DDC5));
-
 
99
        PORTC &= ~((1<<PORTC4)|(1<<PORTC5));
-
 
100
 
-
 
101
        I2C_TxBuffer = 0;
Line -... Line 102...
-
 
102
        Tx_Idx = 0;
-
 
103
        I2C_TxBufferSize = 0;
-
 
104
        I2C_RxBuffer = 0;
-
 
105
        Rx_Idx = 0;
-
 
106
        I2C_RxBufferSize = 0;
111
        PORTB |= ((1<<PORTB4)|(1<<PORTB5));
107
 
-
 
108
 
112
 
109
 
113
        // set PC4 (SDA) and PC5 (SCL) as input pull up
110
        TWCR &= ~(1<<TWSTA)|(1<<TWSTO);
114
        DDRC &= ~((1<<DDC4)|(1<<DDC5));
-
 
115
        PORTC |= ((1<<PORTC4)|(1<<PORTC5));
111
        TWCR|= (1<<TWEA) | (1<<TWEN)|(1<<TWIE);
116
 
112
 
117
         // set own address
113
        // set own address
118
    TWAR = I2C_SLAVE_ADDRESS; // set own address
-
 
119
        // TWI Control Register
114
        // set own address in the upper 7 bits
120
        // clear TWI interrupt flag (TWINT=1)
115
    TWAR = I2C_SLAVE_ADDRESS; // set own address only the upper 7 bits are relevant
-
 
116
        // TWI Control Register
121
        // enable TWI Acknowledge Bit (TWEA = 1)
117
        // enable TWI Acknowledge Bit (TWEA = 1)
-
 
118
        // disable TWI START Condition Bit (TWSTA = 0), SLAVE
122
        // disable TWI START Condition Bit (TWSTA = 0), SLAVE
119
        // disable TWI  STOP Condition Bit (TWSTO = 0), SLAVE
123
        // disable TWI STOP Condition Bit (TWSTO = 0), SLAVE
120
        // enable TWI (TWEN = 1)
124
        // disable TWI Write Collision Flag (TWWC = 0)
121
        // enable TWI Interrupt (TWIE = 1)
125
        // enable i2c (TWEN = 1)
122
        TWCR &= ~((1<<TWSTA)|(1<<TWSTO));
Line -... Line 123...
-
 
123
        TWCR |= (1<<TWEA)|(1<<TWEN)|(1<<TWIE);
126
        // enable TWI Interrupt (TWIE = 1)
124
 
127
    TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWIE) | (1<<TWEA);
125
        // update version info
Line 128... Line -...
128
        // update version info
-
 
129
        I2C_Version.Major = VERSION_MAJOR;
-
 
-
 
126
        I2C_Version.Major = VERSION_MAJOR;
130
        I2C_Version.Minor = VERSION_MINOR;
127
        I2C_Version.Minor = VERSION_MINOR;
-
 
128
        I2C_Version.Compatible = I2C_PROTOCOL_COMP;
-
 
129
 
-
 
130
        // resore status register
-
 
131
        SREG = sreg;
-
 
132
}
-
 
133
 
Line 131... Line 134...
131
        I2C_Version.Compatible = I2C_PROTOCOL_COMP;
134
// send ACK after recieving a byte / ACK is expected after transmitting a byte
132
 
135
#define TWCR_ACK TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(1<<TWEA)|(0<<TWSTA)|(0<<TWSTO)|(0<<TWWC)
-
 
136
// send no ACK after recieving a byte / No ACK is expected after transmitting a byte
133
        SREG = sreg;
137
#define TWCR_NACK TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(0<<TWEA)|(0<<TWSTA)|(0<<TWSTO)|(0<<TWWC)
134
}
138
// switched to the non adressed slave mode
135
 
139
#define TWCR_RESET TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(1<<TWEA)|(0<<TWSTA)|(0<<TWSTO)|(0<<TWWC)
136
 
140
// The bit pattern for TWCR_ACK and TWCR_RESET are equal. This is no errro but used for better understanding.
137
 
141
#define TWCR_CLEARBUS TWCR =(1<<TWEA) | (1<<TWSTO) | (1<<TWINT) | (1<<TWEN) | (1<<TWIE)
138
#define TWCR_ACK TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(1<<TWEA)|(0<<TWSTA)|(0<<TWSTO)|(0<<TWWC)
142
 
139
 
143
ISR (TWI_vect)
Line 140... Line 144...
140
ISR (TWI_vect)
144
{
141
{
-
 
-
 
145
        uint8_t data;
142
        // check event
146
        // check event
143
        switch (TWSR & 0xF8)
-
 
144
        {
147
        switch (TW_STATUS)
145
        case SR_SLA_ACK:
-
 
146
            Rx_Idx = 0;
148
        {
147
                        TWCR_ACK;
149
        case TW_SR_SLA_ACK: // slave addressed in receiver mode and ack has been returned
148
            return;
150
            Rx_Idx = 0xFF;  // reset rx buffer pointer
149
 
151
                        TWCR_ACK;       // trigger receiving of first data byte and send ack afterwards
150
        case SR_PREV_ACK: // data byte received
152
            return;
151
 
153
 
Line 199... Line 201...
199
                                                I2C_Heading.Heading = Heading;
201
                                                I2C_Heading.Heading = Heading;
200
                                                // copy current attitude from I2C rx buffer to uart rx buffer (this is used for the calulation of the heading)
202
                                                // copy current attitude from I2C rx buffer to uart rx buffer (this is used for the calulation of the heading)
201
                                                ExternData.Attitude[NICK] = I2C_WriteAttitude.Nick;
203
                                                ExternData.Attitude[NICK] = I2C_WriteAttitude.Nick;
202
                                                ExternData.Attitude[ROLL] = I2C_WriteAttitude.Roll;
204
                                                ExternData.Attitude[ROLL] = I2C_WriteAttitude.Roll;
203
                                                break;
205
                                                break;
-
 
206
                                        default:
-
 
207
                                                I2C_RxBuffer = 0;
-
 
208
                                                I2C_RxBufferSize = 0;
-
 
209
                                                I2C_TxBuffer = 0;
-
 
210
                                                I2C_TxBufferSize = 0;
-
 
211
                                        break;
204
                                }
212
                                }
-
 
213
                                Rx_Idx = 0; // set rx buffer index to start of the buffer
-
 
214
                                if(I2C_RxBufferSize > 1) TWCR_ACK; // prepare receiving of next byte and send ACK afterwards
-
 
215
                                else TWCR_NACK; // prepare receiving of next byte and send NACK afterwards
205
                        }
216
                        }
206
                        else // Rx_Idx  != 0
217
                        else // Rx_Idx  != 0xFF
207
                        {
218
                        {
-
 
219
                                // fill receiver buffer with byte that has been received
208
                                // fill receiver buffer
220
                                // if buffer exist
-
 
221
                                if(I2C_RxBuffer != 0)
-
 
222
                                {       // and there is still some free space
209
                                if ((Rx_Idx - 1) < I2C_RxBufferSize) I2C_RxBuffer[Rx_Idx - 1] = TWDR;
223
                                        if (Rx_Idx  < I2C_RxBufferSize) I2C_RxBuffer[Rx_Idx++] = data;
-
 
224
                                        // if there is space for more than one byte
-
 
225
                                        if(Rx_Idx < (I2C_RxBufferSize - 1)) TWCR_ACK;
-
 
226
                                        // with the next incomming byte the rx buffer is full
-
 
227
                                        else TWCR_NACK;
-
 
228
                                }
-
 
229
                                // rx buffer does not exist
-
 
230
                                else TWCR_NACK; // prepare receiving of next byte and send NACK afterwards
210
                        }
231
                        }
211
                        // next byte
-
 
212
                        Rx_Idx++;
-
 
213
 
-
 
214
            I2C_Timeout = 500;
-
 
215
                        TWCR_ACK; // send acknowledge
-
 
216
            return;
232
            return;
Line -... Line 233...
-
 
233
 
-
 
234
        case TW_SR_DATA_NACK: // data has been received and NACK has been returned
-
 
235
                // read the last byte that is expected
-
 
236
                data = TWDR;
-
 
237
                if((I2C_RxBuffer != 0) && (Rx_Idx != 0xFF))
-
 
238
                        {       // and there is still some free space
-
 
239
                                if (Rx_Idx  < I2C_RxBufferSize) I2C_RxBuffer[Rx_Idx++] = data;
-
 
240
                        }
-
 
241
                        TWCR_RESET; // switched to the non adressed slave mode
-
 
242
                return;
217
 
243
 
218
        case SW_SLA_ACK: // slave transmitter selected
244
        case TW_ST_SLA_ACK: // slave transmitter selected
219
                // reset position in tx buffer
245
                // reset position in tx buffer
-
 
246
            Tx_Idx = 0;
220
            Tx_Idx = 0;
247
                case TW_ST_DATA_ACK: // data byte has been transmitted ack has been received
-
 
248
                        // put next byte from tx buffer to twi data register
-
 
249
                        if(I2C_TxBuffer != 0)
-
 
250
                        {
-
 
251
                if (Tx_Idx < I2C_TxBufferSize)
221
            // write first bte o tx buffer to the twi data register
252
                {
-
 
253
                                        TWDR = I2C_TxBuffer[Tx_Idx++];
-
 
254
                                        if(Tx_Idx + 1 < I2C_TxBufferSize) TWCR_ACK; // more than one byte to send
-
 
255
                                        else TWCR_NACK; // last byte was send NACK should be received
-
 
256
                                }
-
 
257
                                else
-
 
258
                                {   //
-
 
259
                                        TWDR = 0x00;
-
 
260
                                        TWCR_NACK;// NACK should be received
-
 
261
                                }
222
                        if (I2C_TxBufferSize > 0) TWDR = I2C_TxBuffer[Tx_Idx++];
262
                        }
-
 
263
                        else // buffer not existent
223
                        // send acknowledge
264
                        {
-
 
265
                                TWDR = 0x00;
-
 
266
                                TWCR_NACK;// NACK should be received
224
            TWCR_ACK;
267
                        }
Line 225... Line 268...
225
            return;
268
            return;
226
 
-
 
227
                case SW_DATA_ACK: // send data byte
269
 
228
                        // put next byte from tx buffer to twi data register
-
 
229
            if (Tx_Idx < I2C_TxBufferSize) TWDR = I2C_TxBuffer[Tx_Idx++];
-
 
230
                        else TWDR = 0x00;
270
        case TW_BUS_ERROR:  // Bus-Error
Line 231... Line 271...
231
                        TWCR_ACK; // send acknowledge
271
            TWCR_CLEARBUS;      // free bus reset to nonselected slave
232
            return;
272
            return;
233
 
273
 
234
        // clear Bus-Error
274
                case TW_ST_DATA_NACK:   // data transmitted, NACK received
235
        case TWI_BUS_ERR_2:
275
                case TW_ST_LAST_DATA:   // last data byte transmitted, ACK received
236
            TWCR |=(1<<TWSTO) | (1<<TWINT);
276
                case TW_SR_STOP:                // stop or repeated start condition received while selected
237
        // clear Bus-Error
277
                default:
238
        case TWI_BUS_ERR_1:
-
 
239
            TWCR |=(1<<TWSTO) | (1<<TWINT);
-
 
240
        }
-
 
241
        // clear interrupt flag (TWINT = 1)
-
 
242
        // enable TWI Acknowledge Bit (TWEA = 1)
-
 
243
        // enable TWI (TWEN = 1)
278
                        TWCR_RESET; // switch to the not addressed slave mode, own SLA will be recognized