Skip to content

Commit beb1749

Browse files
silabs minor fixes (project-chip#33121)
1 parent 5d338ff commit beb1749

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ int16_t rsi_spi_transfer(uint8_t * tx_buf, uint8_t * rx_buf, uint16_t xlen, uint
374374
}
375375

376376
(void) mode; // currently not used;
377-
error_t rsiError = RSI_ERROR_NONE;
377+
int16_t rsiError = RSI_ERROR_NONE;
378378

379379
xSemaphoreTake(spiTransferLock, portMAX_DELAY);
380380

examples/platform/silabs/efr32/uart.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ void USART_IRQHandler(void)
301301
{
302302
#ifdef ENABLE_CHIP_SHELL
303303
chip::NotifyShellProcess();
304-
#elif !defined(PW_RPC_ENABLED)
304+
#elif !defined(PW_RPC_ENABLED) && !defined(SL_WIFI)
305305
otSysEventSignalPending();
306306
#endif
307307

examples/platform/silabs/matter_shell.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ CHIP_ERROR CmdSilabsDispatch(int argc, char ** argv)
8383
size_t arg_len = strlen(argv[i]);
8484

8585
/* Make sure that the next argument won't overflow the buffer */
86-
VerifyOrExit(buff_ptr + arg_len < buff + kMaxLineLength, error = CHIP_ERROR_BUFFER_TOO_SMALL);
86+
VerifyOrExit(buff_ptr + arg_len < buff + SL_CLI_INPUT_BUFFER_SIZE, error = CHIP_ERROR_BUFFER_TOO_SMALL);
8787

8888
strncpy(buff_ptr, argv[i], arg_len);
8989
buff_ptr += arg_len;
9090

9191
/* Make sure that there is enough buffer for a space char */
92-
if (buff_ptr + sizeof(char) < buff + kMaxLineLength)
92+
if (buff_ptr + sizeof(char) < buff + SL_CLI_INPUT_BUFFER_SIZE)
9393
{
9494
strncpy(buff_ptr, " ", sizeof(char));
9595
buff_ptr++;

0 commit comments

Comments
 (0)