/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2013 by Amaury Pouly * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #include "button-lradc-imx233.h" #include "stdlib.h" #include "lradc-imx233.h" #ifndef IMX233_BUTTON_LRADC_CHANNEL #error You must define IMX233_BUTTON_LRADC_CHANNEL to use button-lradc #endif /* physical channel */ #define CHAN IMX233_BUTTON_LRADC_CHANNEL /* number of irq per second */ #ifdef IMX233_BUTTON_LRADC_RATE # define RATE IMX233_BUTTON_LRADC_RATE #else # define RATE HZ #endif /* number of samples per irq */ #ifdef IMX233_BUTTON_LRADC_SAMPLES # define SAMPLES IMX233_BUTTON_LRADC_SAMPLES #else # define SAMPLES 10 #endif /* delay's delay */ #define DELAY (LRADC_DELAY_FREQ / RATE / SAMPLES) static int button_delay; static int button_chan; static int button_val[2]; static int button_idx; static int button_mask; static int table_size; static int button_find(int val) { // shortcuts struct imx233_button_lradc_mapping_t *table = imx233_button_lradc_mapping; /* FIXME use a dichotomy */ int i = 0; while(i < table_size && val >= table[i].adc_val) i++; // extreme cases int btn = 0; // if i=n then choose i-1 and otherwise choose best between i-1 and i if(i == 0) btn = table[0].btn; else if(i == table_size) btn = table[i - 1].btn; // choose best between i-1 and i (note that table[i-1]<=val