// // RTKOTAProfile.h // RTKOTASDK // // Created by jerome_gu on 2019/4/16. // Copyright © 2019 Realtek. All rights reserved. // #ifdef RTK_SDK_IS_STATIC_LIBRARY #import "libRTKLEFoundation.h" #import "RTKOTAPeripheral.h" #import "RTKMultiDFUPeripheral.h" #else #import #import #import #endif NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(uint8_t, RTKOTAAdvbud) { RTKOTAAdvbudSingle, RTKOTAAdvbudPrimary, RTKOTAAdvbudSecondary, }; @interface RTKOTAProfile : RTKLEProfile // Instantiate OTAPeripheral from a known CBPeripheral object. // You typically already have a CBPeripheral to upgrade within your CBCentralManager. // deprecated. use -instantiatePeripheralWithCBPeripheral: instead. - (nullable RTKOTAPeripheral*)OTAPeripheralFromCBPeripheral:(CBPeripheral *)peripheral; // Silent upgrade - (nullable RTKDFUPeripheral*)DFUPeripheralOfOTAPeripheral:(RTKOTAPeripheral *)peripheral; - (void)connectToDFUPeripheral:(RTKDFUPeripheral *)peripheral; // Normal upgrade - (void)translatePeripheral:(RTKOTAPeripheral*)peripheral toDFUPeripheralWithCompletion:(void(^)(BOOL success, NSError *_Nullable err, RTKDFUPeripheral *_Nullable peripheral))handler; /** Discover for companion peripheral. Used for RWS upgrade. **/ - (void)scanCompanionPeripheralOf:(RTKOTAPeripheral *)peripheral withCompletionHandler:(void(^)(BOOL success, NSError*_Nullable err, RTKOTAPeripheral *_Nullable targetPeripheral))handler; @end @interface RTKOTAProfile (Protect) /* Protected */ - (void)_scanDFUPerpheralOf:(RTKOTAPeripheral*)peripheral withCompletion:(void(^)(BOOL success, NSError *_Nullable err, RTKDFUPeripheral *_Nullable peripheral))handler; @end NS_ASSUME_NONNULL_END