Rev 2782 Rev 2788
1 /**** Automatic weather station 01A ****/ 1 /**** Automatic weather station 01A ****/
2 #define VERSION "0.1" 2 #define VERSION "0.1"
3 #define ID "$Id: irmrak4.c 2177 2011-09-05 18:56:16Z kaklik $" 3 #define ID "$Id: irmrak4.c 2177 2011-09-05 18:56:16Z kaklik $"
4 #include "main.h" 4 #include "main.h"
5 #include <string.h> 5 #include <string.h>
6   6  
7 #CASE // Case sensitive compiler 7 #CASE // Case sensitive compiler
8   8  
9 #define SEND_DELAY 50 // Time between two characters on RS232 9 #define SEND_DELAY 50 // Time between two characters on RS232
10   10  
11 char VER[4]=VERSION; // Buffer for concatenate of a version string 11 char VER[4]=VERSION; // Buffer for concatenate of a version string
12   12  
13 #define ONE_WIRE_PIN PIN_C7 // DS18B20 sensor connection 13 #define ONE_WIRE_PIN PIN_C7 // DS18B20 sensor connection
14 #include "..\ds1820.c" 14 #include "..\ds1820.c"
15   15  
16 #define sht_data_pin PIN_D0 // SHT11 sensor connection 16 #define sht_data_pin PIN_D0 // SHT11 sensor connection
17 #define sht_clk_pin PIN_D1 17 #define sht_clk_pin PIN_D1
18 #include "..\SHT.c" 18 #include "..\SHT.c"
19   19  
20 #define CSN_SPI PIN_C2 // preassure sensor connection 20 #define CSN_SPI PIN_C2 // preassure sensor connection
21 #include "..\MPL115A1.c" 21 #include "..\MPL115A1.c"
22   22  
23 unsigned int16 timer0_overflow_count=0; 23 unsigned int16 timer0_overflow_count=0;
24 float anemo=0; 24 float anemo=0;
25   25  
26   26  
27 #int_TIMER1 27 #int_TIMER1
28 void TIMER1_isr(void) 28 void TIMER1_isr(void)
29 { 29 {
30 output_toggle(PIN_D1); 30 output_toggle(PIN_D1);
31 anemo = ((timer0_overflow_count * 0xFF) + get_timer0())/(32768.0/0xFFFF); 31 anemo = ((timer0_overflow_count * 0xFF) + get_timer0())/(32768.0/0xFFFF);
-   32 timer0_overflow_count=0;
-   33 set_timer0(0);
32 } 34 }
33   35  
34 #int_TIMER0 36 #int_TIMER0
35 void TIMER0_isr(void) 37 void TIMER0_isr(void)
36 { 38 {
37 timer0_overflow_count++; 39 timer0_overflow_count++;
38 } 40 }
39   41  
40   42  
41   43  
42 void welcome(void) // Welcome message 44 void welcome(void) // Welcome message
43 { 45 {
44 char REV[50]=ID; // Buffer for concatenate of a version string 46 char REV[50]=ID; // Buffer for concatenate of a version string
45   47  
46 if (REV[strlen(REV)-1]=='$') REV[strlen(REV)-1]=0; 48 if (REV[strlen(REV)-1]=='$') REV[strlen(REV)-1]=0;
47 printf("\r\n\r\n# AWS01A %s (C) 2013 www.mlab.cz \r\n",VER); // Welcome message 49 printf("\r\n\r\n# AWS01A %s (C) 2013 www.mlab.cz \r\n",VER); // Welcome message
48 printf("#%s\r\n",&REV[4]); 50 printf("#%s\r\n",&REV[4]);
49 // printf("#\r\n"); 51 // printf("#\r\n");
50 // printf("# commands: h, c, o, l, x, i, r, a, s, u\r\n"); 52 // printf("# commands: h, c, o, l, x, i, r, a, s, u\r\n");
51 // printf("# h_eat, c_old, o_pen, l_ock, x_open, "); 53 // printf("# h_eat, c_old, o_pen, l_ock, x_open, ");
52 // printf("i_nfo, r_epeat, a_uto, s_single, u_pdate\r\n"); 54 // printf("i_nfo, r_epeat, a_uto, s_single, u_pdate\r\n");
53 // printf("#\r\n"); 55 // printf("#\r\n");
54 printf("# ver seq temp[K] hum_temp[K] hum[%%] "); 56 printf("# ver seq temp[K] hum_temp[K] hum[%%] ");
55 printf("bar_temp[K] pressure[hPa] check\r\n\r\n"); 57 printf("bar_temp[K] pressure[hPa] check\r\n\r\n");
56   58  
57 //---WDT 59 //---WDT
58 restart_wdt(); 60 restart_wdt();
59 } 61 }
60   62  
61 void main() 63 void main()
62 { 64 {
63 unsigned int16 seq=0; 65 unsigned int16 seq=0;
64   66  
65 setup_adc_ports(NO_ANALOGS|VSS_VDD); 67 setup_adc_ports(NO_ANALOGS|VSS_VDD);
66 setup_adc(ADC_CLOCK_DIV_2); 68 setup_adc(ADC_CLOCK_DIV_2);
67 setup_timer_0(RTCC_EXT_L_TO_H|RTCC_DIV_1); 69 setup_timer_0(RTCC_EXT_L_TO_H|RTCC_DIV_1);
68 setup_timer_1(T1_EXTERNAL|T1_DIV_BY_1|T1_CLK_OUT); 70 setup_timer_1(T1_EXTERNAL|T1_DIV_BY_1|T1_CLK_OUT);
69 setup_timer_2(T2_DISABLED,0,1); 71 setup_timer_2(T2_DISABLED,0,1);
70 setup_ccp1(CCP_OFF); 72 setup_ccp1(CCP_OFF);
71 setup_comparator(NC_NC_NC_NC); // This device COMP currently not supported by the PICWizard 73 setup_comparator(NC_NC_NC_NC); // This device COMP currently not supported by the PICWizard
72 setup_oscillator(OSC_8MHZ); 74 setup_oscillator(OSC_8MHZ);
73 setup_wdt(WDT_1152MS|WDT_DIV_16); 75 setup_wdt(WDT_1152MS|WDT_DIV_16);
74 setup_spi(SPI_MASTER | SPI_MODE_0 | SPI_CLK_DIV_64); 76 setup_spi(SPI_MASTER | SPI_MODE_0 | SPI_CLK_DIV_64);
75 output_high(CSN_SPI); 77 output_high(CSN_SPI);
76 enable_interrupts(INT_TIMER1); 78 enable_interrupts(INT_TIMER1);
77 enable_interrupts(INT_TIMER0); 79 enable_interrupts(INT_TIMER0);
78 enable_interrupts(GLOBAL); 80 enable_interrupts(GLOBAL);
79   81  
80   82  
81 delay_ms(100); 83 delay_ms(100);
82   84  
83 welcome(); 85 welcome();
84   86  
85 sht_init(); 87 sht_init();
86 MPL_init(); // get correction coefficients from the sensor 88 MPL_init(); // get correction coefficients from the sensor
87   89  
88 while (TRUE) 90 while (TRUE)
89 { 91 {
90 char output[8]; // Output buffer 92 char output[8]; // Output buffer
91 int8 j; // String pointer 93 int8 j; // String pointer
92 int8 check=0; // Checksum is calculated between '$' and '*' 94 int8 check=0; // Checksum is calculated between '$' and '*'
93 float SHT_temp,SHT_hum; 95 float SHT_temp,SHT_hum;
94 float local_temp; 96 float local_temp;
95 float barometer_temperature, barometer_pressure; 97 float barometer_temperature, barometer_pressure;
96   98  
97 delay_ms(100); 99 delay_ms(100);
98 { // printf 100 { // printf
99   101  
-   102 // local_temp = ds1820_read()+273.15;
100 sht_rd(SHT_temp,SHT_hum); 103 sht_rd(SHT_temp,SHT_hum);
101 local_temp = ds1820_read()+273.15; -  
102 SHT_temp += 273.15; 104 SHT_temp += 273.15;
103 barometer_temperature = MPL_get_temperature() + 273.15; 105 // barometer_temperature = MPL_get_temperature() + 273.15;
104 barometer_pressure = MPL_get_pressure() * 10.0; // conversion to hectopascals 106 // barometer_pressure = MPL_get_pressure() * 10.0; // conversion to hectopascals
105 107
106 delay_us(SEND_DELAY); 108 delay_us(SEND_DELAY);
107 putc('$'); 109 putc('$');
108 delay_us(SEND_DELAY); 110 delay_us(SEND_DELAY);
109 sprintf(output,"AWS%s \0",VER); 111 sprintf(output,"AWS%s \0",VER);
110 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 112 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
111 sprintf(output,"%Lu \0", seq); 113 sprintf(output,"%Lu \0", seq);
112 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 114 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
113 sprintf(output,"%f \0", local_temp ); 115 sprintf(output,"%f \0", local_temp );
114 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 116 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
115 sprintf(output,"%f \0", SHT_temp); 117 sprintf(output,"%f \0", SHT_temp);
116 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 118 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
117 sprintf(output,"%3.1f \0", SHT_hum); 119 sprintf(output,"%3.1f \0", SHT_hum);
118 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 120 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
119 sprintf(output,"%f \0", barometer_temperature); 121 sprintf(output,"%f \0", barometer_temperature);
120 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 122 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
121 sprintf(output,"%5.1f \0", barometer_pressure); 123 sprintf(output,"%5.1f \0", barometer_pressure);
122 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 124 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
123 sprintf(output,"%3.1f \0", anemo); 125 sprintf(output,"%3.1f \0", anemo);
124 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; } 126 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j]); check^=output[j++]; }
125 sprintf(output,"*%X\r\n\0", check); 127 sprintf(output,"*%X\r\n\0", check);
126 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j++]); } 128 j=0; while(output[j]!=0) { delay_us(SEND_DELAY); putc(output[j++]); }
127 delay_us(SEND_DELAY); 129 delay_us(SEND_DELAY);
128 } 130 }
129 131
130 //---WDT 132 //---WDT
131 restart_wdt(); 133 restart_wdt();
132 seq++; // Increment the number of measurement 134 seq++; // Increment the number of measurement
133 } 135 }
134 } 136 }
135   137  
136 //#include "dbloader.c" // Space reservation for the BootLoader 138 //#include "dbloader.c" // Space reservation for the BootLoader