CustomiOSApi  1.04
 All Classes Functions Enumerations Enumerator Pages
LibConst.h
1 //
2 // LibConst.h
3 // CustomiOSApi
4 //
5 // Created by CUSTOM on 04/07/13.
6 // Copyright (c) 2013 CUSTOM. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 extern NSInteger const CONST_TIMEOUTREAD; //Read Timeout
12 extern NSInteger const CONST_TIMEOUTWRITE; //Write Timeout
13 extern NSInteger const CONST_TIMEOUTCONNECT; //Timeout Connect
14 extern NSInteger const CONST_TIMEOUTENDPRINT; //Timeout End Print
15 extern NSInteger const CONST_TIMEOUTBT; //Timeout Connect Blue Tooth
16 extern NSInteger const CONST_TIMEOUTETH; //Timeout Connect Ethernet
17 extern NSInteger const CONST_TIMEOUTWATCHDOGETH; //Timeout Watchdog Ethernet
18 extern NSInteger const CONST_TIMEOUTWATCHDOGBT; //Timeout Watchdog Bluetooth
19 
20 extern NSInteger const CONST_MAXPACKETSIZE_ETH;
21 extern NSInteger const CONST_MAXPACKETSIZE_BT;
22 
23 extern NSInteger const TIMESLEEP_CHECKCOMMSTS;
24 extern NSInteger const MAX_CONNECT_ATTEMT;
25 extern NSInteger const BUFFER_PACKET_WIFI_SEND;
26 extern NSInteger const BUFFER_PACKET_BT_SEND;
27 extern NSInteger const BUFFER_ETH_RX_MAX_SIZE;
28 extern NSInteger const BUFFER_BT_RX_MAX_SIZE;
29 
30 //Hide it in the documentation
31 // @cond PRIVATE
32 @interface LibConst : NSObject
33 {
34  @public
35 
36  @protected
37 
38  @private
39 }
40 @end
41