| 123456789101112131415161718 |
- #pragma once
- #include <bt/bt_service/bt.h>
- #include "seos_profile.h"
- typedef struct {
- Seos* seos;
- Bt* bt;
- FuriHalBleProfileBase* ble_profile;
- } SeosNativePeripheral;
- SeosNativePeripheral* seos_native_peripheral_alloc(Seos* seos);
- void seos_native_peripheral_free(SeosNativePeripheral* seos_native_peripheral);
- void seos_native_peripheral_start(SeosNativePeripheral* seos_native_peripheral, FlowMode mode);
- void seos_native_peripheral_stop(SeosNativePeripheral* seos_native_peripheral);
|