Skip to content

Commit

Permalink
Resolved review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bhmanda-silabs committed Nov 29, 2024
1 parent 26f428e commit 9d69ff3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/platform/silabs/wifi/rs911x/platform/efx32_ncp_host.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
#include "sl_rsi_utility.h"
#include "sl_si91x_host_interface.h"
#include "sl_si91x_status.h"
#include "sl_si91x_ncp_utility.h"
#include "sl_status.h"
#include "sl_wifi_constants.h"
#include <platform/silabs/wifi/wf200/platform/spi_multiplex.h>
#include <stdbool.h>
#include <string.h>

Expand All @@ -40,9 +42,6 @@
#include "sl_board_control.h"
#endif // SL_BOARD_NAME

#include "sl_si91x_ncp_utility.h"
#include <platform/silabs/wifi/wf200/platform/spi_multiplex.h>

#include "sl_spidrv_exp_config.h"
#include "sl_spidrv_instances.h"
#include "spidrv.h"
Expand All @@ -53,7 +52,8 @@
// use SPI handle for EXP header (configured in project settings)
extern SPIDRV_Handle_t sl_spidrv_exp_handle;
#define SPI_HANDLE sl_spidrv_exp_handle
static uint8_t dummy_buffer[1800] = { 0 };
#define MAX_DATA_PACKET_SIZE 1800
static uint8_t dummy_buffer[MAX_DATA_PACKET_SIZE] = { 0 };

uint32_t rx_ldma_channel;
uint32_t tx_ldma_channel;
Expand Down

0 comments on commit 9d69ff3

Please sign in to comment.