forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boards: arm: cy8ckit_062_ble: Add serial pinctrl and int
Add pinctrl and interrupt information for both m0/4 cores. The uart-5 is the default serial communication on the kit and it is connected to Cortex-M0+ cpu. It uses SCB[5] and the NVIC line 21 as interrupt source on Cortex-M0+ cpu. The line 21 is an arbitrary value and users can select any value. The SCB[5] shares pins with Arduino headers D0/D1 and it is wired with the on-board USB Serial converter. This means, if use wants use an external shield it must rework the board. The uart-6 is the default serial communication for Cortex-M4 cpu, which uses SCB[6]. Signed-off-by: Gerson Fernando Budke <[email protected]>
- Loading branch information
Showing
3 changed files
with
21 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,6 @@ | |
&uart6 { | ||
status = "okay"; | ||
current-speed = <115200>; | ||
|
||
pinctrl-0 = <&p13_0_uart6_rx &p13_1_uart6_tx>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters