bleDispatcher

actual fun bleDispatcher(): CoroutineDispatcher
expect fun bleDispatcher(): CoroutineDispatcher

Platform-specific dispatcher for BLE transport operations.

On Android: Uses Dispatchers.IO (unbounded thread pool) to avoid thread starvation when runBlocking blocks Default dispatcher threads.

On iOS: Uses Dispatchers.Default (IO is not needed since iOS doesn't have the same thread pool limitation with runBlocking).