SP8EBC-ParaTNC/src/rte_wx.c

42 wiersze
1.2 KiB
C
Czysty Zwykły widok Historia

2019-01-26 17:02:19 +00:00
/*
* rte_wx.c
*
* Created on: 26.01.2019
* Author: mateusz
*/
2019-01-26 22:18:25 +00:00
#include <rte_wx.h>
2019-01-26 17:02:19 +00:00
float rte_wx_temperature_dallas = 0.0f, rte_wx_temperature_dallas_valid = 0.0f;
float rte_wx_temperature_dalls_slew_rate = 0.0f;
float rte_wx_temperature_average_dallas_valid = 0.0f;
float rte_wx_temperature_min_dallas_valid = 0.0f, rte_wx_temperature_max_dallas_valid = 0.0f;
float rte_wx_temperature_ms = 0.0f, rte_wx_temperature_ms_valid = 0.0f;
2019-01-26 17:02:19 +00:00
float rte_wx_pressure = 0.0f, rte_wx_pressure_valid = 0.0f;
2019-12-27 21:07:24 +00:00
uint16_t rte_wx_windspeed_pulses = 0;
uint16_t rte_wx_windspeed[WIND_AVERAGE_LEN];
uint8_t rte_wx_windspeed_it = 0;
uint16_t rte_wx_winddirection[WIND_AVERAGE_LEN];
uint8_t rte_wx_winddirection_it = 0;
uint16_t rte_wx_average_windspeed = 0;
uint16_t rte_wx_max_windspeed = 0;
int16_t rte_wx_average_winddirection = 0;
2019-12-27 21:07:24 +00:00
uint8_t rte_wx_tx20_excessive_slew_rate = 0;
2019-01-26 17:02:19 +00:00
dht22Values rte_wx_dht, rte_wx_dht_valid; // quality factor inside this structure
DallasQF rte_wx_current_dallas_qf, rte_wx_error_dallas_qf = DALLAS_QF_UNKNOWN;
DallasAverage_t rte_wx_dallas_average;
2019-01-26 17:02:19 +00:00
ms5611_qf_t rte_wx_ms5611_qf;
void rte_wx_init(void) {
int i = 0;
2019-01-26 17:02:19 +00:00
for (; i < WIND_AVERAGE_LEN; i++) {
rte_wx_windspeed[i] = 0;
rte_wx_winddirection[i] = 0;
}
}