Skip to content

Commit e7b3336

Browse files
committed
fixing the build for the custom boards on ncp
1 parent f9ad5bf commit e7b3336

File tree

7 files changed

+15
-21
lines changed

7 files changed

+15
-21
lines changed

examples/platform/silabs/efr32/rs911x/hal/efx32_ncp_host.c

+3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@
3636
#include "sl_power_manager.h"
3737
#endif
3838

39+
#ifdef SL_BOARD_NAME
3940
#include "sl_board_control.h"
41+
#endif // SL_BOARD_NAME
42+
4043
#include "sl_si91x_ncp_utility.h"
4144
#include "spi_multiplex.h"
4245

examples/platform/silabs/efr32/rs911x/hal/efx_spi.c

+4-13
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
#include "em_gpio.h"
3636
#include "em_ldma.h"
3737
#include "gpiointerrupt.h"
38-
#include "sl_board_control.h"
3938
#include "sl_device_init_clocks.h"
4039
#include "sl_device_init_hfxo.h"
4140
#include "sl_spidrv_instances.h"
@@ -47,6 +46,10 @@
4746
#include "wfx_host_events.h"
4847
#include "wfx_rsi.h"
4948

49+
#ifdef SL_BOARD_NAME
50+
#include "sl_board_control.h"
51+
#endif // SL_BOARD_NAME
52+
5053
#if defined(SL_CATALOG_POWER_MANAGER_PRESENT)
5154
#include "sl_power_manager.h"
5255
#endif
@@ -65,18 +68,12 @@
6568
#include "sl_mx25_flash_shutdown_usart_config.h"
6669
#endif // SL_MX25CTRL_MUX
6770

68-
#if defined(EFR32MG24)
6971
#include "em_eusart.h"
7072
#include "sl_spidrv_eusart_exp_config.h"
7173
#include "spi_multiplex.h"
72-
#else
73-
#error "Unknown platform"
74-
#endif
7574

76-
#if defined(EFR32MG24)
7775
#define SL_SPIDRV_HANDLE sl_spidrv_eusart_exp_handle
7876
#define SL_SPIDRV_EXP_BITRATE_MULTIPLEXED SL_SPIDRV_EUSART_EXP_BITRATE
79-
#endif
8077

8178
#define CONCAT(A, B) (A##B)
8279
#define SPI_CLOCK(N) CONCAT(cmuClock_USART, N)
@@ -113,10 +110,8 @@ void sl_wfx_host_gpio_init(void)
113110
// Enable GPIO clock.
114111
CMU_ClockEnable(cmuClock_GPIO, true);
115112

116-
#if defined(EFR32MG24)
117113
// Set CS pin to high/inactive
118114
GPIO_PinModeSet(SL_SPIDRV_EUSART_EXP_CS_PORT, SL_SPIDRV_EUSART_EXP_CS_PIN, gpioModePushPull, PINOUT_SET);
119-
#endif // EFR32MG24
120115

121116
GPIO_PinModeSet(WFX_RESET_PIN.port, WFX_RESET_PIN.pin, gpioModePushPull, PINOUT_SET);
122117
GPIO_PinModeSet(WFX_SLEEP_CONFIRM_PIN.port, WFX_SLEEP_CONFIRM_PIN.pin, gpioModePushPull, PINOUT_CLEAR);
@@ -195,9 +190,7 @@ sl_status_t sl_wfx_host_spi_cs_assert(void)
195190
if (!spi_enabled) // Reduce sl_spidrv_init_instances
196191
{
197192
sl_spidrv_init_instances();
198-
#if defined(EFR32MG24)
199193
GPIO_PinOutClear(SL_SPIDRV_EUSART_EXP_CS_PORT, SL_SPIDRV_EUSART_EXP_CS_PIN);
200-
#endif // EFR32MG24
201194
spi_enabled = true;
202195
}
203196
return SL_STATUS_OK;
@@ -211,10 +204,8 @@ sl_status_t sl_wfx_host_spi_cs_deassert(void)
211204
status = SPIDRV_DeInit(SL_SPIDRV_HANDLE);
212205
if (SL_STATUS_OK == status)
213206
{
214-
#if defined(EFR32MG24)
215207
GPIO_PinOutSet(SL_SPIDRV_EUSART_EXP_CS_PORT, SL_SPIDRV_EUSART_EXP_CS_PIN);
216208
GPIO->EUSARTROUTE[SL_SPIDRV_EUSART_EXP_PERIPHERAL_NO].ROUTEEN = PINOUT_CLEAR;
217-
#endif // EFR32MG24
218209
spi_enabled = false;
219210
}
220211
}

examples/platform/silabs/efr32/rs911x/hal/rsi_board_configuration.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ typedef struct
3535
#elif defined(EFR32MG24_BRD4187C) || defined(BRD4187C)
3636
#include "brd4187c.h"
3737
#else
38-
#error "Need SPI Pins"
38+
#include "sl_custom_board.h"
39+
#warning "SPIDRV USART peripheral not configured correctly"
3940
#endif /* EFR32MG24_BRD4186C */
4041

4142
#endif /* _RSI_BOARD_CONFIGURATION_H_ */

examples/platform/silabs/efr32/rs911x/hal/sl_board_configuration.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ typedef struct
3636
#elif defined(EFR32MG24_BRD4187C) || defined(BRD4187C)
3737
#include "brd4187c.h"
3838
#else
39-
#error "Need SPI Pins"
39+
#include "sl_custom_board.h"
40+
#warning "SPIDRV USART peripheral not configured correctly"
4041
#endif
4142
#if EXP_BOARD
4243
#define RESET_PIN PIN(A, 6)

examples/platform/silabs/efr32/rs911x/hal/sl_si91x_ncp_utility.c

+2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
#include "spidrv.h"
3737
#include "task.h"
3838

39+
#ifdef SL_BOARD_NAME
3940
#include "sl_board_control.h"
41+
#endif // SL_BOARD_NAME
4042

4143
#include "sl_device_init_clocks.h"
4244
#include "sl_device_init_hfxo.h"

examples/platform/silabs/efr32/wf200/efr_spi.c

-5
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,9 @@ sl_status_t sl_wfx_host_init_bus(void)
9898
* EUSARTROUTE register to do this.
9999
*/
100100

101-
#if defined(EFR32MG24)
102101
GPIO->USARTROUTE[0].ROUTEEN = GPIO_USART_ROUTEEN_RXPEN | // MISO
103102
GPIO_USART_ROUTEEN_TXPEN | // MOSI
104103
GPIO_USART_ROUTEEN_CLKPEN;
105-
#endif
106104

107105
spi_sem = xSemaphoreCreateBinaryStatic(&xEfrSpiSemaBuffer);
108106
xSemaphoreGive(spi_sem);
@@ -338,11 +336,8 @@ void sl_wfx_host_gpio_init(void)
338336
{
339337
// Enable GPIO clock.
340338
CMU_ClockEnable(cmuClock_GPIO, true);
341-
342-
#if defined(EFR32MG24)
343339
// configure WF200 CS pin.
344340
GPIO_PinModeSet(SL_SPIDRV_EXP_CS_PORT, SL_SPIDRV_EXP_CS_PIN, gpioModePushPull, 1);
345-
#endif
346341
// Configure WF200 reset pin.
347342
GPIO_PinModeSet(SL_WFX_HOST_PINOUT_RESET_PORT, SL_WFX_HOST_PINOUT_RESET_PIN, gpioModePushPull, 0);
348343
// Configure WF200 WUP pin.

examples/platform/silabs/efr32/wf200/sl_wfx_board.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#elif defined(EFR32MG24_BRD4187C) || defined(BRD4187C) || defined(EFR32MG24_BRD4187A) || defined(BRD4187A)
2626
#include "brd4187c.h"
2727
#else
28-
#error "Need SPI Pins"
28+
#include "sl_custom_board.h"
29+
#warning "SPIDRV USART peripheral not configured correctly"
2930
#endif
3031
#endif /* _SL_WFX_BOARD_H_ */

0 commit comments

Comments
 (0)