Rev Author Line No. Line
2779 kaklik 1 /*
2 MPL115A1 SDN - +3.3V (always power on)
3 MPL115A1 #CS - PIN_C2
4 MPL115A1 DOUT - PIN_C4
5 MPL115A1 DIN - PIN_C5
6 MPL115A1 SCLK - PIN_C3
7 MPL115A1 GND - GND
8 MPL115A1 VDD - +3.3V
9 */
10  
11  
12 // SPI mode definitions.
13 #define SPI_MODE_0 (SPI_L_TO_H | SPI_XMIT_L_TO_H)
14 #define SPI_MODE_1 (SPI_L_TO_H)
15 #define SPI_MODE_2 (SPI_H_TO_L)
16 #define SPI_MODE_3 (SPI_H_TO_L | SPI_XMIT_L_TO_H)
17  
18 float a0; // correctiaon coefficients
19 float b1;
20 float b2;
21 float c12;
22  
23  
2907 kaklik 24 int1 MPL_init()
2779 kaklik 25 {
26 unsigned int8 a0_MSB, a0_LSB;
27 unsigned int8 b1_MSB, b1_LSB;
28 unsigned int8 b2_MSB, b2_LSB;
29 unsigned int8 c12_MSB, c12_LSB;
30  
31 output_low(CSN_SPI);
32  
33 spi_write(0x88); // get MSB for a0
34 a0_MSB = spi_read(0x00);
35 spi_write(0x8A); // get LSB for a0
36 a0_LSB = spi_read(0x00);
37  
38 spi_write(0x8C); // get MSB for b1
39 b1_MSB = spi_read(0x00);
40 spi_write(0x8E); // get LSB for b1
41 b1_LSB = spi_read(0x00);
42  
43 spi_write(0x90); // get MSB for b2
44 b2_MSB = spi_read(0x00);
45 spi_write(0x92); // get LSB for b2
46 b2_LSB = spi_read(0x00);
47  
48 spi_write(0x94); // get MSB for c12
49 c12_MSB = spi_read(0x00);
50 spi_write(0x96); // get LSB for c12
51 c12_LSB = spi_read(0x00);
52  
53 spi_read(0x00);
54 output_high(CSN_SPI);
55  
56 // translate to floating point number
57  
58 a0 = ((unsigned int16) a0_MSB << 5) + (a0_LSB >> 3) + (a0_LSB & 0x07)/8.0;
59 b1 = ((((b1_MSB & 0x1F) * 0x100) + b1_LSB) / 8192.0) - 3;
60 b2 = ((((unsigned int16) (b2_MSB - 0x80) << 8) + b2_LSB)/ 16384.0) - 2;
61 c12 =(((c12_MSB * 0x100) + c12_LSB)/16777216.0);
2907 kaklik 62  
63 if((a0_MSB | a0_LSB | b1_MSB | b1_LSB | b2_MSB | b2_LSB |c12_MSB | c12_LSB) == 0xFF)
64 return (TRUE);
65 else return (FALSE);
2779 kaklik 66 }
67  
68 float MPL_get_pressure()
69 {
70 unsigned int8 LSB_data, MSB_data;
71 unsigned int16 ADC_pressure, ADC_temperature;
72 float Pcomp;
73  
74 output_low(CSN_SPI); //Start temperature and pressure conversion
75 spi_write(0x24);
76 spi_write(0x00);
77 output_high(CSN_SPI);
78  
79 delay_ms(10);
80  
81 output_low(CSN_SPI); // get MSB for Pressure
82 spi_write(0x80);
83 MSB_data = spi_read(0x00);
84 spi_write(0x82); // get LSB for Pressure
85 LSB_data = spi_read(0x00);
86 output_high(CSN_SPI);
87  
88 ADC_pressure = (((unsigned int16) MSB_data << 8) + LSB_data ) >> 6; // conversion of 8bit registers to 16bit variable
89  
90 output_low(CSN_SPI);
91 spi_write(0x84);
92 MSB_data = spi_read(0x00);
93 spi_write(0x86); // get LSB for Temperature
94 LSB_data = spi_read(0x00);
95 spi_read(0x00);
96 output_high(CSN_SPI);
97  
98 ADC_temperature = (((unsigned int16) MSB_data << 8) + LSB_data ) >> 6; // conversion of 8bit registers to 16bit variable
99  
100 Pcomp = (a0 + (b1 + c12 * ADC_temperature) * ADC_pressure + b2 * ADC_temperature ); // compute relative compensated pressure
101  
102 return (Pcomp * ((115.0 - 50.0)/1023.0) + 50.0); // return absolute pressure
103 }
104  
105 float MPL_get_temperature()
106 {
107 unsigned int8 LSB_data, MSB_data;
108 unsigned int16 ADC_temperature;
109  
110 output_low(CSN_SPI); //Start temperature and pressure conversion
111 spi_write(0x22);
112 spi_write(0x00);
113 output_high(CSN_SPI);
114  
115 delay_ms(10);
116  
117 output_low(CSN_SPI);
118 spi_write(0x84);
119 MSB_data = spi_read(0x00);
120 spi_write(0x86); // get LSB for Temperature
121 LSB_data = spi_read(0x00);
122 spi_read(0x00);
123 output_high(CSN_SPI);
124  
125 ADC_temperature = (((unsigned int16) MSB_data << 8) + LSB_data ) >> 6; // conversion of 8bit registers to 16bit variable
126  
127 return ( ((float) ADC_temperature - 498.0)/-5.35) + 27.0; // return temperature in deg C
128 }
129