32 lines
678 B
C
32 lines
678 B
C
#ifndef __APP_SCREEN_SETTING_TRANS_H
|
||
#define __APP_SCREEN_SETTING_TRANS_H
|
||
|
||
#include "apps_gather.h"
|
||
|
||
#define TEXT_HART 0
|
||
#define TEXT_BLE 1
|
||
#define TEXT_MODBUS 2
|
||
#define TEXT_MODBUS_CONFIG 3
|
||
|
||
void communication_switch(void);
|
||
|
||
void set_communication_text(uint8_t con);
|
||
|
||
void config_items_set_color(uint8_t cur, uint32_t color);
|
||
|
||
void config_items_check(uint8_t cur, uint8_t cur_prv);
|
||
|
||
void set_communication_modify(uint8_t con, int8_t step);
|
||
|
||
void key_functions_modbus(void);
|
||
|
||
//切换至modbus配置界面后对显示内容进行调整:语言、默认值
|
||
void scr_modbus_config_recover(void);
|
||
|
||
extern uint8_t com_switch_cursor;
|
||
extern uint8_t com_switch_cursor_prv;
|
||
|
||
|
||
|
||
#endif
|