- 在CMakeLists.txt中添加display_test_module.c源文件 - 在设备树配置中添加SPI3和PWM0引脚控制定义 - 配置MIPI DBI显示屏驱动,支持ST7789V控制器 - 添加PWM LED背光控制功能 - 启用GPIO复位功能并添加点击检测器配置 - 实现显示测试模块,支持彩色测试图案渲染
62 lines
1.0 KiB
Plaintext
62 lines
1.0 KiB
Plaintext
&pinctrl {
|
|
i2c0_default: i2c0_default {
|
|
group1 {
|
|
psels = <NRF_PSEL(TWIM_SDA, 1, 0)>,
|
|
<NRF_PSEL(TWIM_SCL, 0, 24)>;
|
|
};
|
|
};
|
|
|
|
i2c0_sleep: i2c0_sleep {
|
|
group1 {
|
|
psels = <NRF_PSEL(TWIM_SDA, 1, 0)>,
|
|
<NRF_PSEL(TWIM_SCL, 0, 24)>;
|
|
low-power-enable;
|
|
};
|
|
};
|
|
|
|
encoder_default: encoder_default {
|
|
group1 {
|
|
psels = <NRF_PSEL(QDEC_A, 0, 10)>,
|
|
<NRF_PSEL(QDEC_B, 1, 6)>;
|
|
bias-pull-up;
|
|
};
|
|
};
|
|
|
|
encoder_sleep: encoder_sleep {
|
|
group1 {
|
|
psels = <NRF_PSEL(QDEC_A, 0, 10)>,
|
|
<NRF_PSEL(QDEC_B, 1, 6)>;
|
|
low-power-enable;
|
|
bias-pull-up;
|
|
};
|
|
};
|
|
|
|
spi3_default: spi3_default {
|
|
group1 {
|
|
psels = <NRF_PSEL(SPIM_SCK, 1, 13)>,
|
|
<NRF_PSEL(SPIM_MOSI, 0, 28)>;
|
|
};
|
|
};
|
|
|
|
spi3_sleep: spi3_sleep {
|
|
group1 {
|
|
psels = <NRF_PSEL(SPIM_SCK, 1, 13)>,
|
|
<NRF_PSEL(SPIM_MOSI, 0, 28)>;
|
|
low-power-enable;
|
|
};
|
|
};
|
|
|
|
pwm0_default: pwm0_default {
|
|
group1 {
|
|
psels = <NRF_PSEL(PWM_OUT0, 1, 11)>;
|
|
};
|
|
};
|
|
|
|
pwm0_sleep: pwm0_sleep {
|
|
group1 {
|
|
psels = <NRF_PSEL(PWM_OUT0, 1, 11)>;
|
|
low-power-enable;
|
|
};
|
|
};
|
|
};
|