-
Notifications
You must be signed in to change notification settings - Fork 0
/
code for rtd input to panel display output.c
140 lines (125 loc) · 3.48 KB
/
code for rtd input to panel display output.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
#include <lpc214x.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
void delay_ms(uint16_t j) /* Function for delay in milliseconds */
{
uint16_t x,i;
for(i=0;i<j;i++)
{
for(x=0; x<6000; x++); /* loop to generate 1 millisecond delay with Cclk = 60MHz */
}
}
void LCD_CMD(char command)
{
IO0PIN = ( (IO0PIN & 0xFFFF00FF) | (command<<8) );
IO0SET = 0x00000040; /* EN = 1 */
IO0CLR = 0x00000030; /* RS = 0, RW = 0 */
delay_ms(2);
IO0CLR = 0x00000040; /* EN = 0, RS and RW unchanged(i.e. RS = RW = 0) */
//delay_ms(5);
}
void LCD_INIT(void)
{
IO0DIR = IO0DIR | 0x0000FFF0; /* P0.8 to P0.15 LCD Data. P0.4,5,6 as RS RW and EN */
delay_ms(20);
LCD_CMD(0x38); /* Initialize lcd */
LCD_CMD(0x0C); /* Display on cursor off */
LCD_CMD(0x06); /* Auto increment cursor */
LCD_CMD(0x01); /* Display clear */
LCD_CMD(0x80); /* First line first position */
}
void LCD_STRING (char* msg)
{
uint8_t i=0;
while(msg[i]!=0)
{
IO0PIN = ( (IO0PIN & 0xFFFF00FF) | (msg[i]<<8) );
IO0SET = 0x00000050; /* RS = 1, , EN = 1 */
IO0CLR = 0x00000020; /* RW = 0 */
delay_ms(2);
IO0CLR = 0x00000040; /* EN = 0, RS and RW unchanged(i.e. RS = 1, RW = 0) */
//delay_ms(5);
i++;
}
}
void LCD_CHAR (char msg)
{
IO0PIN = ( (IO0PIN & 0xFFFF00FF) | (msg<<8) );
IO0SET = 0x00000050; /* RS = 1, , EN = 1 */
IO0CLR = 0x00000020; /* RW = 0 */
delay_ms(2);
IO0CLR = 0x00000040; /* EN = 0, RS and RW unchanged(i.e. RS = 1, RW = 0) */
delay_ms(5);
}
void func (float adc_read, int *tmpInt1, int *tmpInt2)
{
//char *tmpSign = (adc_read1 < 0) ? "-" : "";
float tmpVal = (adc_read < 0) ? -adc_read : adc_read;
*tmpInt1 = tmpVal; // Get the integer (678).
float tmpFrac = tmpVal - *tmpInt1; // Get fraction (0.0123).
*tmpInt2 = tmpFrac*100;
} // Turn into integer (123).
int main(void)
{
uint32_t result;
float voltage,temp;
double temp_error;
PINSEL1 = 0x01000000;
//AD0CR = 0x00200402; /* P0.28 as AD0.1 */
IO0DIR = IO0DIR | (1<<1);
IO0PIN = IO0PIN | (1<<1);
LCD_INIT();
LCD_STRING("VOLTAGE");
//LCD_CMD(0x06);
LCD_CMD(0XC0);
LCD_STRING("TEMPERATURE");
LCD_CMD(0x01);
while(1)
{
AD0CR = 0x00200402;
AD0CR = AD0CR | (1<<24); /* Start Conversion */
while ( !(AD0GDR & 0x80000000) ){ /* Wait till DONE */
result = AD0GDR;
result = (result>>6);
result = (result & 0x000003FF);
voltage = ( (result/1023.0) * 3.3 ); /* Convert ADC value to equivalent voltage */
temp = ((voltage-1.05)/0.00404);
if (temp>=30)
temp_error= pow((temp-30)/92,2.2);
else
temp_error= pow(-(temp-30)/100,2.2);
temp = temp + temp_error;
}
char vol[18];
char tempr[18];
float adc_read1 = voltage;
float adc_read2 = temp;
char *tmpSign = (adc_read1 < 0) ? "-" : "";
int tmpInt1;
int tmpInt2;
func (adc_read1, &tmpInt1, &tmpInt2);
LCD_CMD(0x80);
sprintf (vol, "%s%d.%02d\n", tmpSign, tmpInt1, tmpInt2);
LCD_STRING(vol);
LCD_CMD(0xC0);
char *tmpSign2 = (adc_read2 < 0) ? "-" : "";
func (adc_read2, &tmpInt1, &tmpInt2);
sprintf (tempr, "%s%d.%02d\n", tmpSign2, tmpInt1, tmpInt2);
LCD_STRING(tempr);
//delay_ms(10);
LCD_CMD(0xCC);
if (temp>=590){
IO0DIR = IO0DIR | (1<<1);
IO0DIR = IO0DIR | (1<<16);
IO0CLR = IO0PIN | (1<<1) | (1<<16);
LCD_CMD(0X01);
LCD_STRING("CRITICAL");
LCD_CMD(0x01);
IO0SET = IO0PIN | (1<<1);
delay_ms(5); }
}
return 0;
}