Input Interrupt

This sample uses the GPIO input function to detect the GPIO input signal by interrupt.

This sample starts with configuring the GPIO as input and enabling the interrupt function. An interrupt is triggered and the interrupt handler prints information when a GPIO input change is detected.

Requirements

The sample supports the following development kits:

Development Kits

Hardware Platforms

Board Name

RTL87x2G HDK

RTL87x2G EVB

For more requirements, please refer to Quick Start.

Wiring

Connect P4_0 to the external input signal.

Building and Downloading

This sample can be found in the SDK folder:

Project file: samples\peripheral\gpio\input_interrupt\proj\rtl87x2g\mdk

Project file: samples\peripheral\gpio\input_interrupt\proj\rtl87x2g\gcc

To build and run the sample, follow the steps listed below:

  1. Open sample project file.

  2. To build the target, follow the steps listed on the Generating App Image in Quick Start.

  3. After a successful compilation, the app bin app_MP_xxx.bin will be generated in the directory mdk\bin or gcc\bin.

  4. To download app bin into EVB board, follow the steps listed on the MP Tool Download in Quick Start.

  5. Press reset button on EVB board and it will start running.

Experimental Verification

  1. After resetting the EVB, observe the log messages as shown in the Debug Analyzer.

    Start input interrupt test!
    
  2. The external input signal is controlled to change from high to low, and P4_0 detects the falling edge signal to trigger an interrupt. The interrupt handler function GPIO_Input_Handler prints the following information.

    enter GPIO_Pin_Handler success
    

Code Overview

This chapter will be introduced according to the following several parts:

  1. Source code directory.

  2. Peripheral initialization will be introduced in chapter Initialization.

  3. Functional implementation after initialization will be introduced in chapter Functional implementation.

Source Code Directory

  1. Project directory: sdk\samples\peripheral\gpio\input_interrupt\proj

  2. Source code directory: sdk\samples\peripheral\gpio\input_interrupt\src

Source files are currently categorized into several groups as below.

└── Project: output_toggle
    └── secure_only_app
        └── Device                   includes startup code
            ├── startup_rtl.c
            └── system_rtl.c
        ├── CMSIS                    includes CMSIS header files
        ├── CMSE Library             Non-secure callable lib
        ├── lib                      includes all binary symbol files that user application is built on
            └── rtl87x2g_io.lib
        ├── peripheral               includes all peripheral drivers and module code used by the application
            ├── rtl_gpio.c
            ├── rtl_nvic.c
            ├── rtl_pinmux.c
            └── rtl_rcc.c
        └── APP                      includes the ble_peripheral user application implementation
            ├── io_gpio.c
            └── main_ns.c

Initialization

The initialization process includes board_gpio_init and driver_gpio_init .


board_gpio_init contains the PAD and PINMUX settings:

  1. Configure PAD: Set the pin as PINMUX mode, PowerOn, internal Pull-Up.

  2. Configure PINMUX: Multiplex the pin to GPIO function.


driver_gpio_init contains the initialization of GPIO peripheral.

  1. Enable PCC Clock.

  2. Set GPIO_Mode to GPIO input mode.

  3. Enable GPIO Interrupt mode.

  4. Set GPIO interrupt trigger mode GPIO_ITTrigger to edge trigger.

  5. Set GPIO interrupt polarity GPIO_ITPolarity to falling edge trigger.

  6. Enable GPIO Debounce.

    1. Set GPIO debounce clock Source, clock division and debounce count limit.

  7. NVIC initialize: determine priority of interrupt and enable GPIO_PIN_INPUT_IRQN channel.

  8. Mask GPIO interrupt, enable GPIO interrupt, clear GPIO interrupt flag, unmask GPIO interrupt.

RCC_PeriphClockCmd(APBPeriph_GPIOB, APBPeriph_GPIOB_CLOCK, ENABLE);
...
GPIO_InitStruct.GPIO_Mode       = GPIO_DIR_IN;
GPIO_InitStruct.GPIO_ITCmd      = ENABLE;
GPIO_InitStruct.GPIO_ITTrigger  = GPIO_INT_Trigger_EDGE;
GPIO_InitStruct.GPIO_ITPolarity = GPIO_INT_POLARITY_ACTIVE_LOW;

GPIO_InitStruct.GPIO_ITDebounce        = GPIO_INT_DEBOUNCE_ENABLE;
GPIO_InitStruct.GPIO_DebounceClkSource = GPIO_DEBOUNCE_32K;
GPIO_InitStruct.GPIO_DebounceClkDiv    = GPIO_DEBOUNCE_DIVIDER_1;
GPIO_InitStruct.GPIO_DebounceCntLimit  = 32 - 1;
...
NVIC_Init(&NVIC_InitStruct);

GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, ENABLE);
GPIO_INTConfig(GPIO_PORT, GPIO_PIN, ENABLE);
GPIO_ClearINTPendingBit(GPIO_PORT, GPIO_PIN);
GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, DISABLE);

Functional Implementation

When connecting P4_0 to GND (a falling edge on P4_0), detecting a falling edge of P4_0 triggers a GPIO interrupt. The interrupt handler function GPIO_Pin_Handler prints interrupt information.

In the interrupt handler, disabling and masking the corresponding GPIO interrupt should be executed first, and clearing the interrupt flag, unmasking, and enabling the GPIO interrupt should be executed last.

/* Mask and disable interrupt */
GPIO_INTConfig(GPIO_PORT, GPIO_PIN, DISABLE);
GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, ENABLE);

DBG_DIRECT("enter GPIO_Pin_Handler success");

/* Clear int flag, unmask and enable interrupt */
GPIO_ClearINTPendingBit(GPIO_PORT, GPIO_PIN);
GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, DISABLE);
GPIO_INTConfig(GPIO_PORT, GPIO_PIN, ENABLE);

Troubleshooting

GPIO False Trigger Interrupt

GPIO edge-type interrupts will be self-triggered when enabling the GPIO interrupt in the following four modes:

  • PAD input = high, rising edge triggered interrupt.

  • PAD input = high, double edge triggered interrupt.

  • PAD input = low, falling edge triggered interrupt.

  • PAD input = low, double edge triggered interrupt.

The below flow can be used to enable edge interrupt in these cases to avoid self-triggered interrupt:

  1. Mask GPIO interrupt: GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, ENABLE).

  2. Enable edge interrupt: GPIO_INTConfig(GPIO_PORT, GPIO_PIN, ENABLE).

  3. Clear GPIO interrupt state: GPIO_ClearPendingBit(GPIO_PORT, GPIO_PIN).

  4. Unmask GPIO interrupt: GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, DISABLE).

The following flow can modify the GPIO interrupt configurations to avoid self-triggered interrupt:

  1. Mask GPIO interrupt: GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, ENABLE).

  2. Modify GPIO interrupt configurations (change interrupt trigger edge and polarity): GPIO_SetITTrigger(GPIO_PORT, GPIO_PIN, GPIO_TriggerMode) GPIO_SetITPolarity(GPIO_PORT, GPIO_PIN, GPIO_ITPolarity)....

  3. Clear GPIO interrupt state: GPIO_ClearPendingBit(GPIO_PORT, GPIO_PIN).

  4. Unmask GPIO interrupt: GPIO_MaskINTConfig(GPIO_PORT, GPIO_PIN, DISABLE).