SP8EBC-ParaTNC/src/rte_wx.c

74 wiersze
2.3 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>
#include <wx_handler.h>
#include "main.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;
float rte_wx_pressure_history[PRESSURE_AVERAGE_LN];
uint8_t rte_wx_pressure_it;
2019-01-26 17:02:19 +00:00
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_winddirection_last = 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
2020-06-24 16:45:06 +00:00
int8_t rte_wx_humidity = 0, rte_wx_humidity_valid = 0;
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
dallas_qf_t rte_wx_current_dallas_qf, rte_wx_error_dallas_qf = DALLAS_QF_UNKNOWN;
dallas_average_t rte_wx_dallas_average;
ms5611_qf_t rte_wx_ms5611_qf = MS5611_QF_UNKNOWN;
bme280_qf_t rte_wx_bme280_qf = BME280_QF_UKNOWN;
analog_wind_qf_t rte_wx_wind_qf = AN_WIND_QF_UNKNOWN;
2019-01-26 17:02:19 +00:00
#ifdef _UMB_MASTER
umb_frame_t rte_wx_umb;
2020-03-07 18:13:24 +00:00
umb_context_t rte_wx_umb_context;
2020-03-20 21:53:24 +00:00
uint8_t rte_wx_umb_last_status = 0;
int16_t rte_wx_umb_channel_values[UMB_CHANNELS_STORAGE_CAPAC][2]; // first dimension stores the channel number and the second one
2020-04-10 20:54:30 +00:00
// stores the value in 0.1 incremenets
#endif
2020-04-10 20:54:30 +00:00
umb_qf_t rte_wx_umb_qf = UMB_QF_UNITIALIZED;
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;
}
rte_wx_pressure_it = 0;
for (i = 0; i < 4; i++) {
rte_wx_pressure_history[i] = 0.0f;
}
}
void rte_wx_update_last_measuremenet_timers(uint16_t parameter_type) {
if (parameter_type == RTE_WX_MEASUREMENT_WIND)
wx_last_good_wind_time = master_time;
else if (parameter_type == RTE_WX_MEASUREMENT_TEMPERATURE)
wx_last_good_temperature_time = master_time;
else;
}