2023-09-09 08:03:56 +01:00
|
|
|
/* Copyright 2023 Dual Tachyon
|
|
|
|
* https://github.com/DualTachyon
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef UI_MAIN_H
|
|
|
|
#define UI_MAIN_H
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
enum center_line_e {
|
2023-10-04 21:18:02 +01:00
|
|
|
CENTER_LINE_NONE = 0,
|
|
|
|
CENTER_LINE_IN_USE,
|
|
|
|
CENTER_LINE_AUDIO_BAR,
|
|
|
|
CENTER_LINE_RSSI,
|
|
|
|
CENTER_LINE_AM_FIX_DATA,
|
|
|
|
CENTER_LINE_DTMF_DEC,
|
2023-10-28 08:46:27 +01:00
|
|
|
CENTER_LINE_CHARGE_DATA,
|
|
|
|
CENTER_LINE_MDC1200
|
2023-10-04 21:18:02 +01:00
|
|
|
};
|
2023-10-08 20:23:37 +01:00
|
|
|
typedef enum center_line_e center_line_t;
|
2023-10-04 21:18:02 +01:00
|
|
|
|
2023-10-28 08:46:27 +01:00
|
|
|
extern center_line_t g_center_line;
|
2023-10-04 21:18:02 +01:00
|
|
|
|
2023-10-18 11:31:30 +01:00
|
|
|
#ifdef ENABLE_TX_AUDIO_BAR
|
2023-10-11 23:07:58 +01:00
|
|
|
bool UI_DisplayAudioBar(const bool now);
|
2023-10-08 12:39:30 +01:00
|
|
|
#endif
|
2023-11-05 10:48:37 +00:00
|
|
|
void UI_update_rssi(const int rssi, const unsigned int glitch, const unsigned int noise, const unsigned int vfo);
|
2023-11-18 18:44:10 +00:00
|
|
|
#ifdef ENABLE_PANADAPTER
|
|
|
|
void UI_DisplayMain_pan(const bool now);
|
|
|
|
#endif
|
2023-09-09 08:03:56 +01:00
|
|
|
void UI_DisplayMain(void);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|