You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1009 B
45 lines
1009 B
// |
|
// RTKLEPackage.h |
|
// RTKLEFoundation |
|
// |
|
// Created by jerome_gu on 2019/1/10. |
|
// Copyright © 2019 Realtek. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
#define RTK_ID_NULL -6666 |
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface RTKLEPackage : NSObject |
|
|
|
@property (readonly) NSInteger ID; |
|
@property (readonly) NSInteger subID; |
|
@property (readonly, nullable) NSData *payload; |
|
@property (readonly) NSDate *time; |
|
|
|
- (instancetype)initWithID:(NSInteger)ID payload:(nullable NSData *)payload; |
|
|
|
- (instancetype)initWithID:(NSInteger)ID subID:(NSInteger)subID payload:(nullable NSData *)payload; |
|
|
|
- (nullable instancetype)initWithRawData:(NSData *)data; |
|
|
|
@property (retain) NSData *rawData; |
|
|
|
@end |
|
|
|
|
|
@interface RTKLEACKPackage : RTKLEPackage |
|
|
|
@property (readonly) NSInteger ACKID; |
|
@property (readonly, nullable) NSData *additionData; |
|
|
|
- (instancetype)initWithACKID:(NSInteger)ID additionData:(nullable NSData *)payload; |
|
|
|
- (nullable instancetype)initWithRawData:(NSData *)data; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|