Output Toggle
This sample demonstrates how to use the GPIO output function by toggling an LED.
This sample starts with configuring the GPIO as output to drive the LED. The sample then loops while toggling the state of the LED every one-second.
Requirements
The sample supports the following development kits:
Hardware Platforms |
Board Name |
---|---|
RTL87x2G HDK |
RTL87x2G EVB |
For more requirements, please refer to Quick Start.
Wiring
Connect P1_0 to LED0. The LED driver circuit is shown below.

LED Driver Circuit Diagram
Building and Downloading
This sample can be found in the SDK folder:
Project file: samples\peripheral\gpio\output_toggle\proj\rtl87x2g\mdk
Project file: samples\peripheral\gpio\output_toggle\proj\rtl87x2g\gcc
To build and run the sample, follow the steps listed below:
Open sample project file.
To build the target, follow the steps listed on the Generating App Image in Quick Start.
After a successful compilation, the app bin
app_MP_xxx.bin
will be generated in the directorymdk\bin
orgcc\bin
.To download app bin into EVB board, follow the steps listed on the MP Tool Download in Quick Start.
Press reset button on EVB board and it will start running.
Experimental Verification
After resetting the EVB to observe the log messages as shown in the Debug Analyzer.
Start gpio toggle test!
Observe that the LED are Blinking.
Code Overview
This chapter will be introduced according to the following several parts:
Peripheral initialization will be introduced in chapter Initialization.
Functional implementation after initialization will be introduced in chapter Functional implementation.
Source Code Directory
Project directory:
sdk\samples\peripheral\gpio\output_toggle\proj
Source code directory:
sdk\samples\peripheral\gpio\output_toggle\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_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:
Configure PAD: Set the pin as PINMUX mode, PowerOn, internal Pull-None.
Configure PINMUX: Multiplex the pin to GPIO function.
driver_gpio_init
contains the initialization of the GPIO peripheral.
Enable PCC Clock.
Set
GPIO_Mode
to gpio output mode.
RCC_PeriphClockCmd(APBPERIPH_GPIO, APBPERIPH_GPIO_CLOCK, ENABLE);
...
GPIO_InitStruct.GPIO_Mode = GPIO_DIR_OUT;
Functional Implementation
After initialization, the function GPIO_WriteBit()
is executed within the while loop to control the GPIO output high and low levels.
while (1)
{
/* Set GPIO_PIN_OUTPUT */
GPIO_WriteBit(GPIO_PORT, GPIO_PIN, (BitAction)(1));
platform_delay_ms(1000);
/* Reset GPIO_PIN_OUTPUT */
GPIO_WriteBit(GPIO_PORT, GPIO_PIN, (BitAction)(0));
platform_delay_ms(1000);
}