/************************************************************************************************** Phyplus Microelectronics Limited confidential and proprietary. All rights reserved. IMPORTANT: All rights of this software belong to Phyplus Microelectronics Limited ("Phyplus"). Your use of this Software is limited to those specific rights granted under the terms of the business contract, the confidential agreement, the non-disclosure agreement and any other forms of agreements as a customer or a partner of Phyplus. You may not use this Software unless you agree to abide by the terms of these agreements. You acknowledge that the Software may not be modified, copied, distributed or disclosed unless embedded on a Phyplus Bluetooth Low Energy (BLE) integrated circuit, either as a product or is integrated into your products. Other than for the aforementioned purposes, you may not use, reproduce, copy, prepare derivative works of, modify, distribute, perform, display or sell this Software and/or its documentation for any purposes. YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL PHYPLUS OR ITS SUBSIDIARIES BE LIABLE OR OBLIGATED UNDER CONTRACT, NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS. **************************************************************************************************/ #include "key.h" #include "log.h" #include "OSAL.h" #include "pwrmgr.h" #include "common.h" #include "error.h" key_contex_t key_state; extern uint32 getMcuPrecisionCount(void); static int key_timer_start(uint32 intval_ms) { osal_start_timerEx(key_state.task_id, HAL_KEY_EVENT, intval_ms); return 0; } static void key_idle_handler(uint8 i,IO_Wakeup_Pol_e type) { if(((type == NEGEDGE) && (key_state.key[i].idle_level == HAL_HIGH_IDLE)) || ((type == POSEDGE) && (key_state.key[i].idle_level == HAL_LOW_IDLE))){ hal_pwrmgr_lock(MOD_USR1); key_state.key[i].state = HAL_STATE_KEY_PRESS_DEBOUNCE; key_state.temp[i].in_enable = TRUE; key_timer_start(HAL_KEY_DEBOUNCD); } } static void key_press_debonce_handler(uint8 i,IO_Wakeup_Pol_e type) { if(((type == NEGEDGE) && (key_state.key[i].idle_level == HAL_HIGH_IDLE)) || ((type == POSEDGE) && (key_state.key[i].idle_level == HAL_LOW_IDLE))){ key_timer_start(HAL_KEY_DEBOUNCD); } } static void key_press_handler(uint8 i,IO_Wakeup_Pol_e type) { if(((type == POSEDGE) && (key_state.key[i].idle_level == HAL_HIGH_IDLE)) || ((type == NEGEDGE) && (key_state.key[i].idle_level == HAL_LOW_IDLE))){ hal_pwrmgr_lock(MOD_USR1); key_state.key[i].state = HAL_STATE_KEY_RELEASE_DEBOUNCE; key_timer_start(HAL_KEY_DEBOUNCD); } } static void key_release_debonce_handler(uint8 i,IO_Wakeup_Pol_e type) { if(((type == POSEDGE) && (key_state.key[i].idle_level == HAL_HIGH_IDLE)) || ((type == NEGEDGE) && (key_state.key[i].idle_level == HAL_LOW_IDLE))){ key_timer_start(HAL_KEY_DEBOUNCD); } } static void pin_event_handler(GPIO_Pin_e pin,IO_Wakeup_Pol_e type) { uint8 i; for(i = 0;i < HAL_KEY_NUM;i++){ if(pin == key_state.key[i].pin) break; } if(i < HAL_KEY_NUM){ switch(key_state.key[i].state) { case HAL_STATE_KEY_IDLE: key_idle_handler(i,type); break; case HAL_STATE_KEY_PRESS_DEBOUNCE: key_press_debonce_handler(i,type); break; case HAL_STATE_KEY_PRESS: key_press_handler(i,type); break; case HAL_STATE_KEY_RELEASE_DEBOUNCE: key_release_debonce_handler(i,type); break; default: break; } } } void key_init(void) { uint8 i; for(i = 0; i < HAL_KEY_NUM; ++i){ if(key_state.key[i].idle_level == HAL_LOW_IDLE){ hal_gpio_pull_set(key_state.key[i].pin,PULL_DOWN); } else{ hal_gpio_pull_set(key_state.key[i].pin,WEAK_PULL_UP); } key_state.temp[i].timer_tick = 0; (void)hal_gpioin_register(key_state.key[i].pin, pin_event_handler, pin_event_handler); } hal_pwrmgr_register(MOD_USR1, NULL, NULL); } static void key_press_debonce_timer_handler(uint8 i) { if(((hal_gpio_read(key_state.key[i].pin) == FALSE) && (key_state.key[i].idle_level == HAL_HIGH_IDLE)) || ((hal_gpio_read(key_state.key[i].pin) == TRUE) && (key_state.key[i].idle_level == HAL_LOW_IDLE))) { #ifndef HAL_KEY_SUPPORT_LONG_PRESS hal_pwrmgr_unlock(MOD_USR1); #endif key_state.key[i].state = HAL_STATE_KEY_PRESS; key_state.temp[i].timer_tick = getMcuPrecisionCount(); if(key_state.key_callbank != NULL) { key_state.key_callbank(i,HAL_KEY_EVT_PRESS); } } else { key_state.key[i].state = HAL_STATE_KEY_IDLE; key_state.temp[i].in_enable = FALSE; } } static void key_release_debonce_timer_handler(uint8 i) { if(key_state.key[i].idle_level == hal_gpio_read(key_state.key[i].pin)) { osal_stop_timerEx(key_state.task_id,HAL_KEY_EVT_LONG_PRESS); uint32_t hold_tick = (getMcuPrecisionCount() - key_state.temp[i].timer_tick)*625; hal_pwrmgr_unlock(MOD_USR1); if(key_state.key_callbank != NULL) { #ifdef HAL_KEY_SUPPORT_LONG_PRESS if(hold_tick >= (HAL_KEY_LONG_PRESS_TIME * 1000))//2s { key_state.key_callbank(i,HAL_KEY_EVT_LONG_RELEASE); key_state.key[i].state = HAL_STATE_KEY_IDLE; } else #endif { key_state.key_callbank(i,HAL_KEY_EVT_RELEASE); key_state.key[i].state = HAL_STATE_KEY_IDLE; } } } else { key_state.key[i].state = HAL_STATE_KEY_PRESS; } } void gpio_key_timer_handler(uint8 i) { switch(key_state.key[i].state) { case HAL_STATE_KEY_PRESS_DEBOUNCE: key_press_debonce_timer_handler(i); break; case HAL_STATE_KEY_RELEASE_DEBOUNCE: key_release_debonce_timer_handler(i); break; default: break; } }