Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rtduino][lpc55s69] update #6972

Merged
merged 2 commits into from
Feb 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Hardware Drivers Config --->

![LPC55s69-nxp-evk-pinout2](LPC55s69-nxp-evk-pinout2.png)

| Arduino引脚编号 | STM32引脚编号 | 5V容忍 | 备注 |
| Arduino引脚编号 | LPC55引脚编号 | 5V容忍 | 备注 |
| ------------------- | --------- | ---- | ------------------------------------------------------------------------- |
| 0 (D0) | P(1,24) | 是/否 | Serial2-RX,默认被RT-Thread的UART设备框架uart1接管 |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个表要填写是否5V容忍 是或者否选一个,需要查一下芯片手册确认一下

| 1 (D1) | P(0,27) | 是/否 | Serial2-TX,默认被RT-Thread的UART设备框架uart1接管 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include <Arduino.h>
#include <board.h>
#include <drv_pin.h>
#include "pins_arduino.h"

/*
Expand Down
2 changes: 1 addition & 1 deletion bsp/lpc55sxx/lpc55s69_nxp_evk/board/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ menu "On-chip Peripheral Drivers"

config BSP_USING_CTIMER1_MAT3
bool "Enable CIMER1 Match3 as PWM output"
default y
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

如果功能没有问题可以保留,default 改为n即可

default n

config BSP_USING_CTIMER2_MAT0
bool "Enable CIMER2 Match0 as PWM output"
Expand Down