| 45 | // ---- Pairing ---- |
| 46 | |
| 47 | error_t bluetooth_pair(struct Device* device, const BtAddr addr) { |
| 48 | return BT_API(device)->pair(device, addr); |
| 49 | } |
| 50 | |
| 51 | error_t bluetooth_unpair(struct Device* device, const BtAddr addr) { |
| 52 | return BT_API(device)->unpair(device, addr); |
nothing calls this directly
no outgoing calls
no test coverage detected