Blame view

HDFwear/3rd/Mediatek/Controller.h 913 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  //
  //  Controller.h
  //  MTKBleManager
  //
  //  Created by user on 11/6/14.
  //  Copyright (c) 2014 ___MTK___. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  
  const static int PRIORITY_NORMAL = 0;
  const static int PRIORITY_LOW = 1;
  const static int PRIORITY_HIGH = 2;
  
  @interface Controller : NSObject
  
  - (id) init: (NSString *)tag cmdtype: (int)cmdtype;
  
  - (void)send: (NSString *)cmd data: (NSData *)dataBuffer response: (BOOL)re progress: (BOOL)pr priority: (int)priority;
  
  -(void)onReceive:(NSData*)data;
  
  -(void)onProgress: (float)sentPercent;
  
  - (void)onConnectStateChange: (int)state;
  
  /**
   *    get receiver tags of the controller
   *
   *    @return array which contains NSString *
   */
  - (NSArray *)getReceiverTags;
  
  /**
   *    set receiver tag of the controller
   *
   *    @param tagStrArray the array which contains tha receiver tag string
   */
  - (void)setReceiversTags: (NSArray *)tagStrArray;
  
  @end