| 49 | } |
| 50 | |
| 51 | error_t bluetooth_unpair(struct Device* device, const BtAddr addr) { |
| 52 | return BT_API(device)->unpair(device, addr); |
| 53 | } |
| 54 | |
| 55 | error_t bluetooth_get_paired_peers(struct Device* device, struct BtPeerRecord* out, size_t* count) { |
| 56 | return BT_API(device)->get_paired_peers(device, out, count); |