Quantcast
Channel: Forums - Recent Threads
Viewing all 262198 articles
Browse latest View live

TMS320F28335: Matlab 2016a-b with CCS V3.3

$
0
0

Part Number:TMS320F28335

Dear Team:

I'm using DELFINO CARD (F38335) with XDS510USB-plus external JTAG emulator.
I would like to do the real time data exchange aplication (RTDX) with MATLAB 2016a-b and CCSV5-6 (Composer Studio).
la.mathworks.com/.../real-time-data-exchange-via-rtdx.html
- With this tutorial I need to use CCSV3.3 but, this old version can working with C2000 Delfino and Matlab 2016a-b?
- Is there a tutorial about Real time data exchange between C2000 Delfino and Matlab with "new" version, maybe with CCV3.3 I will use Matlab 2008 and it don´t have new functions ...

Best Regards


AWR1642BOOST-ODS: ES 2.0

$
0
0

Part Number:AWR1642BOOST-ODS

HI,

I had seen the new board is released named AWR1642BOOST-ODS with FOV Antenna. Is this especially for obstacle detection ? Is it better to measure the obstacle detection with FOV antenna than the previos boards

Q2) can i also measure the vital signs lab with these FOV antenna board?  does it also gives the better measurements of heart and breath rate than the AWR1642 with normal antenna?

UCC28951: UCC28951

$
0
0

Part Number:UCC28951

Hi

I am working on a step down converter using PSFB topology. The IC ucc28951q1 suits my purpose. My initial work of designing control card is completed. Now when i try to test the control card i observe these following

1. I observe gate pulses on channel A, B, C & D with around 50% duty cycle. My question is will these gate pulses appear even if there are no feedbacks ( output voltage and input current)?

2 . When I externaly give DC supply to pin 3 through a voltage divider and triangular wave with  2V peak amplitude and frequency being my switching frequency, I am not observing any changes in the duty cycle. Also if I fiddle with these external signals I expect my duty cycle to vary, but I am not observing any changes. I want to know If I am going wrong in testing the control card, or there is any mistake in my calculations?

I refered 600W PSFB DC-DC converter for my design 

 

LAUNCHXL-CC26X2R1: One button implement for two functions

$
0
0

Part Number:LAUNCHXL-CC26X2R1

Hi TI team,

I tried to use below code to implement that when user press button 5 seconds, it will turn on led and when user press 10 seconds, it will turn off led.

Below codes work well under debug mode in CCS. But when I closed debug mode in CCS and test it again. The LED will not turn on when I press 5 seconds.

I have no idea why it just work under the debug mode in CCS.

By the way, I used the example code of zed_switch and CC2652 LAUNCHPad.

Thanks

..

if(keysPressed == KEY_RIGHT)
{

current_t = time(NULL);
if(previous_t==0)
{
previous_t=current_t;
}else
{
if((current_t-previous_t >= 5) && (current_t-previous_t < 10)) //pairing
{
Board_Led_control(board_led_type_LED2, board_led_state_ON);
}else if(current_t-previous_t >= 10) //reset
{
Board_Led_control(board_led_type_LED2, board_led_state_OFF);
}
previous_t=0;
}

}

...

Button configuration:

static PIN_Config keyPinTable[] = {
Board_PIN_BUTTON0 | PIN_INPUT_EN | PIN_PULLUP | PIN_IRQ_NEGEDGE,
//Board_PIN_BUTTON1 | PIN_INPUT_EN | PIN_PULLUP | PIN_IRQ_NEGEDGE,
Board_PIN_BUTTON1 | PIN_INPUT_EN | PIN_PULLUP | PIN_IRQ_BOTHEDGES, //using timer to implement various function on one button

PIN_TERMINATE /* Terminate list */
};

LAUNCHXL-F28379D: Configuring ePWM interrupts

$
0
0

Part Number:LAUNCHXL-F28379D

asm(" SETC INTM, DBGM"); // Disable global interrupts

//--- Initialize the PIE_RAM. There are:
// 32 base vectors + (12 PIE groups * 16 vectors/group) = 224 PIE vectors (448 words).
PieCtrlRegs.PIECTRL.bit.ENPIE = 0; // Disable the PIE
asm(" EALLOW"); // Enable EALLOW protected register access

// Step around the first three 32-bit locations (six 16-bit locations).
// These locations are used by the ROM bootloader during debug.
memcpy((Uint16 *)&PieVectTable+6, (Uint16 *)&PieVectTableInit+6, 448-6);

asm(" EDIS"); // Disable EALLOW protected register access

//--- Disable all PIE interrupts
PieCtrlRegs.PIEIER1.all = 0x0000;
PieCtrlRegs.PIEIER2.all = 0x0000;
PieCtrlRegs.PIEIER3.all = 0x0001; //Enable epwm1 interrupt
PieCtrlRegs.PIEIER4.all = 0x0000;
PieCtrlRegs.PIEIER5.all = 0x0000;
PieCtrlRegs.PIEIER6.all = 0x0000;
PieCtrlRegs.PIEIER7.all = 0x0000;
PieCtrlRegs.PIEIER8.all = 0x0000;
PieCtrlRegs.PIEIER9.all = 0x0000;
PieCtrlRegs.PIEIER10.all = 0x0000;
PieCtrlRegs.PIEIER11.all = 0x0000;
PieCtrlRegs.PIEIER12.all = 0x0000;

//--- Clear any potentially pending PIEIFR flags
PieCtrlRegs.PIEIFR1.all = 0x0000;
PieCtrlRegs.PIEIFR2.all = 0x0000;
PieCtrlRegs.PIEIFR3.all = 0x0000;
PieCtrlRegs.PIEIFR4.all = 0x0000;
PieCtrlRegs.PIEIFR5.all = 0x0000;
PieCtrlRegs.PIEIFR6.all = 0x0000;
PieCtrlRegs.PIEIFR7.all = 0x0000;
PieCtrlRegs.PIEIFR8.all = 0x0000;
PieCtrlRegs.PIEIFR9.all = 0x0000;
PieCtrlRegs.PIEIFR10.all = 0x0000;
PieCtrlRegs.PIEIFR11.all = 0x0000;
PieCtrlRegs.PIEIFR12.all = 0x0000;

//--- Acknowlege all PIE interrupt groups
PieCtrlRegs.PIEACK.all = 0xFFFF;

//--- Enable the PIE
PieCtrlRegs.PIECTRL.bit.ENPIE = 1; // Enable the PIE
IER |= 0x0FFF; // Enable PIE Groups
asm(" CLRC INTM, DBGM");

void InitEPwm(void)
{
asm(" EALLOW"); // Enable EALLOW protected register access

// Configure the prescaler to the ePWM modules. Max ePWM input clock is 100 MHz.
ClkCfgRegs.PERCLKDIVSEL.bit.EPWMCLKDIV = 1; // EPWMCLK divider from PLLSYSCLK. 0=/1, 1=/2

// Must disable the clock to the ePWM modules if you want all ePWM modules synchronized.
CpuSysRegs.PCLKCR0.bit.TBCLKSYNC = 0;

asm(" EDIS"); // Disable EALLOW protected register access


//---------------------------------------------------------------------
//--- Configure ePWM2 to trigger ADC SOCA at a 50 kHz rate
//---------------------------------------------------------------------
asm(" EALLOW"); // Enable EALLOW protected register access
DevCfgRegs.SOFTPRES2.bit.EPWM1 = 1; // ePWM1 is reset
DevCfgRegs.SOFTPRES2.bit.EPWM1 = 0; // ePWM1 is released from reset
asm(" EDIS"); // Disable EALLOW protected register access

EPwm1Regs.TBCTL.bit.CTRMODE = 0x3; // Disable the timer

EPwm1Regs.TBCTL.all = 0xC033; // Configure timer control register
// bit 15-14 11: FREE/SOFT, 11 = ignore emulation suspend
// bit 13 0: PHSDIR, 0 = count down after sync event
// bit 12-10 000: CLKDIV, 000 => TBCLK = HSPCLK/1
// bit 9-7 000: HSPCLKDIV, 000 => HSPCLK = EPWMCLK/1
// bit 6 0: SWFSYNC, 0 = no software sync produced
// bit 5-4 11: SYNCOSEL, 11 = sync-out disabled
// bit 3 0: PRDLD, 0 = reload PRD on counter=0
// bit 2 0: PHSEN, 0 = phase control disabled
// bit 1-0 11: CTRMODE, 11 = timer stopped (disabled)

EPwm1Regs.TBCTR = 0x0000; // Clear timer counter
EPwm1Regs.TBPRD = ISR_Freq_TBPRD; // Set timer period
EPwm1Regs.TBPHS.bit.TBPHS = 0x0000; // Set timer phase

EPwm1Regs.ETPS.all = 0x0101; // Configure SOCA
// bit 15-14 00: EPWMxSOCB, read-only
// bit 13-12 00: SOCBPRD, don't care
// bit 11-10 00: EPWMxSOCA, read-only
// bit 9-8 01: SOCAPRD, 01 = generate SOCA on first event
// bit 7-4 0000: reserved
// bit 3-2 00: INTCNT, don't care
// bit 1-0 01: INTPRD, generate interrupt on first event

EPwm1Regs.ETSEL.all = 0x0A0B; // Enable SOCA to ADC, Enable interrupt on CTR=0 & CTR=PRD
// bit 15 0: SOCBEN, 0 = disable SOCB
// bit 14-12 000: SOCBSEL, don't care
// bit 11 1: SOCAEN, 1 = enable SOCA
// bit 10-8 010: SOCASEL, 010 = SOCA on PRD event
// bit 7-4 0000: reserved
// bit 3 1: INTEN, 1 = Enable interrupt
// bit 2-0 011: INTSEL, CTR=0 or PRD
// EPwm1Regs.ETSEL.bit.INTEN = 0x1;
// EPwm1Regs.ETSEL.bit.INTSEL = 0x3;
EPwm1Regs.TBCTL.bit.CTRMODE = 0x2; // Enable the timer in count up-down mode


//---------------------------------------------------------------------
//--- Enable the clocks to the ePWM module.
//--- Note: this should be done after all ePWM modules are configured
//--- to ensure synchronization between the ePWM modules.
//---------------------------------------------------------------------
asm(" EALLOW"); // Enable EALLOW protected register access
CpuSysRegs.PCLKCR0.bit.TBCLKSYNC = 1; // TBCLK to ePWM modules enabled
asm(" EDIS"); // Disable EALLOW protected register access

} // end InitEPwm()

I tried above code (write as two different functions and called in the main function) in order to generate ePWM1 interrupt. But I found that respective interrupt flag is not set when the interrupt occurs and i couldn't be able to find the mistake that I've made.

Please help to find the mistake. Ambition is to generate 20 kHz ISR

Thank You

Lahiru

LM5122ZA: Using LM5122ZA for 12V to 24V/10A design

$
0
0

Part Number:LM5122ZA

Hi team,

Do you have a reference design for 12V to 24V/10A DCDC solution? It looks LM5122ZA is a fit one, is there any better recommendation? 

Would you help to generate a reference schematic for evaluating the BOM cost?  

Rds,

Alex

TMP112: Temperature sensor logging random 0.0 degree C error in NFC datalogger EMV boards TIDA-00524.

$
0
0

Part Number:TMP112

I am using TIDA-00524 TI board for measuring temperature. Here I am logging the temperature with a polling interval of 1 min.

The boards and the sensors seem to be working good. but after lots of measurements, I encountered few errors in logged temperature data.

The sensor measures a 0.0 degree C randomly. Do any of the TI sensor engineers know about this error in temperature sensor?

What is the root cause of this error? 

How it can be resolved?

Note: I have flashed the exact same firmware provided with the board without any changes.

Please find the below raw data of the temperature sensor.

[01/02/15 15:37]  21.0 C
[01/02/15 15:36]  20.9 C
[01/02/15 15:35]  20.9 C
[01/02/15 15:34]  20.9 C
[01/02/15 15:33]  20.9 C
[01/02/15 15:32]  20.9 C
[01/02/15 15:31]  20.9 C
[01/02/15 15:30]  20.9 C
[01/02/15 15:29]  20.9 C
[01/02/15 15:28]  20.9 C
[01/02/15 15:27]  21.0 C
[01/02/15 15:26]  21.0 C
[01/02/15 15:25]  20.9 C
[01/02/15 15:24]  21.0 C
[01/02/15 15:23]  21.0 C
[01/02/15 15:22]  21.0 C
[01/02/15 15:21]  20.9 C
[01/02/15 15:20]  21.0 C
[01/02/15 15:19]  21.0 C
[01/02/15 15:18]  21.0 C
[01/02/15 15:17]  21.0 C
[01/02/15 15:16]  21.0 C
[01/02/15 15:15]  21.0 C
[01/02/15 15:14]  21.0 C
[01/02/15 15:13]  21.0 C
[01/02/15 15:12]  21.0 C
[01/02/15 15:11]  21.0 C
[01/02/15 15:10]  21.0 C
[01/02/15 15:09]  21.0 C
[01/02/15 15:08]  21.0 C
[01/02/15 15:07]  21.0 C
[01/02/15 15:06]  21.0 C
[01/02/15 15:05]  21.0 C
[01/02/15 15:04]  21.0 C
[01/02/15 15:03]  21.0 C
[01/02/15 15:02]  21.1 C
[01/02/15 15:01]  21.1 C
[01/02/15 15:00]  21.1 C
[01/02/15 14:59]  21.1 C
[01/02/15 14:58]  21.1 C
[01/02/15 14:57]  21.1 C
[01/02/15 14:56]  21.1 C
[01/02/15 14:55]  21.1 C
[01/02/15 14:54]  21.1 C
[01/02/15 14:53]  21.1 C
[01/02/15 14:52]  21.1 C
[01/02/15 14:51]  21.1 C
[01/02/15 14:50]  21.1 C
[01/02/15 14:49]  21.1 C
[01/02/15 14:48]  21.1 C
[01/02/15 14:47]  21.1 C
[01/02/15 14:46]  21.1 C
[01/02/15 14:45]  21.2 C
[01/02/15 14:44]  21.2 C
[01/02/15 14:43]  21.2 C
[01/02/15 14:42]  21.2 C
[01/02/15 14:41]  21.2 C
[01/02/15 14:40]  21.2 C
[01/02/15 14:39]  21.2 C
[01/02/15 14:38]  21.2 C
[01/02/15 14:37]  21.2 C
[01/02/15 14:36]  21.2 C
[01/02/15 14:35]  21.3 C
[01/02/15 14:34]  21.3 C
[01/02/15 14:33]  21.3 C
[01/02/15 14:32]  21.3 C
[01/02/15 14:31]  21.3 C
[01/02/15 14:30]  21.3 C
[01/02/15 14:29]  21.3 C
[01/02/15 14:28]  21.3 C
[01/02/15 14:27]  21.3 C
[01/02/15 14:26]  21.3 C
[01/02/15 14:25]  21.3 C
[01/02/15 14:24]  21.3 C
[01/02/15 14:23]  21.3 C
[01/02/15 14:22]  21.3 C
[01/02/15 14:21]  21.3 C
[01/02/15 14:20]  21.3 C
[01/02/15 14:19]  21.4 C
[01/02/15 14:18]  21.4 C
[01/02/15 14:17]  21.4 C
[01/02/15 14:16]  21.4 C
[01/02/15 14:15]  21.3 C
[01/02/15 14:14]  21.3 C
[01/02/15 14:13]  21.3 C
[01/02/15 14:12]  21.3 C
[01/02/15 14:11]  21.3 C
[01/02/15 14:10]  21.3 C
[01/02/15 14:09]  21.3 C
[01/02/15 14:08]  21.3 C
[01/02/15 14:07]  21.3 C
[01/02/15 14:06]  21.3 C
[01/02/15 14:05]  21.3 C
[01/02/15 14:04]  21.3 C
[01/02/15 14:03]  21.3 C
[01/02/15 14:02]  00.0 C          <-------- temperature logging error
[01/02/15 14:01]  21.3 C
[01/02/15 14:00]  21.3 C
[01/02/15 13:59]  21.3 C
[01/02/15 13:58]  21.3 C
[01/02/15 13:57]  21.3 C
[01/02/15 13:56]  21.3 C
[01/02/15 13:55]  21.3 C
[01/02/15 13:54]  21.3 C
[01/02/15 13:53]  21.3 C
[01/02/15 13:52]  21.3 C
[01/02/15 13:51]  21.3 C
[01/02/15 13:50]  21.3 C
[01/02/15 13:49]  21.3 C
[01/02/15 13:48]  21.3 C
[01/02/15 13:47]  21.3 C
[01/02/15 13:46]  21.3 C
[01/02/15 13:45]  21.3 C
[01/02/15 13:44]  21.3 C
[01/02/15 13:43]  21.3 C
[01/02/15 13:42]  21.3 C
[01/02/15 13:41]  21.3 C
[01/02/15 13:40]  21.3 C
[01/02/15 13:39]  21.3 C
[01/02/15 13:38]  21.3 C
[01/02/15 13:37]  21.3 C
[01/02/15 13:36]  21.3 C
[01/02/15 13:35]  21.3 C
[01/02/15 13:34]  21.3 C
[01/02/15 13:33]  21.3 C
[01/02/15 13:32]  21.3 C
[01/02/15 13:31]  21.3 C
[01/02/15 13:30]  21.3 C
[01/02/15 13:29]  21.3 C
[01/02/15 13:28]  21.3 C
[01/02/15 13:27]  21.3 C
[01/02/15 13:26]  21.3 C
[01/02/15 13:25]  21.3 C
[01/02/15 13:24]  21.3 C
[01/02/15 13:23]  21.3 C
[01/02/15 13:22]  21.3 C
[01/02/15 13:21]  21.3 C
[01/02/15 13:20]  21.3 C
[01/02/15 13:19]  21.3 C
[01/02/15 13:18]  21.3 C
[01/02/15 13:17]  21.3 C
[01/02/15 13:16]  21.3 C
[01/02/15 13:15]  21.3 C
[01/02/15 13:14]  21.3 C
[01/02/15 13:13]  21.3 C
[01/02/15 13:12]  21.3 C
[01/02/15 13:11]  21.3 C
[01/02/15 13:10]  21.3 C
[01/02/15 13:09]  21.3 C
[01/02/15 13:08]  21.3 C
[01/02/15 13:07]  21.3 C
[01/02/15 13:06]  21.3 C
[01/02/15 13:05]  21.3 C
[01/02/15 13:04]  21.3 C
[01/02/15 13:03]  21.3 C
[01/02/15 13:02]  21.3 C
[01/02/15 13:01]  21.3 C
[01/02/15 13:00]  21.3 C
[01/02/15 12:59]  21.3 C
[01/02/15 12:58]  21.3 C
[01/02/15 12:57]  21.3 C
[01/02/15 12:56]  21.3 C
[01/02/15 12:55]  21.3 C
[01/02/15 12:54]  21.3 C
[01/02/15 12:53]  21.3 C
[01/02/15 12:52]  21.3 C
[01/02/15 12:51]  21.3 C
[01/02/15 12:50]  21.3 C
[01/02/15 12:49]  21.3 C
[01/02/15 12:48]  21.3 C
[01/02/15 12:47]  21.3 C
[01/02/15 12:46]  21.3 C
[01/02/15 12:45]  21.3 C
[01/02/15 12:44]  21.3 C
[01/02/15 12:43]  21.3 C
[01/02/15 12:42]  21.3 C
[01/02/15 12:41]  21.3 C
[01/02/15 12:40]  21.3 C
[01/02/15 12:39]  21.3 C
[01/02/15 12:38]  21.3 C
[01/02/15 12:37]  21.3 C
[01/02/15 12:36]  21.3 C
[01/02/15 12:35]  21.3 C
[01/02/15 12:34]  21.3 C
[01/02/15 12:33]  21.3 C
[01/02/15 12:32]  21.3 C
[01/02/15 12:31]  21.3 C
[01/02/15 12:30]  21.3 C
[01/02/15 12:29]  21.3 C
[01/02/15 12:28]  00.0 C    <-------- temperature logging error
[01/02/15 12:27]  21.3 C
[01/02/15 12:26]  21.3 C
[01/02/15 12:25]  21.3 C
[01/02/15 12:24]  21.3 C
[01/02/15 12:23]  21.3 C
[01/02/15 12:22]  21.4 C
[01/02/15 12:21]  21.3 C
[01/02/15 12:20]  21.3 C
[01/02/15 12:19]  21.3 C
[01/02/15 12:18]  21.3 C
[01/02/15 12:17]  21.3 C
[01/02/15 12:16]  21.4 C
[01/02/15 12:15]  21.4 C
[01/02/15 12:14]  21.3 C
[01/02/15 12:13]  21.4 C
[01/02/15 12:12]  21.3 C
[01/02/15 12:11]  21.3 C
[01/02/15 12:10]  21.3 C
[01/02/15 12:09]  21.3 C
[01/02/15 12:08]  21.4 C
[01/02/15 12:07]  21.3 C
[01/02/15 12:06]  21.3 C
[01/02/15 12:05]  21.3 C
[01/02/15 12:04]  21.3 C
[01/02/15 12:03]  21.3 C
[01/02/15 12:02]  21.3 C
[01/02/15 12:01]  21.3 C
[01/02/15 12:00]  21.4 C
[01/02/15 11:59]  21.3 C
[01/02/15 11:58]  21.3 C
[01/02/15 11:57]  21.3 C
[01/02/15 11:56]  21.3 C
[01/02/15 11:55]  21.4 C
[01/02/15 11:54]  00.0 C  <-------- temperature logging error
[01/02/15 11:53]  21.3 C
[01/02/15 11:52]  21.3 C
[01/02/15 11:51]  21.3 C
[01/02/15 11:50]  21.4 C
[01/02/15 11:49]  21.4 C
[01/02/15 11:48]  21.3 C
[01/02/15 11:47]  21.4 C
[01/02/15 11:46]  21.4 C
[01/02/15 11:45]  21.4 C
[01/02/15 11:44]  21.3 C
[01/02/15 11:43]  21.4 C
[01/02/15 11:42]  21.3 C
[01/02/15 11:41]  21.3 C
[01/02/15 11:40]  21.3 C
[01/02/15 11:39]  21.3 C
[01/02/15 11:38]  21.4 C
[01/02/15 11:37]  21.4 C
[01/02/15 11:36]  21.4 C
[01/02/15 11:35]  21.4 C
[01/02/15 11:34]  21.3 C
[01/02/15 11:33]  21.4 C
[01/02/15 11:32]  21.3 C
[01/02/15 11:31]  21.4 C
[01/02/15 11:30]  21.3 C
[01/02/15 11:29]  21.4 C
[01/02/15 11:28]  21.4 C
[01/02/15 11:27]  21.4 C
[01/02/15 11:26]  21.4 C
[01/02/15 11:25]  21.4 C
[01/02/15 11:24]  21.4 C
[01/02/15 11:23]  21.4 C
[01/02/15 11:22]  21.4 C
[01/02/15 11:21]  21.4 C
[01/02/15 11:20]  21.4 C
[01/02/15 11:19]  21.4 C
[01/02/15 11:18]  21.4 C
[01/02/15 11:17]  21.4 C
[01/02/15 11:16]  21.4 C
[01/02/15 11:15]  21.4 C
[01/02/15 11:14]  21.4 C
[01/02/15 11:13]  21.4 C
[01/02/15 11:12]  21.4 C
[01/02/15 11:11]  21.4 C
[01/02/15 11:10]  21.4 C
[01/02/15 11:09]  21.4 C
[01/02/15 11:08]  21.4 C
[01/02/15 11:07]  21.4 C
[01/02/15 11:06]  21.4 C
[01/02/15 11:05]  21.4 C
[01/02/15 11:04]  21.4 C
[01/02/15 11:03]  21.4 C
[01/02/15 11:02]  21.4 C
[01/02/15 11:01]  21.4 C
[01/02/15 11:00]  21.4 C
[01/02/15 10:59]  21.4 C
[01/02/15 10:58]  21.4 C
[01/02/15 10:57]  21.4 C
[01/02/15 10:56]  21.4 C
[01/02/15 10:55]  21.4 C
[01/02/15 10:54]  00.0 C  <-------- temperature logging error
[01/02/15 10:53]  21.4 C
[01/02/15 10:52]  21.4 C
[01/02/15 10:51]  21.4 C
[01/02/15 10:50]  21.4 C
[01/02/15 10:49]  21.4 C
[01/02/15 10:48]  21.4 C
[01/02/15 10:47]  21.4 C
[01/02/15 10:46]  21.4 C
[01/02/15 10:45]  21.4 C
[01/02/15 10:44]  21.4 C
[01/02/15 10:43]  21.4 C
[01/02/15 10:42]  21.4 C
[01/02/15 10:41]  21.4 C
[01/02/15 10:40]  21.4 C
[01/02/15 10:39]  21.4 C
[01/02/15 10:38]  21.4 C
[01/02/15 10:37]  21.4 C
[01/02/15 10:36]  21.4 C
[01/02/15 10:35]  21.4 C
[01/02/15 10:34]  21.4 C
[01/02/15 10:33]  21.4 C
[01/02/15 10:32]  21.4 C
[01/02/15 10:31]  21.4 C
[01/02/15 10:30]  21.4 C
[01/02/15 10:29]  21.4 C
[01/02/15 10:28]  21.4 C
[01/02/15 10:27]  00.0 C  <-------- temperature logging error
[01/02/15 10:26]  21.4 C
[01/02/15 10:25]  21.4 C
[01/02/15 10:24]  21.4 C
[01/02/15 10:23]  21.4 C
[01/02/15 10:22]  21.4 C
[01/02/15 10:21]  21.4 C
[01/02/15 10:20]  21.4 C
[01/02/15 10:19]  21.4 C
[01/02/15 10:18]  21.4 C
[01/02/15 10:17]  21.4 C
[01/02/15 10:16]  21.4 C
[01/02/15 10:15]  21.4 C
[01/02/15 10:14]  21.4 C
[01/02/15 10:13]  21.4 C
[01/02/15 10:12]  21.4 C
[01/02/15 10:11]  21.4 C
[01/02/15 10:10]  21.4 C
[01/02/15 10:09]  21.4 C
[01/02/15 10:08]  21.4 C
[01/02/15 10:07]  21.4 C
[01/02/15 10:06]  21.4 C
[01/02/15 10:05]  21.4 C
[01/02/15 10:04]  21.4 C
[01/02/15 10:03]  21.4 C
[01/02/15 10:02]  21.4 C
[01/02/15 10:01]  21.4 C
[01/02/15 10:00]  21.4 C
[01/02/15 09:59]  21.4 C
[01/02/15 09:58]  21.4 C
[01/02/15 09:57]  21.4 C
[01/02/15 09:56]  00.0 C  <-------- temperature logging error
[01/02/15 09:55]  21.4 C
[01/02/15 09:54]  21.4 C
[01/02/15 09:53]  21.4 C
[01/02/15 09:52]  21.4 C
[01/02/15 09:51]  21.4 C
[01/02/15 09:50]  21.4 C
[01/22/15 09:49]  21.4 C
[01/02/15 09:48]  21.4 C
[01/02/15 09:47]  21.4 C
[01/02/15 09:46]  21.4 C
[01/02/15 09:45]  21.4 C
[01/02/15 09:44]  21.4 C
[01/02/15 09:43]  21.4 C
[01/02/15 09:42]  21.4 C
[01/02/15 09:41]  21.5 C
[01/02/15 09:40]  21.4 C
[01/02/15 09:39]  21.4 C
[01/02/15 09:38]  21.4 C
[01/02/15 09:37]  21.4 C
[01/02/15 09:36]  21.4 C
[01/02/15 09:35]  21.4 C
[01/02/15 09:34]  21.4 C
[01/02/15 09:33]  21.4 C
[01/02/15 09:32]  21.4 C
[01/02/15 09:31]  21.4 C
[01/02/15 09:30]  21.4 C
[01/02/15 09:29]  21.4 C
[01/02/15 09:28]  21.4 C
[01/02/15 09:27]  21.5 C
[01/02/15 09:26]  21.4 C
[01/02/15 09:25]  21.5 C
[01/02/15 09:24]  21.4 C
[01/02/15 09:23]  21.4 C
[01/02/15 09:22]  21.4 C
[01/02/15 09:21]  21.4 C
[01/02/15 09:20]  21.4 C
[01/02/15 09:19]  21.5 C
[01/02/15 09:18]  21.4 C
[01/02/15 09:17]  21.5 C
[01/02/15 09:16]  21.5 C
[01/02/15 09:15]  21.4 C
[01/02/15 09:14]  21.4 C
[01/02/15 09:13]  21.5 C
[01/02/15 09:12]  21.5 C
[01/02/15 09:11]  21.4 C
[01/02/15 09:10]  21.5 C
[01/02/15 09:09]  21.5 C
[01/02/15 09:08]  21.4 C
[01/02/15 09:07]  21.5 C
[01/02/15 09:06]  21.5 C
[01/02/15 09:05]  21.5 C
[01/02/15 09:04]  21.5 C
[01/02/15 09:03]  21.5 C
[01/02/15 09:02]  21.5 C
[01/02/15 09:01]  21.5 C
[01/02/15 09:00]  21.5 C
[01/02/15 08:59]  21.5 C
[01/02/15 08:58]  21.5 C
[01/02/15 08:57]  21.5 C
[01/02/15 08:56]  21.5 C
[01/02/15 08:55]  21.5 C
[01/02/15 08:54]  21.5 C
[01/02/15 08:53]  21.5 C
[01/02/15 08:52]  21.5 C
[01/02/15 08:51]  21.5 C
[01/02/15 08:50]  21.5 C
[01/02/15 08:49]  21.5 C
[01/02/15 08:48]  21.5 C
[01/02/15 08:47]  21.5 C
[01/02/15 08:46]  21.5 C
[01/02/15 08:45]  21.5 C
[01/02/15 08:44]  21.5 C
[01/02/15 08:43]  21.5 C
[01/02/15 08:42]  21.5 C
[01/02/15 08:41]  21.5 C
[01/02/15 08:40]  21.5 C
[01/02/15 08:39]  21.5 C
[01/02/15 08:38]  21.5 C
[01/02/15 08:37]  21.5 C
[01/02/15 08:36]  21.5 C
[01/02/15 08:35]  21.5 C
[01/02/15 08:34]  21.5 C
[01/02/15 08:33]  21.5 C
[01/02/15 08:32]  21.5 C
[01/02/15 08:31]  21.5 C
[01/02/15 08:30]  21.5 C
[01/02/15 08:29]  21.5 C
[01/02/15 08:28]  21.5 C
[01/02/15 08:27]  21.5 C
[01/02/15 08:26]  21.5 C
[01/02/15 08:25]  21.5 C
[01/02/15 08:24]  21.5 C
[01/02/15 08:23]  21.5 C
[01/02/15 08:22]  21.5 C
[01/02/15 08:21]  21.5 C
[01/02/15 08:20]  21.5 C
[01/02/15 08:19]  21.5 C
[01/02/15 08:18]  21.5 C
[01/02/15 08:17]  21.5 C
[01/02/15 08:16]  21.5 C
[01/02/15 08:15]  00.0 C  <-------- temperature logging error
[01/02/15 08:14]  21.5 C
[01/02/15 08:13]  21.5 C
[01/02/15 08:12]  21.5 C
[01/02/15 08:11]  21.5 C
[01/02/15 08:10]  21.5 C
[01/02/15 08:09]  21.5 C
[01/02/15 08:08]  21.5 C
[01/02/15 08:07]  21.5 C
[01/02/15 08:06]  21.5 C
[01/02/15 08:05]  21.5 C
[01/02/15 08:04]  21.5 C
[01/02/15 08:03]  21.5 C
[01/02/15 08:02]  21.5 C
[01/02/15 08:01]  21.5 C
[01/02/15 08:00]  21.5 C
[01/02/15 07:59]  21.5 C
[01/02/15 07:58]  21.5 C
[01/02/15 07:57]  21.5 C
[01/02/15 07:56]  21.5 C
[01/02/15 07:55]  21.5 C
[01/02/15 07:54]  21.5 C
[01/02/15 07:53]  21.5 C
[01/02/15 07:52]  21.5 C
[01/02/15 07:51]  21.6 C
[01/02/15 07:50]  21.5 C
[01/02/15 07:49]  21.6 C
[01/02/15 07:48]  21.5 C
[01/02/15 07:47]  21.6 C
[01/02/15 07:46]  21.6 C
[01/02/15 07:45]  21.6 C
[01/02/15 07:44]  21.6 C
[01/02/15 07:43]  21.6 C
[01/02/15 07:42]  21.6 C
[01/02/15 07:41]  21.6 C
[01/02/15 07:40]  21.6 C
[01/02/15 07:39]  21.6 C
[01/02/15 07:38]  21.6 C
[01/02/15 07:37]  21.6 C
[01/02/15 07:36]  21.6 C
[01/02/15 07:35]  21.6 C
[01/02/15 07:34]  21.6 C
[01/02/15 07:33]  21.6 C
[01/02/15 07:32]  21.6 C
[01/02/15 07:31]  21.6 C
[01/02/15 07:30]  21.6 C
[01/02/15 07:29]  21.6 C
[01/02/15 07:28]  21.6 C
[01/02/15 07:27]  21.6 C
[01/02/15 07:26]  21.6 C
[01/02/15 07:25]  21.6 C
[01/02/15 07:24]  21.6 C
[01/02/15 07:23]  21.6 C
[01/02/15 07:22]  21.6 C
[01/02/15 07:21]  21.6 C
[01/02/15 07:20]  21.6 C
[01/02/15 07:19]  21.6 C
[01/02/15 07:18]  21.6 C
[01/02/15 07:17]  21.6 C
[01/02/15 07:16]  21.6 C
[01/02/15 07:15]  21.6 C
[01/02/15 07:14]  21.6 C
[01/02/15 07:13]  21.6 C
[01/02/15 07:12]  21.6 C
[01/02/15 07:11]  21.6 C
[01/02/15 07:10]  21.6 C
[01/02/15 07:09]  21.6 C
[01/02/15 07:08]  21.6 C
[01/02/15 07:07]  21.6 C
[01/02/15 07:06]  21.6 C
[01/02/15 07:05]  21.6 C
[01/02/15 07:04]  21.6 C
[01/02/15 07:03]  21.6 C
[01/02/15 07:02]  21.6 C
[01/02/15 07:01]  21.6 C
[01/02/15 07:00]  21.6 C
[01/02/15 06:59]  21.6 C
[01/02/15 06:58]  21.6 C
[01/02/15 06:57]  21.6 C
[01/02/15 06:56]  21.6 C
[01/02/15 06:55]  21.6 C
[01/02/15 06:54]  21.6 C
[01/02/15 06:53]  21.6 C
[01/02/15 06:52]  21.6 C
[01/02/15 06:51]  21.6 C
[01/02/15 06:50]  21.6 C
[01/02/15 06:49]  21.7 C
[01/02/15 06:48]  21.7 C
[01/02/15 06:47]  21.6 C
[01/02/15 06:46]  21.7 C
[01/02/15 06:45]  21.7 C
[01/02/15 06:44]  21.7 C
[01/02/15 06:43]  21.7 C
[01/02/15 06:42]  21.7 C
[01/02/15 06:41]  21.7 C
[01/02/15 06:40]  21.7 C
[01/02/15 06:39]  21.7 C
[01/02/15 06:38]  21.7 C
[01/02/15 06:37]  21.7 C
[01/02/15 06:36]  21.7 C
[01/02/15 06:35]  21.7 C
[01/02/15 06:34]  21.7 C
[01/02/15 06:33]  21.7 C
[01/02/15 06:32]  21.7 C
[01/02/15 06:31]  21.7 C
[01/02/15 06:30]  21.7 C
[01/02/15 06:29]  21.7 C
[01/02/15 06:28]  21.7 C
[01/02/15 06:27]  21.7 C
[01/02/15 06:26]  21.7 C
[01/02/15 06:25]  21.7 C
[01/02/15 06:24]  21.7 C
[01/02/15 06:23]  21.7 C
[01/02/15 06:22]  21.7 C
[01/02/15 06:21]  21.7 C
[01/02/15 06:20]  21.7 C
[01/02/15 06:19]  21.7 C
[01/02/15 06:18]  21.8 C
[01/02/15 06:17]  21.8 C
[01/02/15 06:16]  21.8 C
[01/02/15 06:15]  21.8 C
[01/02/15 06:14]  21.7 C
[01/02/15 06:13]  21.8 C
[01/02/15 06:12]  21.8 C
[01/02/15 06:11]  21.8 C
[01/02/15 06:10]  21.8 C
[01/02/15 06:09]  21.8 C
[01/02/15 06:08]  21.8 C
[01/02/15 06:07]  21.7 C
[01/02/15 06:06]  21.8 C
[01/02/15 06:05]  21.8 C
[01/02/15 06:04]  21.8 C
[01/02/15 06:03]  21.8 C
[01/02/15 06:02]  21.8 C
[01/02/15 06:01]  21.7 C
[01/02/15 06:00]  21.8 C
[01/02/15 05:59]  21.8 C
[01/02/15 05:58]  21.7 C
[01/02/15 05:57]  21.7 C
[01/02/15 05:56]  21.7 C
[01/02/15 05:55]  21.7 C
[01/02/15 05:54]  21.7 C
[01/02/15 05:53]  21.7 C
[01/02/15 05:52]  21.7 C
[01/02/15 05:51]  21.7 C
[01/02/15 05:50]  21.7 C
[01/02/15 05:49]  21.7 C
[01/02/15 05:48]  21.7 C
[01/02/15 05:47]  21.7 C
[01/02/15 05:46]  21.7 C
[01/02/15 05:45]  21.7 C
[01/02/15 05:44]  21.7 C
[01/02/15 05:43]  21.7 C
[01/02/15 05:42]  21.6 C
[01/02/15 05:41]  21.7 C
[01/02/15 05:40]  21.7 C
[01/02/15 05:39]  21.6 C
[01/02/15 05:38]  21.6 C
[01/02/15 05:37]  21.6 C
[01/02/15 05:36]  21.6 C
[01/02/15 05:35]  21.6 C
[01/02/15 05:34]  21.6 C
[01/02/15 05:33]  21.6 C
[01/02/15 05:32]  21.6 C
[01/02/15 05:31]  21.6 C
[01/02/15 05:30]  21.6 C
[01/02/15 05:29]  21.6 C
[01/02/15 05:28]  21.6 C
[01/02/15 05:27]  21.6 C
[01/02/15 05:26]  21.6 C
[01/02/15 05:25]  21.6 C
[01/02/15 05:24]  21.6 C
[01/02/15 05:23]  21.6 C
[01/02/15 05:22]  21.6 C
[01/02/15 05:21]  21.6 C
[01/02/15 05:20]  21.6 C
[01/02/15 05:19]  21.6 C
[01/02/15 05:18]  21.6 C
[01/02/15 05:17]  21.6 C
[01/02/15 05:16]  21.6 C
[01/02/15 05:15]  21.6 C
[01/02/15 05:14]  21.6 C
[01/02/15 05:13]  21.6 C
[01/02/15 05:12]  21.6 C
[01/02/15 05:11]  21.6 C
[01/02/15 05:10]  21.6 C
[01/02/15 05:09]  21.6 C
[01/02/15 05:08]  21.6 C
[01/02/15 05:07]  21.6 C
[01/02/15 05:06]  21.6 C
[01/02/15 05:05]  21.6 C
[01/02/15 05:04]  21.6 C
[01/02/15 05:03]  21.6 C
[01/02/15 05:02]  21.6 C
[01/02/15 05:01]  21.6 C
[01/02/15 05:00]  21.6 C
[01/02/15 04:59]  21.6 C
[01/02/15 04:58]  21.6 C
[01/02/15 04:57]  21.6 C
[01/02/15 04:56]  21.6 C
[01/02/15 04:55]  21.6 C
[01/02/15 04:54]  21.6 C
[01/02/15 04:53]  21.6 C
[01/02/15 04:52]  21.6 C
[01/02/15 04:51]  21.6 C
[01/02/15 04:50]  21.6 C
[01/02/15 04:49]  21.6 C
[01/02/15 04:48]  21.6 C
[01/02/15 04:47]  21.6 C
[01/02/15 04:46]  21.6 C
[01/02/15 04:45]  21.6 C
[01/02/15 04:44]  21.6 C
[01/02/15 04:43]  21.6 C
[01/02/15 04:42]  21.6 C
[01/02/15 04:41]  21.6 C
[01/02/15 04:40]  21.6 C
[01/02/15 04:39]  21.6 C
[01/02/15 04:38]  21.6 C
[01/02/15 04:37]  21.6 C
[01/02/15 04:36]  21.6 C
[01/02/15 04:35]  21.6 C
[01/02/15 04:34]  21.6 C
[01/02/15 04:33]  21.6 C
[01/02/15 04:32]  21.6 C
[01/02/15 04:31]  21.6 C
[01/02/15 04:30]  21.6 C
[01/02/15 04:29]  21.6 C
[01/02/15 04:28]  21.6 C
[01/02/15 04:27]  21.6 C
[01/02/15 04:26]  21.6 C
[01/02/15 04:25]  21.6 C
[01/02/15 04:24]  21.6 C
[01/02/15 04:23]  21.6 C
[01/02/15 04:22]  21.6 C
[01/02/15 04:21]  21.6 C
[01/02/15 04:20]  21.6 C
[01/02/15 04:19]  21.6 C
[01/02/15 04:18]  21.6 C
[01/02/15 04:17]  21.6 C
[01/02/15 04:16]  21.6 C
[01/02/15 04:15]  21.6 C
[01/02/15 04:14]  21.6 C
[01/02/15 04:13]  21.6 C
[01/02/15 04:12]  21.6 C
[01/02/15 04:11]  21.6 C
[01/02/15 04:10]  21.6 C
[01/02/15 04:09]  21.6 C
[01/02/15 04:08]  21.6 C
[01/02/15 04:07]  21.6 C
[01/02/15 04:06]  21.6 C
[01/02/15 04:05]  21.6 C
[01/02/15 04:04]  21.6 C
[01/02/15 04:03]  21.6 C
[01/02/15 04:02]  21.5 C
[01/02/15 04:01]  21.5 C
[01/02/15 04:00]  21.5 C
[01/02/15 03:59]  21.5 C
[01/02/15 03:58]  21.5 C
[01/02/15 03:57]  21.5 C
[01/02/15 03:56]  21.5 C
[01/02/15 03:55]  21.5 C
[01/02/15 03:54]  21.5 C
[01/02/15 03:53]  21.5 C
[01/02/15 03:52]  21.5 C
[01/02/15 03:51]  21.5 C
[01/02/15 03:50]  00.0 C  <-------- temperature logging error
[01/02/15 03:49]  21.5 C
[01/02/15 03:48]  21.5 C
[01/02/15 03:47]  21.5 C
[01/02/15 03:46]  21.5 C
[01/02/15 03:45]  21.5 C
[01/02/15 03:44]  21.5 C
[01/02/15 03:43]  21.5 C
[01/02/15 03:42]  21.5 C
[01/02/15 03:41]  21.5 C
[01/02/15 03:40]  21.5 C
[01/02/15 03:39]  21.5 C
[01/02/15 03:38]  21.5 C
[01/02/15 03:37]  21.5 C
[01/02/15 03:36]  21.5 C
[01/02/15 03:35]  21.5 C
[01/02/15 03:34]  21.5 C
[01/02/15 03:33]  21.5 C
[01/02/15 03:32]  21.5 C
[01/02/15 03:31]  21.5 C
[01/02/15 03:30]  21.5 C
[01/02/15 03:29]  21.5 C
[01/02/15 03:28]  21.4 C
[01/02/15 03:27]  21.5 C
[01/02/15 03:26]  21.4 C
[01/02/15 03:25]  21.4 C
[01/02/15 03:24]  21.4 C
[01/02/15 03:23]  21.4 C
[01/02/15 03:22]  21.4 C
[01/02/15 03:21]  21.3 C
[01/02/15 03:20]  21.3 C
[01/02/15 03:19]  21.3 C
[01/02/15 03:18]  21.3 C
[01/02/15 03:17]  21.3 C
[01/02/15 03:16]  21.3 C
[01/02/15 03:15]  21.3 C
[01/02/15 03:14]  21.3 C
[01/02/15 03:13]  21.3 C
[01/02/15 03:12]  21.3 C
[01/02/15 03:11]  21.3 C
[01/02/15 03:10]  21.3 C
[01/02/15 03:09]  21.3 C
[01/02/15 03:08]  21.3 C
[01/02/15 03:07]  21.3 C
[01/02/15 03:06]  21.3 C
[01/02/15 03:05]  21.3 C
[01/02/15 03:04]  21.2 C
[01/02/15 03:03]  21.2 C
[01/02/15 03:02]  21.2 C
[01/02/15 03:01]  21.2 C
[01/02/15 03:00]  21.1 C
[01/02/15 02:59]  21.1 C
[01/02/15 02:58]  21.1 C
[01/02/15 02:57]  21.1 C
[01/02/15 02:56]  21.0 C
[01/02/15 02:55]  21.0 C
[01/02/15 02:54]  21.1 C
[01/02/15 02:53]  21.1 C
[01/02/15 02:52]  21.3 C
[01/02/15 02:51]  21.5 C
[01/02/15 02:50]  21.5 C
[01/02/15 02:49]  21.5 C
[01/02/15 02:48]  00.0 C  <-------- temperature logging error
[01/02/15 02:47]  21.5 C
[01/02/15 02:46]  21.5 C
[01/02/15 02:45]  21.5 C
[01/02/15 02:44]  21.5 C
[01/02/15 02:43]  21.5 C
[01/02/15 02:42]  21.5 C
[01/02/15 02:41]  21.5 C
[01/02/15 02:40]  21.5 C
[01/02/15 02:39]  21.5 C
[01/02/15 02:38]  21.5 C
[01/02/15 02:37]  21.5 C
[01/02/15 02:36]  21.5 C
[01/02/15 02:35]  21.5 C
[01/02/15 02:34]  21.5 C
[01/02/15 02:33]  21.5 C
[01/02/15 02:32]  21.5 C
[01/02/15 02:31]  21.5 C
[01/02/15 02:30]  21.5 C
[01/02/15 02:29]  21.5 C
[01/02/15 02:28]  21.5 C
[01/02/15 02:27]  21.5 C
[01/02/15 02:26]  21.5 C
[01/02/15 02:25]  21.5 C
[01/02/15 02:24]  21.5 C
[01/02/15 02:23]  21.5 C
[01/02/15 02:22]  21.5 C
[01/02/15 02:21]  21.5 C
[01/02/15 02:20]  21.5 C
[01/02/15 02:19]  21.5 C
[01/02/15 02:18]  21.5 C
[01/02/15 02:17]  21.5 C
[01/02/15 02:16]  21.5 C
[01/02/15 02:15]  21.5 C
[01/02/15 02:14]  21.5 C
[01/02/15 02:13]  21.5 C
[01/02/15 02:12]  21.5 C
[01/02/15 02:11]  21.5 C
[01/02/15 02:10]  21.5 C
[01/02/15 02:09]  21.5 C
[01/02/15 02:08]  21.5 C
[01/02/15 02:07]  21.5 C
[01/02/15 02:06]  21.5 C
[01/02/15 02:05]  21.5 C
[01/02/15 02:04]  21.5 C
[01/02/15 02:03]  21.5 C
[01/02/15 02:02]  21.5 C
[01/02/15 02:01]  21.5 C
[01/02/15 02:00]  21.5 C
[01/02/15 01:59]  21.5 C
[01/02/15 01:58]  21.5 C
[01/02/15 01:57]  21.5 C
[01/02/15 01:56]  21.5 C
[01/02/15 01:55]  21.5 C
[01/02/15 01:54]  21.5 C
[01/02/15 01:53]  21.6 C
[01/02/15 01:52]  21.5 C
[01/02//15 01:51]  21.5 C
[01/02/15 01:50]  21.6 C
[01/02/15 01:49]  21.6 C
[01/02/15 01:48]  21.6 C
[01/02/15 01:47]  21.6 C
[01/02/15 01:46]  21.6 C
[01/02/15 01:45]  21.6 C
[01/02/15 01:44]  21.6 C
[01/02/15 01:43]  21.6 C
[01/02/15 01:42]  21.6 C
[01/02/15 01:41]  21.6 C
[01/02/15 01:40]  21.6 C
[01/02/15 01:39]  21.6 C
[01/02/15 01:38]  21.6 C
[01/02/15 01:37]  21.6 C
[01/02/15 01:36]  21.6 C
[01/02/15 01:35]  21.6 C
[01/02/15 01:34]  21.6 C
[01/02/15 01:33]  21.6 C
[01/02/15 01:32]  21.6 C
[01/02/15 01:31]  21.6 C
[01/02/15 01:30]  21.6 C
[01/02/15 01:29]  21.6 C
[01/02/15 01:28]  21.6 C
[01/02/15 01:27]  21.6 C
[01/02/15 01:26]  21.6 C
[01/02/15 01:25]  21.6 C
[01/02/15 01:24]  21.6 C
[01/02/15 01:23]  21.6 C
[01/02/15 01:22]  21.6 C
[01/02/15 01:21]  21.6 C
[01/02/15 01:20]  21.6 C
[01/02/15 01:19]  21.6 C
[01/02/15 01:18]  21.6 C
[01/02/15 01:17]  21.6 C
[01/02/15 01:16]  21.6 C
[01/02/15 01:15]  21.6 C
[01/02/15 01:14]  21.6 C
[01/02/15 01:13]  21.6 C
[01/02/15 01:12]  21.6 C
[01/02/15 01:11]  21.6 C
[01/02/15 01:10]  21.6 C
[01/02/15 01:09]  21.6 C
[01/02/15 01:08]  21.6 C
[01/02/15 01:07]  21.6 C
[01/02/15 01:06]  21.6 C
[01/02/15 01:05]  21.6 C
[01/02/15 01:04]  21.6 C
[01/02/15 01:03]  21.6 C
[01/02/15 01:02]  21.6 C
[01/02/15 01:01]  21.6 C
[01/02/15 01:00]  21.6 C
[01/02/15 00:59]  21.6 C
[01/02/15 00:58]  21.6 C
[01/02/15 00:57]  21.6 C
[01/02/15 00:56]  21.7 C
[01/02/15 00:55]  21.7 C
[01/02/15 00:54]  21.7 C
[01/02/15 00:53]  21.7 C
[01/02/15 00:52]  21.7 C
[01/02/15 00:51]  21.7 C
[01/02/15 00:50]  21.7 C
[01/02/15 00:49]  21.7 C
[01/02/15 00:48]  21.7 C
[01/02/15 00:47]  21.7 C
[01/02/15 00:46]  21.7 C
[01/02/15 00:45]  21.7 C
[01/02/15 00:44]  21.8 C
[01/02/15 00:43]  21.7 C
[01/02/15 00:42]  21.8 C
[01/02/15 00:41]  21.8 C
[01/02/15 00:40]  21.7 C
[01/02/15 00:39]  21.8 C
[01/02/15 00:38]  21.8 C
[01/02/15 00:37]  21.8 C
[01/02/15 00:36]  21.8 C
[01/02/15 00:35]  21.8 C
[01/02/15 00:34]  21.8 C
[01/02/15 00:33]  21.8 C
[01/02/15 00:32]  21.8 C
[01/02/15 00:31]  21.8 C
[01/02/15 00:30]  21.8 C
[01/02/15 00:29]  21.8 C
[01/02/15 00:28]  21.8 C
[01/02/15 00:27]  21.8 C
[01/02/15 00:26]  21.8 C
[01/02/15 00:25]  21.8 C
[01/02/15 00:24]  21.8 C
[01/02/15 00:23]  21.8 C
[01/02/15 00:22]  21.8 C
[01/02/15 00:21]  21.8 C
[01/02/15 00:20]  21.8 C
[01/02/15 00:19]  21.8 C
[01/02/15 00:18]  21.8 C
[01/02/15 00:17]  21.8 C
[01/02/15 00:16]  21.8 C
[01/02/15 00:15]  21.8 C
[01/02/15 00:14]  00.0 C  <-------- temperature logging error
[01/02/15 00:13]  21.9 C
[01/02/15 00:12]  21.9 C
[01/02/15 00:11]  21.9 C
[01/02/15 00:10]  21.9 C
[01/02/15 00:09]  21.9 C
[01/02/15 00:08]  21.9 C
[01/02/15 00:07]  21.9 C
[01/02/15 00:06]  21.9 C
[01/02/15 00:05]  21.9 C
[01/02/15 00:04]  21.9 C
[01/02/15 00:03]  21.9 C
[01/02/15 00:02]  21.9 C
[01/02/15 00:01]  21.9 C
[01/02/15 00:00]  21.9 C
[01/01/15 23:59]  21.9 C
[01/01/15 23:58]  22.0 C
[01/01/15 23:57]  21.9 C
[01/01/15 23:56]  21.9 C
[01/01/15 23:55]  21.9 C
[01/01/15 23:54]  21.9 C
[01/01/15 23:53]  21.9 C
[01/01/15 23:52]  21.9 C
[01/01/15 23:51]  21.9 C
[01/01/15 23:50]  21.8 C
[01/01/15 23:49]  21.8 C
[01/01/15 23:48]  21.8 C
[01/01/15 23:47]  21.8 C
[01/01/15 23:46]  21.8 C
[01/01/15 23:45]  21.9 C
[01/01/15 23:44]  22.0 C
[01/01/15 23:43]  22.1 C
[01/01/15 23:42]  22.2 C
[01/01/15 23:41]  22.3 C
[01/01/15 23:40]  22.3 C
[01/01/15 23:39]  22.4 C
[01/01/15 23:38]  22.4 C
[01/01/15 23:37]  22.4 C
[01/01/15 23:36]  22.4 C
[01/01/15 23:35]  22.4 C
[01/01/15 23:34]  22.4 C
[01/01/15 23:33]  22.4 C
[01/01/15 23:32]  22.4 C
[01/01/15 23:31]  22.4 C
[01/01/15 23:30]  22.4 C
[01/01/15 23:29]  22.4 C
[01/01/15 23:28]  22.4 C
[01/01/15 23:27]  22.4 C
[01/01/15 23:26]  22.4 C
[01/01/15 23:25]  22.4 C
[01/01/15 23:24]  22.4 C
[01/01/15 23:23]  22.4 C
[01/01/15 23:22]  22.4 C
[01/01/15 23:21]  22.4 C
[01/01/15 23:20]  22.5 C
[01/01/15 23:19]  22.5 C
[01/01/15 23:18]  22.5 C
[01/01/15 23:17]  22.4 C
[01/01/15 23:16]  22.4 C
[01/01/15 23:15]  22.5 C
[01/01/15 23:14]  22.5 C
[01/01/15 23:13]  22.5 C
[01/01/15 23:12]  22.5 C
[01/01/15 23:11]  00.0 C  <-------- temperature logging error
[01/01/15 23:10]  22.5 C
[01/01/15 23:09]  22.5 C
[01/01/15 23:08]  22.5 C
[01/01/15 23:07]  22.5 C
[01/01/15 23:06]  22.5 C
[01/01/15 23:05]  22.5 C
[01/01/15 23:04]  22.5 C
[01/01/15 23:03]  22.5 C
[01/01/15 23:02]  22.5 C
[01/01/15 23:01]  22.5 C
[01/01/15 23:00]  00.0 C  <-------- temperature logging error
[01/01/15 22:59]  22.5 C
[01/01/15 22:58]  22.5 C
[01/01/15 22:57]  22.5 C
[01/01/15 22:56]  22.5 C
[01/01/15 22:55]  22.5 C
[01/01/15 22:54]  22.5 C
[01/01/15 22:53]  22.5 C
[01/01/15 22:52]  22.5 C
[01/01/15 22:51]  22.5 C
[01/01/15 22:50]  22.5 C
[01/01/15 22:49]  22.5 C
[01/01/15 22:48]  22.5 C
[01/01/15 22:47]  22.5 C
[01/01/15 22:46]  22.5 C
[01/01/15 22:45]  22.5 C
[01/01/15 22:44]  22.5 C
[01/01/15 22:43]  22.5 C
[01/01/15 22:42]  22.5 C
[01/01/15 22:41]  22.6 C
[01/01/15 22:40]  22.5 C
[01/01/15 22:39]  22.6 C
[01/01/15 22:38]  22.6 C
[01/01/15 22:37]  22.6 C
[01/01/15 22:36]  22.6 C
[01/01/15 22:35]  22.6 C
[01/01/15 22:34]  22.6 C
[01/01/15 22:33]  22.6 C
[01/01/15 22:32]  22.6 C
[01/01/15 22:31]  22.6 C
[01/01/15 22:30]  22.6 C
[01/01/15 22:29]  22.6 C
[01/01/15 22:28]  22.5 C
[01/01/15 22:27]  22.5 C
[01/01/15 22:26]  22.5 C
[01/01/15 22:25]  22.5 C
[01/01/15 22:24]  22.5 C
[01/01/15 22:23]  22.5 C
[01/01/15 22:22]  22.5 C
[01/01/15 22:21]  22.5 C
[01/01/15 22:20]  22.5 C
[01/01/15 22:19]  22.5 C
[01/01/15 22:18]  22.5 C
[01/01/15 22:17]  22.5 C
[01/01/15 22:16]  22.5 C
[01/01/15 22:15]  22.5 C
[01/01/15 22:14]  22.5 C
[01/01/15 22:13]  22.5 C
[01/01/15 22:12]  22.5 C
[01/01/15 22:11]  22.6 C
[01/01/15 22:10]  22.5 C
[01/01/15 22:09]  22.5 C
[01/01/15 22:08]  22.5 C
[01/01/15 22:07]  22.5 C
[01/01/15 22:06]  22.6 C
[01/01/15 22:05]  22.5 C
[01/01/15 22:04]  22.5 C
[01/01/15 22:03]  22.6 C
[01/01/15 22:02]  22.5 C
[01/01/15 22:01]  22.5 C
[01/01/15 22:00]  22.5 C
[01/01/15 21:59]  22.5 C
[01/01/15 21:58]  22.5 C
[01/01/15 21:57]  22.5 C
[01/01/15 21:56]  22.6 C
[01/01/15 21:55]  22.5 C
[01/01/15 21:54]  22.6 C
[01/01/15 21:53]  22.6 C
[01/01/15 21:52]  22.6 C
[01/01/15 21:51]  22.6 C
[01/01/15 21:50]  22.6 C
[01/01/15 21:49]  22.6 C
[01/01/15 21:48]  22.6 C
[01/01/15 21:47]  22.6 C
[01/01/15 21:46]  22.6 C
[01/01/15 21:45]  22.6 C
[01/01/15 21:44]  22.6 C
[01/01/15 21:43]  22.6 C
[01/01/15 21:42]  22.7 C
[01/01/15 21:41]  22.8 C
[01/01/15 21:40]  22.8 C
[01/01/15 21:39]  22.8 C
[01/01/15 21:38]  23.0 C
[01/01/15 21:37]  23.1 C
[01/01/15 21:36]  23.3 C
[01/01/15 21:35]  23.3 C
[01/01/15 21:34]  23.3 C
[01/01/15 21:33]  23.4 C
[01/01/15 21:32]  23.5 C
[01/01/15 21:31]  23.7 C
[01/01/15 21:30]  24.1 C
[01/01/15 21:29]  24.5 C
[01/01/15 21:28]  24.1 C
[01/01/15 21:27]  23.1 C
[01/01/15 21:26]  23.1 C
[01/01/15 21:25]  23.1 C
[01/01/15 21:24]  23.1 C
[01/01/15 21:23]  23.1 C
[01/01/15 21:22]  23.1 C
[01/01/15 21:21]  23.0 C
[01/01/15 21:20]  23.0 C
[01/01/15 21:19]  23.1 C
[01/01/15 21:18]  23.1 C
[01/01/15 21:17]  23.1 C
[01/01/15 21:16]  23.1 C
[01/01/15 21:15]  23.1 C
[01/01/15 21:14]  23.1 C
[01/01/15 21:13]  23.1 C
[01/01/15 21:12]  23.1 C
[01/01/15 21:11]  23.1 C
[01/01/15 21:10]  23.1 C
[01/01/15 21:09]  23.1 C
[01/01/15 21:08]  23.1 C
[01/01/15 21:07]  23.2 C
[01/01/15 21:06]  23.2 C
[01/01/15 21:05]  23.2 C
[01/01/15 21:04]  23.3 C
[01/01/15 21:03]  23.3 C
[01/01/15 21:02]  23.3 C
[01/01/15 21:01]  23.3 C
[01/01/15 21:00]  23.3 C
[01/01/15 20:59]  23.3 C
[01/01/15 20:58]  23.4 C
[01/01/15 20:57]  23.4 C
[01/01/15 20:56]  23.4 C
[01/01/15 20:55]  23.5 C
[01/01/15 20:54]  23.5 C
[01/01/15 20:53]  23.5 C
[01/01/15 20:52]  23.5 C
[01/01/15 20:51]  23.5 C
[01/01/15 20:50]  23.6 C
[01/01/15 20:49]  23.6 C
[01/01/15 20:48]  23.6 C
[01/01/15 20:47]  23.6 C
[01/01/15 20:46]  23.7 C
[01/01/15 20:45]  23.8 C
[01/01/15 20:44]  23.8 C
[01/01/15 20:43]  23.8 C
[01/01/15 20:42]  23.9 C
[01/01/15 20:41]  23.9 C
[01/01/15 20:40]  24.0 C
[01/01/15 20:39]  24.0 C
[01/01/15 20:38]  24.0 C
[01/01/15 20:37]  24.1 C
[01/01/15 20:36]  24.1 C
[01/01/15 20:35]  24.1 C
[01/01/15 20:34]  24.2 C
[01/01/15 20:33]  24.3 C
[01/01/15 20:32]  24.3 C
[01/01/15 20:31]  24.1 C
[01/01/15 20:30]  23.6 C
[01/01/15 20:29]  23.0 C
[01/01/15 20:28]  23.0 C
[01/01/15 20:27]  23.0 C
[01/01/15 20:26]  23.0 C
[01/01/15 20:25]  23.0 C
[01/01/15 20:24]  23.0 C
[01/01/15 20:23]  23.1 C
[01/01/15 20:22]  23.1 C
[01/01/15 20:21]  23.1 C
[01/01/15 20:20]  23.2 C
[01/01/15 20:19]  23.3 C
[01/01/15 20:18]  23.3 C
[01/01/15 20:17]  23.5 C
[01/01/15 20:16]  23.7 C
[01/01/15 20:15]  23.9 C
[01/01/15 20:14]  24.1 C
[01/01/15 20:13]  24.6 C
[01/01/15 20:12]  25.8 C
[01/01/15 20:11]  28.4 C
[01/01/15 20:10]  26.8 C
[01/01/15 20:09]  26.0 C
[01/01/15 20:08]  24.8 C
[01/01/15 20:07]  22.5 C
[01/01/15 20:06]  22.2 C
[01/01/15 20:05]  22.1 C
[01/01/15 20:04]  22.1 C
[01/01/15 20:03]  22.1 C
[01/01/15 20:02]  22.1 C
[01/01/15 20:01]  22.1 C
[01/01/15 20:00]  22.1 C
[01/01/15 19:59]  22.1 C
[01/01/15 19:58]  22.1 C
[01/01/15 19:57]  22.1 C
[01/01/15 19:56]  22.1 C
[01/01/15 19:55]  22.1 C
[01/01/15 19:54]  22.1 C
[01/01/15 19:53]  22.1 C
[01/01/15 19:52]  22.0 C
[01/01/15 19:51]  22.1 C
[01/01/15 19:50]  22.0 C
[01/01/15 19:49]  22.0 C
[01/01/15 19:48]  22.1 C
[01/01/15 19:47]  22.0 C
[01/01/15 19:46]  22.1 C
[01/01/15 19:45]  22.1 C
[01/01/15 19:44]  22.1 C
[01/01/15 19:43]  22.1 C
[01/01/15 19:42]  22.0 C
[01/01/15 19:41]  22.0 C
[01/01/15 19:40]  22.1 C
[01/01/15 19:39]  22.1 C
[01/01/15 19:38]  22.0 C
[01/01/15 19:37]  22.0 C
[01/01/15 19:36]  22.0 C
[01/01/15 19:35]  22.0 C
[01/01/15 19:34]  22.0 C
[01/01/15 19:33]  22.0 C
[01/01/15 19:32]  22.0 C
[01/01/15 19:31]  22.0 C
[01/01/15 19:30]  22.0 C
[01/01/15 19:29]  22.0 C
[01/01/15 19:28]  22.0 C
[01/01/15 19:27]  22.0 C
[01/01/15 19:26]  21.9 C
[01/01/15 19:25]  21.9 C
[01/01/15 19:24]  21.9 C
[01/01/15 19:23]  21.9 C
[01/01/15 19:22]  21.9 C
[01/01/15 19:21]  21.9 C
[01/01/15 19:20]  21.9 C
[01/01/15 19:19]  21.9 C
[01/01/15 19:18]  21.9 C
[01/01/15 19:17]  21.9 C
[01/01/15 19:16]  21.8 C
[01/01/15 19:15]  21.8 C
[01/01/15 19:14]  21.8 C
[01/01/15 19:13]  21.9 C
[01/01/15 19:12]  22.1 C
[01/01/15 19:11]  22.3 C
[01/01/15 19:10]  22.5 C
[01/01/15 19:09]  22.5 C
[01/01/15 19:08]  22.5 C
[01/01/15 19:07]  22.5 C
[01/01/15 19:06]  22.5 C
[01/01/15 19:05]  22.5 C
[01/01/15 19:04]  22.5 C
[01/01/15 19:03]  22.5 C
[01/01/15 19:02]  22.6 C
[01/01/15 19:01]  22.5 C
[01/01/15 19:00]  22.6 C
[01/01/15 18:59]  22.6 C
[01/01/15 18:58]  22.6 C
[01/01/15 18:57]  22.6 C
[01/01/15 18:56]  22.6 C
[01/01/15 18:55]  22.6 C
[01/01/15 18:54]  22.6 C
[01/01/15 18:53]  22.6 C
[01/01/15 18:52]  22.6 C
[01/01/15 18:51]  22.6 C
[01/01/15 18:50]  22.6 C
[01/01/15 18:49]  22.7 C
[01/01/15 18:48]  22.7 C
[01/01/15 18:47]  22.7 C
[01/01/15 18:46]  22.7 C
[01/01/15 18:45]  22.7 C
[01/01/15 18:44]  22.7 C
[01/01/15 18:43]  22.7 C
[01/01/15 18:42]  22.7 C
[01/01/15 18:41]  22.7 C
[01/01/15 18:40]  22.7 C
[01/01/15 18:39]  22.7 C
[01/01/15 18:38]  22.7 C
[01/01/15 18:37]  22.7 C
[01/01/15 18:36]  22.7 C
[01/01/15 18:35]  22.8 C
[01/01/15 18:34]  22.7 C
[01/01/15 18:33]  22.7 C
[01/01/15 18:32]  22.7 C
[01/01/15 18:31]  22.7 C
[01/01/15 18:30]  22.8 C
[01/01/15 18:29]  22.8 C
[01/01/15 18:28]  22.7 C
[01/01/15 18:27]  22.7 C
[01/01/15 18:26]  22.7 C
[01/01/15 18:25]  22.7 C
[01/01/15 18:24]  22.7 C
[01/01/15 18:23]  22.7 C
[01/01/15 18:22]  22.7 C
[01/01/15 18:21]  22.7 C
[01/01/15 18:20]  22.8 C
[01/01/15 18:19]  22.7 C
[01/01/15 18:18]  22.7 C
[01/01/15 18:17]  22.8 C
[01/01/15 18:16]  22.7 C
[01/01/15 18:15]  22.7 C
[01/01/15 18:14]  22.7 C
[01/01/15 18:13]  22.7 C
[01/01/15 18:12]  22.7 C
[01/01/15 18:11]  22.7 C
[01/01/15 18:10]  22.7 C
[01/01/15 18:09]  22.7 C
[01/01/15 18:08]  22.6 C
[01/01/15 18:07]  22.7 C
[01/01/15 18:06]  22.6 C
[01/01/15 18:05]  22.7 C
[01/01/15 18:04]  22.7 C
[01/01/15 18:03]  22.6 C
[01/01/15 18:02]  22.6 C
[01/01/15 18:01]  22.6 C
[01/01/15 18:00]  22.6 C
[01/01/15 17:59]  22.6 C
[01/01/15 17:58]  22.6 C
[01/01/15 17:57]  22.6 C
[01/01/15 17:56]  22.6 C
[01/01/15 17:55]  22.6 C
[01/01/15 17:54]  22.6 C
[01/01/15 17:53]  22.6 C
[01/01/15 17:52]  22.6 C
[01/01/15 17:51]  22.6 C
[01/01/15 17:50]  22.7 C
[01/01/15 17:49]  22.6 C
[01/01/15 17:48]  22.6 C
[01/01/15 17:47]  22.6 C
[01/01/15 17:46]  22.6 C
[01/01/15 17:45]  22.6 C
[01/01/15 17:44]  22.6 C
[01/01/15 17:43]  22.6 C
[01/01/15 17:42]  22.6 C
[01/01/15 17:41]  22.6 C
[01/01/15 17:40]  22.6 C
[01/01/15 17:39]  22.6 C
[01/01/15 17:38]  22.6 C
[01/01/15 17:37]  22.6 C
[01/01/15 17:36]  22.6 C
[01/01/15 17:35]  22.6 C
[01/01/15 17:34]  22.6 C
[01/01/15 17:33]  22.6 C
[01/01/15 17:32]  22.6 C
[01/01/15 17:31]  22.6 C
[01/01/15 17:30]  22.6 C
[01/01/15 17:29]  22.6 C
[01/01/15 17:28]  22.6 C
[01/01/15 17:27]  22.5 C
[01/01/15 17:26]  22.6 C
[01/01/15 17:25]  22.5 C
[01/01/15 17:24]  22.6 C
[01/01/15 17:23]  22.5 C
[01/01/15 17:22]  22.5 C
[01/01/15 17:21]  22.5 C
[01/01/15 17:20]  22.5 C
[01/01/15 17:19]  22.5 C
[01/01/15 17:18]  22.5 C
[01/01/15 17:17]  22.5 C
[01/01/15 17:16]  22.5 C
[01/01/15 17:15]  22.5 C
[01/01/15 17:14]  22.5 C
[01/01/15 17:13]  22.5 C
[01/01/15 17:12]  22.5 C
[01/01/15 17:11]  22.5 C
[01/01/15 17:10]  22.5 C
[01/01/15 17:09]  22.5 C
[01/01/15 17:08]  22.5 C
[01/01/15 17:07]  22.5 C
[01/01/15 17:06]  22.5 C
[01/01/15 17:05]  22.5 C
[01/01/15 17:04]  22.4 C
[01/01/15 17:03]  22.4 C
[01/01/15 17:02]  22.4 C
[01/01/15 17:01]  22.4 C
[01/01/15 17:00]  22.4 C
[01/01/15 16:59]  22.4 C
[01/01/15 16:58]  22.3 C
[01/01/15 16:57]  22.3 C
[01/01/15 16:56]  22.3 C
[01/01/15 16:55]  22.3 C
[01/01/15 16:54]  22.3 C
[01/01/15 16:53]  22.3 C
[01/01/15 16:52]  22.3 C
[01/01/15 16:51]  22.3 C
[01/01/15 16:50]  22.3 C
[01/01/15 16:49]  22.3 C
[01/01/15 16:48]  22.3 C
[01/01/15 16:47]  22.3 C
[01/01/15 16:46]  22.3 C
[01/01/15 16:45]  22.3 C
[01/01/15 16:44]  22.3 C
[01/01/15 16:43]  22.3 C
[01/01/15 16:42]  22.3 C
[01/01/15 16:41]  22.3 C
[01/01/15 16:40]  22.3 C
[01/01/15 16:39]  22.3 C
[01/01/15 16:38]  22.3 C
[01/01/15 16:37]  22.3 C
[01/01/15 16:36]  22.3 C
[01/01/15 16:35]  22.3 C
[01/01/15 16:34]  22.3 C
[01/01/15 16:33]  22.3 C
[01/01/15 16:32]  22.3 C
[01/01/15 16:31]  22.3 C
[01/01/15 16:30]  22.3 C
[01/01/15 16:29]  22.3 C
[01/01/15 16:28]  22.3 C
[01/01/15 16:27]  22.3 C
[01/01/15 16:26]  22.3 C
[01/01/15 16:25]  22.3 C
[01/01/15 16:24]  22.3 C
[01/01/15 16:23]  22.3 C
[01/01/15 16:22]  22.3 C
[01/01/15 16:21]  22.3 C
[01/01/15 16:20]  22.3 C
[01/01/15 16:19]  22.3 C
[01/01/15 16:18]  22.3 C
[01/01/15 16:17]  22.2 C
[01/01/15 16:16]  22.3 C
[01/01/15 16:15]  22.3 C
[01/01/15 16:14]  22.3 C
[01/01/15 16:13]  22.3 C
[01/01/15 16:12]  22.3 C
[01/01/15 16:11]  22.3 C
[01/01/15 16:10]  22.3 C
[01/01/15 16:09]  22.3 C
[01/01/15 16:08]  22.2 C
[01/01/15 16:07]  22.2 C
[01/01/15 16:06]  22.2 C
[01/01/15 16:05]  22.2 C
[01/01/15 16:04]  22.2 C
[01/01/15 16:03]  22.2 C
[01/01/15 16:02]  22.2 C
[01/01/15 16:01]  22.2 C
[01/01/15 16:00]  22.2 C
[01/01/15 15:59]  22.2 C
[01/01/15 15:58]  22.2 C
[01/01/15 15:57]  22.2 C
[01/01/15 15:56]  22.2 C
[01/01/15 15:55]  22.2 C
[01/01/15 15:54]  22.2 C
[01/01/15 15:53]  22.2 C
[01/01/15 15:52]  22.2 C
[01/01/15 15:51]  22.1 C
[01/01/15 15:50]  22.1 C
[01/01/15 15:49]  22.1 C
[01/01/15 15:48]  22.1 C
[01/01/15 15:47]  22.1 C
[01/01/15 15:46]  22.1 C
[01/01/15 15:45]  22.1 C
[01/01/15 15:44]  22.1 C
[01/01/15 15:43]  22.1 C
[01/01/15 15:42]  22.0 C
[01/01/15 15:41]  22.0 C
[01/01/15 15:40]  22.1 C
[01/01/15 15:39]  22.1 C
[01/01/15 15:38]  22.1 C
[01/01/15 15:37]  22.1 C
[01/01/15 15:36]  22.1 C
[01/01/15 15:35]  22.1 C
[01/01/15 15:34]  22.2 C
[01/01/15 15:33]  22.3 C
[01/01/15 15:32]  22.5 C
[01/01/15 15:31]  22.8 C
[01/01/15 15:30]  23.3 C
[01/01/15 15:29]  23.8 C
[01/01/15 15:28]  23.5 C
Power was interrupted!
Time and Date have been reset.
Current state: Stopped
Power was interrupted!
Time and Date have been reset.
Current state: Stopped
[01/01/15 00:01]  23.5 C
[01/01/15 00:00]  24.1 C
TI's Datalogger Demo!
Default Settings:
    Mode: Temperature Only (F)
    Time: 12:00:00 AM
    Date: 01/01/15
    Polling Interval: 10 Minutes
    Default State: Stopped
Control Commands
    ST - Start
    SP - Stop
    CD - Clear Data
    RE - Reset
Config Commands
    TI hh:mm:ss - Set Time
    DA mm/dd/yy - Date
    PI xxx - Set Polling Interval (minutes)
    TM x - Temp Mode: 'F' or 'C'
    MO x - Set Mode (0-3)
        0: Temperature
        1: Temperature and Light
        2: Temperature and Humidity
        3: Temperature, Light, and Humidity

Compiler/CC3220: CC3220 LPDS

$
0
0

Part Number:CC3220

Tool/software: TI C/C++ Compiler

hello

I want to wake up PRCM_LPDS_HOST_IRQ PRCM_LPDS_GPIO PRCM_LPDS_TIMER in CC3220 alwaysConnected LPDS mode, but I can't find the sample in SDK. I don't know how to do it.Can you provide a practical example for me to learn how to implement?


CCS/MSP430F5528: UART Problem

$
0
0

Part Number:MSP430F5528

Tool/software: Code Composer Studio

Hello I am trying to get the data from other board through uart.

However, the problem is that I only get the last character of the string

(or example, if I send '12345', I am only getting 5 all the time)

Please can somebody help to resolve this issue?

//UART Config
P3SEL |= BIT3+BIT4; // P3.3,4 = USCI_A0 TXD/RXD
UCA0CTL1 |= UCSWRST; // **Put state machine in reset**
UCA0CTL1 |= UCSSEL_2; // CLK = SMCLK
UCA0BR0 = 72; // 1MHz 115200 (see User's Guide)
UCA0BR1 = 0; // 1MHz 115200
UCA0MCTL |= UCBRS_1 + UCBRF_0; // Modulation UCBRSx=1, UCBRFx=0
UCA0CTL1 &= ~UCSWRST; // **Initialize USCI state machine**
UCA0IE |= UCRXIE;
for(i=5000;i>0;i--); // Wait for slave to initialize

__enable_interrupt(); // Enable interrupts globally

#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector=USCI_A0_VECTOR
__interrupt void USCI_A0_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(USCI_A0_VECTOR))) USCI_A0_ISR (void)
#else
#error Compiler not supported!
#endif
{
switch(__even_in_range(UCA0IV,4))
{
case 0:break; // Vector 0 - no interrupt
case 2:
{
for (length=0; length<5; length++)
MST_Data[length] = UCA0RXBUF;

if(MST_Data[0] == 'S')
UCA0TXBUF = 'a';
}

break; // Vector 2 - RXIFG
case 4:break; // Vector 4 - TXIFG
default: break;
}
}

TMS320F280049: Layout guide and analog/digital ground separation

$
0
0

Part Number:TMS320F280049

Dear Champs,

I am asking this for our customers.

1. Schematic for analog/digital domain

On F280049C control card, it seems we only separate MCU_3V3 (digital) and MCU_A_3V3 (analog) by beads, but we don't on purpose separate analog and digital ground.

VSS and VSSA are connected to GND together.

Why don't we need to separate them?

2. Layout for analog/digital domain

Does that mean we don't even separate analog and digital power domain in layout?

3. Layout guide

Do we have any layout guide for F28004x?

Or can we follow sec 4.6 of the old layout guide:

spraas1d.pdf

Wayne Huang

CCS/MSP430FR2633: Temperatur drift

$
0
0

Part Number:MSP430FR2633

Tool/software: Code Composer Studio

dear TI Support team,

I am using the msp430fr2633 to develop a customized application for our customer.

we started currently a temperature test. Due to the temperature drift, wich change the capacitance value, we could not pass the exam until now. the output switch on at many temperature stages.

could you please say me, wich parameter have a wrong value?

My Parameter Settings under captivate_confing are as follow:

tSensor BTN00=
{
// Basic Properties
.TypeOfSensor = eButtonGroup,
.SensingMethod = eSelf,
.DirectionOfInterest = eDOIDown,
.pvCallback = NULL,
.ui8NrOfCycles = 1,
.pCycle = BTN00_Cycles,
.pSensorParams = (tGenericSensorParams*)&BTN00_Params,
// Conversion Control Parameters
.ui16ConversionCount = 2000,
.ui16ConversionGain =200,
.ui8FreqDiv = 1,
.ui8ChargeLength = 0,
.ui8TransferLength = 0,
.bModEnable = true,
.ui8BiasControl = 0,
.bCsDischarge = true,
.bLpmControl = false,
.ui8InputSyncControl = 0,
.bTimerSyncControl = false,
.bIdleState = true,
// Tuning Parameters
.ui16ProxThreshold = 33,
.ui16NegativeTouchThreshold = 2000,
.ui16ErrorThreshold = 2800,
.ui16TimeoutThreshold = 65535,
.ProxDbThreshold.DbIn = 5,
.ProxDbThreshold.DbOut = 1,
.TouchDbThreshold.DbIn = 5,
.TouchDbThreshold.DbOut = 1,
.bCountFilterEnable = true,
.ui8CntBeta = 3,
.bSensorHalt = false,
.bPTSensorHalt = true,
.bPTElementHalt = true,
.ui8LTABeta = 7,
.bReCalibrateEnable = true,

};


#if (CAPT_CONDUCTED_NOISE_IMMUNITY_ENABLE==true)
//*****************************************************************************
//
//! \var g_EMCConfig
//! This structure stores the EMC configuration for this application.
//
//*****************************************************************************
const tEMCConfig g_EMCConfig =
{


// Conversion Style
.selfModeConversionStyle = eMultiFrequencyWithOutlierRemovalAndErrCorrection,
.projModeConversionStyle = eMultiFrequencyWithOutlierRemovalAndErrCorrection,

// Oversampling Style
.selfModeOversamplingStyle = e4xOversampling,
.projModeOversamplingStyle = e4xOversampling,

// Jitter Filter Enable
.bJitterFilterEnable = true,

// Noise Thresholds and Calibration Noise Limits
.ui8NoiseThreshold = 20,
.ui16CalibrationNoiseLimit = 10,
.ui8CalibrationTestSampleSize = 8,

// Dynamic Threshold Adjustment Parameters
.bEnableDynamicThresholdAdjustment = false,
.ui8MaxRelThreshAdj = 76,
.ui8NoiseLevelFilterEntryThresh = 40,
.ui8NoiseLevelFilterExitThresh = 0,
.ui8NoiseLevelFilterDown = 6,
.ui8NoiseLevelFilterUp = 4,
.coeffA = _IQ31(0.0065),
.coeffB = _IQ31(0.050)
};
#endif

could you please explain me, how the Temperaturdrift compensation in your app work?

Thanks a lot!

Best Regards,

Hassan

CCS/AWR1443: High Accuracy Visualiser "Error: Incorrect config reported by target. Hint: Change configuration and try again"

$
0
0

Part Number:AWR1443

Tool/software: Code Composer Studio

Device AWR1443

SDK 2.1.0.4

Custom upgraded toolbox 3.1.1 High accuracy lab such that it operated with SDK2.1.0.4 so that i could run this demo on silicon version ES 3.0

I can connect to tthe target in the high accuracy visualiser, but when i try to send it the configuration file i get the following error

"Error: Incorrect config reported by target. Hint: Change configuration and try again"

I'm unsure at this point whether this is an issue with my build or incompatibilitity between sdk2.1.0.4 and the visualizer.

What would produce this error on the visualiser side?

The visualiser as i understand only supports SDK 1.0.0 (in the about section of the visualiser)

Is there anyother way i can view this data?

Regards

Dan

CCS/LAUNCHXL-CC2640R2: Can I interface 2.9 inch e-paper display with cc2640R2 & use its library in code?

$
0
0

Part Number:LAUNCHXL-CC2640R2

Tool/software: Code Composer Studio

Can I interface 2.9 inch e-paper display with cc2640R2 ? If yes then can use its library  code directly in my project?

LMX2571: Frequency locked problem of LMX2571

$
0
0

Part Number:LMX2571

Hi:

   We have the  Frequency locked problem of LMX2571. You can see the detail in  the accessory.

The frequency is on the spectrum screen as below. The frequency has no change with the OSC input or no input. Is the internal VCO self-oscillating? Or OSC reference has no use?  Is the configuration of LMX2571incorrect?  Can you send the detail code of the LMX2571

   I am looking  forward to your reply. Thank you

(Please visit the site to view this file)

DRV8872: nFault Signal active when iTrip is reached ?

$
0
0

Part Number:DRV8872

Is the nFault signal active when ITrip is reached or only when one or more Protection features (UVLO, OCP, TSD) are active ?


AFE4404: How to transform the ADC value to current?

$
0
0

Part Number:AFE4404

as title ,

I got some raw data from AFE4404 ,

1.  How to transform the ADC value(raw data) to current?

2. ( LED1ENDC  - LED1STC  )  =>   mean the SLED1 time?  what unit is it?us?

 

 

TINA/Spice/MF10-N: PSpice model for this part.

$
0
0

Part Number:MF10-N

Tool/software:TINA-TI or Spice Models

I am designing a complex system and I would like to check suitability of this component for my system, would it be possible to obtain the PSpice model?

CCS/LAUNCHXL-CC2650: Setting time in RTC through mobile app(BLE Scanner).

$
0
0

Part Number:LAUNCHXL-CC2650

Tool/software: Code Composer Studio

Is it possible to set time of RTC on cc2650 launch-xl from mobile application (BLE SCANNER) by modifying data_service in project zero / or by ading a new custom service ?

Can we invoke the function "Seconds_set()" from BLE SCANNER somehow?

And can send the UNIX EPOCH TIME value from application (BLE Scanner) using custom service and with that data Seconds_set should be called??

 

CC1310: Unused pins in non-RF configuration

$
0
0

Part Number:CC1310

Hi,

for the sake of re-use we intend to use a CC1310 as a host-MCU for one product. In this configuration the RF parts of the board will be unused (i.e. no radio communication). Can you recommend how to deal with the following pins in terms of schematics? Should they be terminated, set to open or short etc?

  1. Signal  : RF_P, RF_N and RX_TX
  2. Power : DCDC_SW
  3. Power : VDDR
  4. Power : VDD_RF

Thanks!

/Peter

FLY BACK OUTPUT CAPACITOR SELECTION CRITERIA

Viewing all 262198 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>