Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Silabs] Fixed the 917 NCP init #37147

Merged
merged 16 commits into from
Jan 23, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added comment for SPI transfer API
bhmanda-silabs committed Jan 22, 2025
commit 66d2a865d0571bee376f9e3e7d6c7b801a83f76f
1 change: 1 addition & 0 deletions src/platform/silabs/wifi/SiWx/ncp/efx32_ncp_host.c
Original file line number Diff line number Diff line change
@@ -105,6 +105,7 @@ Ecode_t si91x_SPIDRV_MTransfer(SPIDRV_Handle_t handle, const void * txBuffer, vo
uint8_t * tx = (txBuffer != NULL) ? (uint8_t *) txBuffer : dummy_buffer;
uint8_t * rx = (rxBuffer != NULL) ? (uint8_t *) rxBuffer : dummy_buffer;

// For transfers less than 16 bytes, directly interacting with USART buffers is faster than using DMA
if (count < 16)
{
while (count > 0)