Skip to content
Snippets Groups Projects
Commit 604423d3 authored by Adam Wujek's avatar Adam Wujek :speech_balloon:
Browse files

userspace/tools: rename read_ports to read_hal in wr_mon


-rename since read_hal will read also temperatures
-add static to global variables
-no need to read_servo before show_unadorned_ports

Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
parent 1cd7d786
Branches
Tags
No related merge requests found
...@@ -27,11 +27,12 @@ static struct hal_port_state hal_ports_local_copy[HAL_MAX_PORTS]; ...@@ -27,11 +27,12 @@ static struct hal_port_state hal_ports_local_copy[HAL_MAX_PORTS];
static int hal_nports_local; static int hal_nports_local;
static struct wrs_shm_head *ppsi_head; static struct wrs_shm_head *ppsi_head;
static struct pp_globals *ppg; static struct pp_globals *ppg;
struct wr_servo_state_t *ppsi_servo; static struct wr_servo_state_t *ppsi_servo;
struct wr_servo_state_t ppsi_servo_local; /* local copy of servo status */ static struct wr_servo_state_t ppsi_servo_local; /* local copy of
servo status */
int read_ports(void){ int read_hal(void){
unsigned ii; unsigned ii;
unsigned retries = 0; unsigned retries = 0;
...@@ -401,8 +402,7 @@ int main(int argc, char *argv[]) ...@@ -401,8 +402,7 @@ int main(int argc, char *argv[])
usecolor = 0; usecolor = 0;
break; break;
case 'w': /* for the web interface */ case 'w': /* for the web interface */
read_ports(); read_hal();
read_servo();
show_unadorned_ports(); show_unadorned_ports();
exit(0); exit(0);
default: default:
...@@ -430,7 +430,7 @@ int main(int argc, char *argv[]) ...@@ -430,7 +430,7 @@ int main(int argc, char *argv[])
track_onoff); track_onoff);
} }
} }
read_ports(); read_hal();
read_servo(); read_servo();
show_all(); show_all();
/* If we got broken pipe or anything, exit */ /* If we got broken pipe or anything, exit */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment