aboutsummaryrefslogtreecommitdiff
path: root/powerdebug.c
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2011-06-15 15:45:12 +0200
committerDaniel Lezcano <daniel.lezcano@linaro.org>2011-06-15 15:45:12 +0200
commit2e9df76582b49ab87b7a36365d997f061ed262be (patch)
tree3b2c7fdd99428e9876ebce1e8fca816295559b24 /powerdebug.c
parentf66568256cdf1f75efc2defd28283f020f4f0a8e (diff)
add sensors display
Add the sensor display. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'powerdebug.c')
-rw-r--r--powerdebug.c33
1 files changed, 9 insertions, 24 deletions
diff --git a/powerdebug.c b/powerdebug.c
index 641673b..24db8c8 100644
--- a/powerdebug.c
+++ b/powerdebug.c
@@ -174,32 +174,17 @@ int keystroke_callback(bool *enter_hit, bool *findparent_ncurses,
options->selectedwindow = TOTAL_FEATURE_WINS - 1;
}
-#if 0 /* TODO */
- if (options->selectedwindow == REGULATOR) {
-
- if (keystroke == KEY_DOWN) {
- display_next_line();
- *cont = true;
- }
-
- if (keystroke == KEY_UP) {
- display_prev_line();
- *cont = true;
- }
-
+ if (keystroke == KEY_DOWN) {
+ display_next_line(options->selectedwindow);
+ *cont = true;
}
-#endif
- if (options->selectedwindow == CLOCK) {
- if (keystroke == KEY_DOWN) {
- display_next_line(CLOCK);
- *cont = true;
- }
+ if (keystroke == KEY_UP) {
+ display_prev_line(options->selectedwindow);
+ *cont = true;
+ }
- if (keystroke == KEY_UP) {
- display_prev_line(CLOCK);
- *cont = true;
- }
+ if (options->selectedwindow == CLOCK) {
#if 0
/* TODO : fix with a new panel applicable for all subsystems */
@@ -299,7 +284,7 @@ int mainloop(struct powerdebug_options *options)
}
if (options->selectedwindow == SENSOR)
- print_sensor_header();
+ sensor_display();
FD_ZERO(&readfds);
FD_SET(0, &readfds);