1.GPIO点亮LED灯测试
该教程演示如何通过开发板的GPIO点亮LED灯。
一、准备工作
- 准备1块BearPi-Pico H2821开发板
二、编译代码
在Windows下编译操作
点击左侧的“KConfig”,打开配置界面.
选择Support BLINKY Sample
Application ---> [*] Enable Sample. [*] Enable the Sample of peripheral. [ ] Enable all the sample of peripheral, it's just for build. [ ] Support ADC Sample. [*] Support BLINKY Sample. BLINK Sample Configuration --->
设置LED的GPIO和闪烁时间,这边以设置板载LED的GPIO为例。
BLINK Sample Configuration ---> (31) Choose BLINKY_PIN pin. (NEW) (500) Duration of blinky in MS. (NEW)
按下"Save"键保存配置。
编译烧录固件
参考环境搭建教程编译烧录代码
在Ubuntu下编译操作
在MobaXterm中输入:
./build.py menuconfig
选择Support BLINKY Sample
Application ---> [*] Enable Sample. [*] Enable the Sample of peripheral. [ ] Enable all the sample of peripheral, it's just for build. [ ] Support ADC Sample. [*] Support BLINKY Sample. BLINK Sample Configuration --->
设置LED的GPIO和闪烁时间,这边以设置板载LED的GPIO为例。
BLINK Sample Configuration ---> (31) Choose BLINKY_PIN pin. (NEW) (500) Duration of blinky in MS. (NEW)
按下"ESC"键退出并保存配置。
编译烧录固件
参考环境搭建教程编译烧录代码
三、测试
烧录固件后按下开发的复位按键,开发板上的LED灯就会闪烁。