mirror of
https://github.com/opentx/opentx.git
synced 2025-07-15 20:35:17 +03:00
Fixes #3456
This commit is contained in:
parent
0e5df7235d
commit
afce17443f
2 changed files with 4 additions and 4 deletions
|
@ -521,9 +521,9 @@ enum TelemetryScreenType {
|
||||||
#define FAILSAFE_CHANNEL_HOLD 2000
|
#define FAILSAFE_CHANNEL_HOLD 2000
|
||||||
#define FAILSAFE_CHANNEL_NOPULSE 2001
|
#define FAILSAFE_CHANNEL_NOPULSE 2001
|
||||||
|
|
||||||
#define LEN_SCRIPT_FILENAME 8
|
#define LEN_SCRIPT_FILENAME 6
|
||||||
#define LEN_SCRIPT_NAME 8
|
#define LEN_SCRIPT_NAME 6
|
||||||
#define MAX_SCRIPT_INPUTS 8
|
#define MAX_SCRIPT_INPUTS 6
|
||||||
#define MAX_SCRIPT_OUTPUTS 6
|
#define MAX_SCRIPT_OUTPUTS 6
|
||||||
|
|
||||||
enum PotsWarnMode {
|
enum PotsWarnMode {
|
||||||
|
|
|
@ -494,7 +494,7 @@ PACK(struct SwashRingData {
|
||||||
PACK(struct ScriptData {
|
PACK(struct ScriptData {
|
||||||
char file[LEN_SCRIPT_FILENAME];
|
char file[LEN_SCRIPT_FILENAME];
|
||||||
char name[LEN_SCRIPT_NAME];
|
char name[LEN_SCRIPT_NAME];
|
||||||
int8_t inputs[MAX_SCRIPT_INPUTS];
|
int16_t inputs[MAX_SCRIPT_INPUTS];
|
||||||
});
|
});
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue