diff options
Diffstat (limited to 'menus.c')
-rw-r--r-- | menus.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -223,14 +223,14 @@ static void Read_Keypad(int *button_port_val, int *upper_encoder_val, int *lower static void update_remote_mode () { - int is_remote, is_lockout; - GPIB_check_remote_status (&is_remote, &is_lockout); + int gpib_remote, gpib_lockout; + GPIB_check_remote_status (&gpib_remote, &gpib_lockout); globals.Remote.mode = 0; - if (is_lockout) { + if (gpib_lockout) { globals.Remote.mode += RM_LOCK; } - if (is_remote) { + if (gpib_remote) { globals.Remote.mode += RM_REM; } if (globals.Remote.connections > 0) { |