This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

GPIOTE Trigger's problem

HI ALL

I am using SDK15.3.0 to familiarize myself with GPIOTE functions,But I have encountered some problems.

First ,I registered 4 GPIOTE pins on the DK board,and I need 4 GPIOTE pins to trigger at the same time.

But the problem is that when I press one of the GPOTEs and then press another one, it can't be triggered.

Because my power supply is a battery, I have to pay attention to power consumption.So I can't set config.hi_accuracy to true

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
static void btn_init(void)
{
uint8_t BUTTON_NUM = 4;
uint8_t LED_NUM = 3;
uint8_t Button[BUTTON_NUM];
uint8_t LED[LED_NUM];
ret_code_t err_code;
err_code = nrf_drv_gpiote_init();
APP_ERROR_CHECK(err_code);
nrf_drv_gpiote_out_config_t out_config = GPIOTE_CONFIG_OUT_SIMPLE(true);
nrf_drv_gpiote_in_config_t in_config = GPIOTE_CONFIG_IN_SENSE_HITOLO(true);
in_config.pull = NRF_GPIO_PIN_PULLUP; //Start valtage is high
in_config.hi_accuracy = false; //true = pin event; false = port event
in_config.sense = NRF_GPIOTE_POLARITY_HITOLO;
for(uint8_t i = 0 ; i < BUTTON_NUM ; i++)
{
err_code = nrf_drv_gpiote_in_init((13+i),&in_config,input_handler);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Second,The problem of triggering Handler multiple times when I press the button.I don't know how to prevent multiple triggers.

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
void input_handler(nrf_drv_gpiote_pin_t pin,nrf_gpiote_polarity_t action)
{
if(pin == 13)
{
SEGGER_RTT_printf(0, "bsp_event_handler2 -> BSP_EVENT_KEY_1\r\n");
}else if(pin == 14)
{
SEGGER_RTT_printf(0, "bsp_event_handler2 -> BSP_EVENT_KEY_2\r\n");
}else if(pin == 15)
{
SEGGER_RTT_printf(0, "bsp_event_handler2 -> BSP_EVENT_KEY_3\r\n");
}else if(pin == 16)
{
SEGGER_RTT_printf(0, "bsp_event_handler2 -> BSP_EVENT_KEY_4\r\n");
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

This is my first time to ask here, please help me thank you all.

Parents
  • Take a look at the library nRF5_SDK_15.3.0_59ac345\components\libraries\gpiote\app_gpiote.c, which does what you are trying to do. Look inside the function app_gpiote_user_register() and use that as a reference. If you're still stuck, please tell me, and I will take a deeper look at your problem.

    Best regards,

    Simon

  • HI Simon 

    Sorry I responded so late.

    I have solved the problem through bsp_init ().

    Thanku

    Andy

Reply Children
No Data