spi_bus_lock_wait_bg_done() function
Wait until the ISR has finished all the BG operations for the acquiring device. If any `spi_bus_lock_bg_request` for this device has been called after `spi_bus_lock_acquire_start`, this function must be called before any operation in the task.
Arguments
dev_handle
Handle to the device acquiring the bus.
wait
Time to wait until timeout or succeed, must be `portMAX_DELAY` for now.
Return value
- ESP_OK: on success - ESP_ERR_INVALID_STATE: The device is not the acquiring bus. - ESP_ERR_INVALID_ARG: Timeout is not portMAX_DELAY.
Notes
Can only be called when bus acquired by this device.