1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/cc1352p-launchpad: fix BTN-1 definition

BTN-1 is on pin 15, configuring pin 13 as input gets the board stuck at boot.
This commit is contained in:
Benjamin Valentin 2021-01-27 19:54:00 +01:00
parent 1bde5296fd
commit 9ad4159865

View File

@ -38,7 +38,7 @@ extern "C" {
* @name On-board button configuration
* @{
*/
#define BTN0_PIN GPIO_PIN(0, 13)
#define BTN0_PIN GPIO_PIN(0, 15)
#define BTN0_MODE GPIO_IN_PU
#define BTN1_PIN GPIO_PIN(0, 14)