From 05bf94492f5dc44a50b94db4367449d0aad9a395 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Mon, 4 Sep 2023 15:45:21 +0200 Subject: [PATCH] drivers/at86rf215: switch example config to use EXT3 on same54-xpro This avoids the conflict of using the same IRQ line (EXTI07) as the PHY --- drivers/at86rf215/include/at86rf215_params.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/at86rf215/include/at86rf215_params.h b/drivers/at86rf215/include/at86rf215_params.h index efba5b7498..b2f44278cd 100644 --- a/drivers/at86rf215/include/at86rf215_params.h +++ b/drivers/at86rf215/include/at86rf215_params.h @@ -28,23 +28,23 @@ extern "C" { /** * @name Set default configuration parameters for the AT86RF215 driver - * Example config for EXT1 on same54-xpro + * Example config for EXT3 on same54-xpro * @{ */ #ifndef AT86RF215_PARAM_SPI -#define AT86RF215_PARAM_SPI (SPI_DEV(0)) +#define AT86RF215_PARAM_SPI (SPI_DEV(1)) #endif #ifndef AT86RF215_PARAM_SPI_CLK #define AT86RF215_PARAM_SPI_CLK (SPI_CLK_5MHZ) #endif #ifndef AT86RF215_PARAM_CS -#define AT86RF215_PARAM_CS (GPIO_PIN(1, 28)) +#define AT86RF215_PARAM_CS (GPIO_PIN(2, 14)) #endif #ifndef AT86RF215_PARAM_INT -#define AT86RF215_PARAM_INT (GPIO_PIN(1, 7)) +#define AT86RF215_PARAM_INT (GPIO_PIN(2, 30)) #endif #ifndef AT86RF215_PARAM_RESET -#define AT86RF215_PARAM_RESET (GPIO_PIN(1, 8)) +#define AT86RF215_PARAM_RESET (GPIO_PIN(3, 10)) #endif #ifndef AT86RF215_PARAMS