2020-10-30 19:13:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2020 by Federico Amedeo Izzo IU2NUO, *
|
|
|
|
* Niccolò Izzo IU2KIN, *
|
2020-11-21 09:46:39 +00:00
|
|
|
* Frederik Saraci IU2NRO, *
|
2020-10-30 19:13:52 +00:00
|
|
|
* Silvano Seva IU2KWO *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/> *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef STATE_H
|
|
|
|
#define STATE_H
|
|
|
|
|
2020-10-31 13:40:02 +00:00
|
|
|
#include <datatypes.h>
|
2020-11-21 09:46:39 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <rtc.h>
|
2020-11-26 14:25:26 +00:00
|
|
|
#include <cps.h>
|
2020-10-31 13:40:02 +00:00
|
|
|
|
2020-10-30 19:13:52 +00:00
|
|
|
/**
|
|
|
|
* Part of this structure has been commented because the corresponding
|
|
|
|
* functionality is not yet implemented.
|
|
|
|
* Uncomment once the related feature is ready
|
|
|
|
*/
|
2020-11-26 14:25:26 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
bool radioStateUpdated;
|
2020-11-21 09:46:39 +00:00
|
|
|
curTime_t time;
|
|
|
|
float v_bat;
|
2020-11-26 14:25:26 +00:00
|
|
|
|
2020-12-06 19:31:06 +00:00
|
|
|
uint8_t ui_screen;
|
2020-12-07 17:43:54 +00:00
|
|
|
uint8_t tuner_mode;
|
|
|
|
uint8_t radio_mode;
|
2020-10-30 19:13:52 +00:00
|
|
|
|
|
|
|
//time_t rx_status_tv;
|
|
|
|
//bool rx_status;
|
|
|
|
|
|
|
|
//time_t tx_status_tv;
|
|
|
|
//bool tx_status;
|
|
|
|
|
2020-11-26 14:25:26 +00:00
|
|
|
bool channelInfoUpdated;
|
|
|
|
channel_t channel;
|
|
|
|
uint8_t rtxStatus;
|
|
|
|
uint8_t sqlLevel;
|
|
|
|
uint8_t voxLevel;
|
|
|
|
}
|
|
|
|
state_t;
|
2020-10-30 19:13:52 +00:00
|
|
|
|
2020-12-07 17:43:54 +00:00
|
|
|
enum TunerMode
|
|
|
|
{
|
|
|
|
VFO = 0,
|
|
|
|
CH,
|
|
|
|
SCAN,
|
|
|
|
CHSCAN
|
|
|
|
};
|
|
|
|
|
|
|
|
enum RadioMode
|
|
|
|
{
|
|
|
|
MODE_FM = 0,
|
|
|
|
MODE_NFM,
|
|
|
|
MODE_DMR,
|
|
|
|
};
|
|
|
|
|
2020-11-26 14:25:26 +00:00
|
|
|
enum RtxStatus
|
|
|
|
{
|
|
|
|
RTX_OFF = 0,
|
|
|
|
RTX_RX,
|
|
|
|
RTX_TX
|
|
|
|
};
|
2020-11-15 21:23:32 +00:00
|
|
|
|
2020-11-26 14:25:26 +00:00
|
|
|
extern state_t state;
|
2020-10-30 19:13:52 +00:00
|
|
|
|
|
|
|
/**
|
2020-11-21 09:46:39 +00:00
|
|
|
* This function initializes the Radio state, acquiring the information
|
|
|
|
* needed to populate it from device drivers.
|
2020-10-30 19:13:52 +00:00
|
|
|
*/
|
2020-11-21 09:46:39 +00:00
|
|
|
void state_init();
|
2020-10-30 19:13:52 +00:00
|
|
|
|
|
|
|
#endif /* STATE_H */
|