-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathntc_isolated_i2c.c
596 lines (445 loc) · 18 KB
/
ntc_isolated_i2c.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
/////////////////////////////////////////////////////////////////////////////////////////////
/*
* ntc_isolated_i2c.c
*
* Created on: 18 de fev de 2020
* Author: rogerio.marcondeli
*/
#include <stdarg.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <math.h>
#include "inc/hw_ssi.h"
#include "inc/hw_types.h"
#include "inc/hw_gpio.h"
#include "inc/hw_memmap.h"
#include "inc/hw_ints.h"
#include "driverlib/debug.h"
#include "driverlib/gpio.h"
#include "driverlib/sysctl.h"
#include "driverlib/ssi.h"
#include "driverlib/pin_map.h"
#include "driverlib/interrupt.h"
#include "ntc_isolated_i2c.h"
#include "peripheral_drivers/timer/timer.h"
#include "peripheral_drivers/gpio/gpio_driver.h"
#include "peripheral_drivers/i2c/i2c_driver.h"
#include "board_drivers/hardware_def.h"
#include <iib_modules/fap.h>
#include <iib_modules/fac_os.h>
#include <iib_modules/fac_is.h>
#include <iib_modules/fac_cmd.h>
#include "application.h"
/////////////////////////////////////////////////////////////////////////////////////////////
#define SeriesResistance 10000.00 //Resistor de 10K Ohms
#define Vin 3.3 //Tensão de entrada do divisor resistivo igbts
/////////////////////////////////////////////////////////////////////////////////////////////
//******************************************************************************
// Declaração das variaveis globais
//******************************************************************************
// NTC 5k
static float A = 0.001003604774;
static float B = 0.000264014765;
static float C = 0.000000164677;
/////////////////////////////////////////////////////////////////////////////////////////////
ntc_t TempNtcIgbt1;
ntc_t TempNtcIgbt2;
/////////////////////////////////////////////////////////////////////////////////////////////
float GetTemperatureIgbt1(float VoutADS1014)
{
double NtcResistance;
double Thermistortemperature;
float Temperature;
NtcResistance = (((SeriesResistance * Vin) / VoutADS1014) - SeriesResistance); /* calculate the resistance */
Thermistortemperature = log(NtcResistance); /* calculate natural log of resistance */
/* Steinhart-Hart Thermistor Equation: */
/* Temperature in Kelvin = 1 / (A + B[ln(R)] + C[ln(R)]^3) */
Temperature = ( 1 / ( A + ( B * Thermistortemperature ) + ( C * (pow(Thermistortemperature,3) )) ) ); // temperatura em Kelvin
Temperature = Temperature - 273.15; // temperatura em graus Celsius
return Temperature;
}
/////////////////////////////////////////////////////////////////////////////////////////////
float GetTemperatureIgbt2(float VoutADS1014)
{
double NtcResistance;
double Thermistortemperature;
float Temperature;
NtcResistance = (((SeriesResistance * Vin) / VoutADS1014) - SeriesResistance); /* calculate the resistance */
Thermistortemperature = log(NtcResistance); /* calculate natural log of resistance */
/* Steinhart-Hart Thermistor Equation: */
/* Temperature in Kelvin = 1 / (A + B[ln(R)] + C[ln(R)]^3) */
Temperature = ( 1 / ( A + ( B * Thermistortemperature ) + ( C * (pow(Thermistortemperature,3) )) ) ); // temperatura em Kelvin
Temperature = Temperature - 273.15; // temperatura em graus Celsius
return Temperature;
}
/////////////////////////////////////////////////////////////////////////////////////////////
/**************************************************************************/
/*!
You must provide this function.
*/
/**************************************************************************/
ADS1x1x_config_t ntc_igbt1;
ADS1x1x_config_t ntc_igbt2;
/////////////////////////////////////////////////////////////////////////////////////////////
/**************************************************************************/
/*!
@brief Writes 16 bits to the specified destination register.
*/
/**************************************************************************/
void ADS1x1x_write_register(uint8_t i2c_address, uint8_t reg, uint16_t value)
{
I2C2Send(i2c_address, 3, reg, ((uint8_t)value>>8), ((uint8_t)value&0xff));
}
/////////////////////////////////////////////////////////////////////////////////////////////
/**************************************************************************/
/*!
@brief Read 16 bits from the specified destination register.
*/
/**************************************************************************/
uint16_t ADS1x1x_read_register(uint8_t i2c_address, uint8_t reg)
{
uint16_t result = 0;
result = I2C2Receive(i2c_address, reg);
return result;
}
/////////////////////////////////////////////////////////////////////////////////////////////
/**************************************************************************/
/*!
@brief Initialise a user-provided ADS1X15 configuration structure.
The user must provide a valid pointer to an empty
ADS1x1x_config_t structure.
*/
/**************************************************************************/
uint8_t ADS1x1x_init(ADS1x1x_config_t *p_config, ADS1x1x_chip_t chip, uint8_t i2c_address, ADS1x1x_mux_t input, ADS1x1x_pga_t gain)
{
uint8_t result = 0;
if (p_config!=0)
{
// Set generic parameters.
p_config->chip = chip;
p_config->i2c_address = i2c_address;
// Set configuration bits for default operation.
p_config->config = 0;
ADS1x1x_set_os(p_config,OS_SINGLE);
ADS1x1x_set_multiplexer(p_config,input);
ADS1x1x_set_pga(p_config,gain);
ADS1x1x_set_mode(p_config,MODE_CONTINUOUS);
if (p_config->chip==ADS1013 || p_config->chip==ADS1014 || p_config->chip==ADS1015)
{
ADS1x1x_set_data_rate(p_config,DATA_RATE_ADS101x_3300);
}
else
{
ADS1x1x_set_data_rate(p_config,DATA_RATE_ADS111x_128);
}
ADS1x1x_set_comparator_mode(p_config,COMPARATOR_MODE_TRADITIONAL);
ADS1x1x_set_comparator_polarity(p_config,COMPARATOR_POLARITY_ACTIVE_LO);
ADS1x1x_set_comparator_latching(p_config,COMPARATOR_NON_LATCHING);
ADS1x1x_set_comparator_queue(p_config,COMPARATOR_QUEUE_NONE);
result = 1;
}
return result;
}
/////////////////////////////////////////////////////////////////////////////////////////////
/**************************************************************************/
/*!
@brief Start an ADC conversion cycle.
The user must provide a valid pointer to a
correctly filled ADS1x1x_config_t structure.
*/
/**************************************************************************/
void ADS1x1x_start_conversion(ADS1x1x_config_t *p_config)
{
// Write configuration to the ADC.
ADS1x1x_write_register(p_config->i2c_address,ADS1x1x_REG_POINTER_CONFIG,p_config->config);
}
/////////////////////////////////////////////////////////////////////////////////////////////
/**************************************************************************/
/*!
@brief Read the ADC conversion result.
The user must provide a valid pointer to a
correctly filled ADS1x1x_config_t structure.
*/
/**************************************************************************/
int16_t ADS1x1x_read(ADS1x1x_config_t *p_config)
{
// Read the conversion result.
int16_t result = (int16_t)ADS1x1x_read_register(p_config->i2c_address,ADS1x1x_REG_POINTER_CONVERSION);
// Adjust for ADC resolution if needed.
if (p_config->chip==ADS1013 || p_config->chip==ADS1014 || p_config->chip==ADS1015)
{
result >>= 4;
}
return result;
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_threshold_lo(ADS1x1x_config_t *p_config, uint16_t value)
{
if (p_config->chip==ADS1013 || p_config->chip==ADS1014 || p_config->chip==ADS1015)
{
value <<= 4;
}
ADS1x1x_write_register(p_config->i2c_address,ADS1x1x_REG_POINTER_LO_THRESH,value);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_threshold_hi(ADS1x1x_config_t *p_config, uint16_t value)
{
if (p_config->chip==ADS1013 || p_config->chip==ADS1014 || p_config->chip==ADS1015)
{
value <<= 4;
}
ADS1x1x_write_register(p_config->i2c_address,ADS1x1x_REG_POINTER_HI_THRESH,value);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_config_bitfield(ADS1x1x_config_t *p_config, uint16_t value, uint16_t mask)
{
p_config->config &= ~mask;
p_config->config |= (value & mask);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_os(ADS1x1x_config_t *p_config, ADS1x1x_os_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_OS_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_multiplexer(ADS1x1x_config_t *p_config, ADS1x1x_mux_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_MULTIPLEXER_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_pga(ADS1x1x_config_t *p_config, ADS1x1x_pga_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_PGA_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_mode(ADS1x1x_config_t *p_config, ADS1x1x_mode_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_MODE_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_data_rate(ADS1x1x_config_t *p_config, ADS1x1x_data_rate_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_DATA_RATE_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_comparator_mode(ADS1x1x_config_t *p_config, ADS1x1x_comparator_mode_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_COMPARATOR_MODE_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_comparator_polarity(ADS1x1x_config_t *p_config, ADS1x1x_comparator_polarity_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_COMPARATOR_POLARITY_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_comparator_latching(ADS1x1x_config_t *p_config, ADS1x1x_comparator_latching_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_COMPARATOR_LATCHING_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
void ADS1x1x_set_comparator_queue(ADS1x1x_config_t *p_config, ADS1x1x_comparator_queue_t value)
{
ADS1x1x_set_config_bitfield(p_config,(uint16_t)value,ADS1x1x_REG_CONFIG_COMPARATOR_QUEUE_MASK);
}
/////////////////////////////////////////////////////////////////////////////////////////////
//******************************************************************************
// ADS1014 with NTC 5K Igbt1 and Igbt2 initialization
//******************************************************************************
void NtcInit(void)
{
//I2C2 initialization
InitI2C2();
// Initialise ADC object igbt1.
ADS1x1x_init(&ntc_igbt1,ADS1014,ADS1x1x_I2C_ADDRESS_ADDR_TO_GND,MUX_SINGLE_0,PGA_6144);
// Initialise ADC object igbt2.
ADS1x1x_init(&ntc_igbt2,ADS1014,ADS1x1x_I2C_ADDRESS_ADDR_TO_VCC,MUX_SINGLE_0,PGA_6144);
TempNtcIgbt1.Value = 0.0;
TempNtcIgbt1.AlarmLimit = 50.0;
TempNtcIgbt1.TripLimit = 60.0;
TempNtcIgbt1.Alarm = 0;
TempNtcIgbt1.Trip = 0;
TempNtcIgbt1.Alarm_Delay_ms = 0; // milisecond
TempNtcIgbt1.Alarm_DelayCount = 0;
TempNtcIgbt1.Itlk_Delay_ms = 0; // milisecond
TempNtcIgbt1.Itlk_DelayCount = 0;
TempNtcIgbt2.Value = 0.0;
TempNtcIgbt2.AlarmLimit = 50.0;
TempNtcIgbt2.TripLimit = 60.0;
TempNtcIgbt2.Alarm = 0;
TempNtcIgbt2.Trip = 0;
TempNtcIgbt2.Alarm_Delay_ms = 0; // milisecond
TempNtcIgbt2.Alarm_DelayCount = 0;
TempNtcIgbt2.Itlk_Delay_ms = 0; // milisecond
TempNtcIgbt2.Itlk_DelayCount = 0;
delay_ms(10);
}
/////////////////////////////////////////////////////////////////////////////////////////////
//******************************************************************************
// Read the ADS1014 with NTC 5K Igbt1 and Igbt2
//******************************************************************************
void NtcStartConversion(void)
{
// Set input before starting conversion ntc igbt1.
ADS1x1x_set_multiplexer(&ntc_igbt1,(ADS1x1x_mux_t)0x4000);
ADS1x1x_start_conversion(&ntc_igbt1);
// Default sample rate is 3300 samples/s, i.e. one sample every 1 ms.
delay_ms(1);
// Set input before starting conversion ntc igbt2.
ADS1x1x_set_multiplexer(&ntc_igbt2,(ADS1x1x_mux_t)0x4000);
ADS1x1x_start_conversion(&ntc_igbt2);
// Default sample rate is 3300 samples/s, i.e. one sample every 1 ms.
delay_ms(1);
}
/////////////////////////////////////////////////////////////////////////////////////////////
//******************************************************************************
// Start read the ADS1014 with NTC 5K Igbt1 and Igbt2
//******************************************************************************
void NtcRead(void)
{
TempNtcIgbt1.Value = GetTemperatureIgbt1((((float)ADS1x1x_read(&ntc_igbt1)*6.144)/2047.0));
if(TempNtcIgbt1.Value > TempNtcIgbt1.AlarmLimit)
{
if(TempNtcIgbt1.Alarm_DelayCount < TempNtcIgbt1.Alarm_Delay_ms) TempNtcIgbt1.Alarm_DelayCount++;
else
{
TempNtcIgbt1.Alarm_DelayCount = 0;
TempNtcIgbt1.Alarm = 1;
}
}
else TempNtcIgbt1.Alarm_DelayCount = 0;
if(TempNtcIgbt1.Value > TempNtcIgbt1.TripLimit)
{
if(TempNtcIgbt1.Itlk_DelayCount < TempNtcIgbt1.Itlk_Delay_ms) TempNtcIgbt1.Itlk_DelayCount++;
else
{
TempNtcIgbt1.Itlk_DelayCount = 0;
TempNtcIgbt1.Trip = 1;
}
}
else TempNtcIgbt1.Itlk_DelayCount = 0;
/////////////////////////////////////////////////////////////////////////////////////////////
TempNtcIgbt2.Value = GetTemperatureIgbt2((((float)ADS1x1x_read(&ntc_igbt2)*6.144)/2047.0));
if(TempNtcIgbt2.Value > TempNtcIgbt2.AlarmLimit)
{
if(TempNtcIgbt2.Alarm_DelayCount < TempNtcIgbt2.Alarm_Delay_ms) TempNtcIgbt2.Alarm_DelayCount++;
else
{
TempNtcIgbt2.Alarm_DelayCount = 0;
TempNtcIgbt2.Alarm = 1;
}
}
else TempNtcIgbt2.Alarm_DelayCount = 0;
if(TempNtcIgbt2.Value > TempNtcIgbt2.TripLimit)
{
if(TempNtcIgbt2.Itlk_DelayCount < TempNtcIgbt2.Itlk_Delay_ms) TempNtcIgbt2.Itlk_DelayCount++;
else
{
TempNtcIgbt2.Itlk_DelayCount = 0;
TempNtcIgbt2.Trip = 1;
}
}
else TempNtcIgbt2.Itlk_DelayCount = 0;
delay_ms(20);
}
/////////////////////////////////////////////////////////////////////////////////////////////
//******************************************************************************
// Read the ADS1014 with NTC 5K Igbt1 and return value
//******************************************************************************
float TempIgbt1Read(void)
{
#if (TempIgbt1Enable == 1)
return TempNtcIgbt1.Value;
#else
return 0;
#endif
}
/////////////////////////////////////////////////////////////////////////////////////////////
//******************************************************************************
// Read the ADS1014 with NTC 5K Igbt2 and return value
//******************************************************************************
float TempIgbt2Read(void)
{
#if (TempIgbt2Enable == 1)
return TempNtcIgbt2.Value;
#else
return 0;
#endif
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt1AlarmLevelSet(float nValue)
{
TempNtcIgbt1.AlarmLimit = nValue;
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt1TripLevelSet(float nValue)
{
TempNtcIgbt1.TripLimit = nValue;
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt1Delay(unsigned int delay_ms)
{
TempNtcIgbt1.Alarm_Delay_ms = delay_ms;
TempNtcIgbt1.Itlk_Delay_ms = delay_ms;
}
/////////////////////////////////////////////////////////////////////////////////////////////
unsigned char TempIgbt1AlarmStatusRead(void)
{
#if (TempIgbt1Enable == 1)
return TempNtcIgbt1.Alarm;
#else
return 0;
#endif
}
/////////////////////////////////////////////////////////////////////////////////////////////
unsigned char TempIgbt1TripStatusRead(void)
{
#if (TempIgbt1Enable == 1)
return TempNtcIgbt1.Trip;
#else
return 0;
#endif
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt2AlarmLevelSet(float nValue)
{
TempNtcIgbt2.AlarmLimit = nValue;
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt2TripLevelSet(float nValue)
{
TempNtcIgbt2.TripLimit = nValue;
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt2Delay(unsigned int delay_ms)
{
TempNtcIgbt2.Alarm_Delay_ms = delay_ms;
TempNtcIgbt2.Itlk_Delay_ms = delay_ms;
}
/////////////////////////////////////////////////////////////////////////////////////////////
unsigned char TempIgbt2AlarmStatusRead(void)
{
#if (TempIgbt2Enable == 1)
return TempNtcIgbt2.Alarm;
#else
return 0;
#endif
}
/////////////////////////////////////////////////////////////////////////////////////////////
unsigned char TempIgbt2TripStatusRead(void)
{
#if (TempIgbt2Enable == 1)
return TempNtcIgbt2.Trip;
#else
return 0;
#endif
}
/////////////////////////////////////////////////////////////////////////////////////////////
void TempIgbt1TempIgbt2ClearAlarmTrip(void)
{
TempNtcIgbt1.Alarm = 0;
TempNtcIgbt1.Trip = 0;
TempNtcIgbt2.Alarm = 0;
TempNtcIgbt2.Trip = 0;
}
/////////////////////////////////////////////////////////////////////////////////////////////