diff options
Diffstat (limited to 'utils/nwztools/plattools/test_adc.c')
-rw-r--r-- | utils/nwztools/plattools/test_adc.c | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/utils/nwztools/plattools/test_adc.c b/utils/nwztools/plattools/test_adc.c new file mode 100644 index 0000000000..52eafd042d --- /dev/null +++ b/utils/nwztools/plattools/test_adc.c | |||
@@ -0,0 +1,64 @@ | |||
1 | /*************************************************************************** | ||
2 | * __________ __ ___. | ||
3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | * \/ \/ \/ \/ \/ | ||
8 | * $Id$ | ||
9 | * | ||
10 | * Copyright (C) 2016 Amaury Pouly | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or | ||
13 | * modify it under the terms of the GNU General Public License | ||
14 | * as published by the Free Software Foundation; either version 2 | ||
15 | * of the License, or (at your option) any later version. | ||
16 | * | ||
17 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
18 | * KIND, either express or implied. | ||
19 | * | ||
20 | ****************************************************************************/ | ||
21 | #include "nwz_lib.h" | ||
22 | |||
23 | int main(int argc, char **argv) | ||
24 | { | ||
25 | /* clear screen and display welcome message */ | ||
26 | nwz_lcdmsg(true, 0, 0, "test_adc"); | ||
27 | nwz_lcdmsg(false, 0, 2, "PWR OFF: quit"); | ||
28 | /* open input device */ | ||
29 | int input_fd = nwz_key_open(); | ||
30 | if(input_fd < 0) | ||
31 | { | ||
32 | nwz_lcdmsg(false, 3, 7, "Cannot open input device"); | ||
33 | sleep(2); | ||
34 | return 1; | ||
35 | } | ||
36 | /* open adc device */ | ||
37 | int adc_fd = nwz_adc_open(); | ||
38 | if(adc_fd < 0) | ||
39 | { | ||
40 | nwz_lcdmsg(false, 3, 4, "Cannot open adc device"); | ||
41 | sleep(2); | ||
42 | return 1; | ||
43 | } | ||
44 | /* display input state in a loop */ | ||
45 | while(1) | ||
46 | { | ||
47 | /* print channels */ | ||
48 | for(int i = NWZ_ADC_MIN_CHAN; i <= NWZ_ADC_MAX_CHAN; i++) | ||
49 | nwz_lcdmsgf(false, 1, 4 + i, "%s: %d ", nwz_adc_get_name(i), | ||
50 | nwz_adc_get_val(adc_fd, i)); | ||
51 | /* wait for event (10ms) */ | ||
52 | int ret = nwz_key_wait_event(input_fd, 10000); | ||
53 | if(ret != 1) | ||
54 | continue; | ||
55 | struct input_event evt; | ||
56 | if(nwz_key_read_event(input_fd, &evt) != 1) | ||
57 | continue; | ||
58 | if(nwz_key_event_get_keycode(&evt) == NWZ_KEY_OPTION && !nwz_key_event_is_press(&evt)) | ||
59 | break; | ||
60 | } | ||
61 | /* finish nicely */ | ||
62 | return 0; | ||
63 | } | ||
64 | |||