nrf_error_busy 是一个在 Nordic Semiconductor 的设备(如 nRF52 系列)上常见的错误代码,它指示设备或资源当前正忙,无法接受新的请求或命令。 什么是 nrf_error_busy 错误? nrf_error_busy 是一个错误代码,用于指示当前操作无法立即执行,因为设备或相关的硬件资源(如 UART、SPI、I2C 或 BLE 堆栈)正忙于处理另...
if (ret == NRF_ERROR_BUSY) { return NRF_ERROR_NO_MEM; } else if (ret != NRF_SUCCESS) { return NRF_ERROR_INTERNAL; } else { return NRF_SUCCESS; } } Let me know if y'all need more details. Thanks in advance!