summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVehicleDataResultCode.h
blob: a5ca1a9c6d87c8a7edc76bd4ec92d451a229f8b6 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//  SDLVehicleDataResultCode.h
//


#import "SDLEnum.h"

/**
 Vehicle Data Result Code
 */
typedef SDLEnum SDLVehicleDataResultCode SDL_SWIFT_ENUM;

/**
 * Individual vehicle data item / DTC / DID request or subscription successful
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeSuccess;


/**
 * DTC / DID request successful, however, not all active DTCs or full contents of DID location available
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeTruncatedData;
   
/**
 * This vehicle data item is not allowed for this app by SDL
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeDisallowed;

/**
 * The user has not granted access to this type of vehicle data item at this time
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeUserDisallowed;

/**
 * The ECU ID referenced is not a valid ID on the bus / system
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeInvalidId;

/**
 * The requested vehicle data item / DTC / DID is not currently available or responding on the bus / system
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeVehicleDataNotAvailable;

/**
 * The vehicle data item is already subscribed
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeDataAlreadySubscribed;

/**
 * The vehicle data item cannot be unsubscribed because it is not currently subscribed
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeDataNotSubscribed;

/**
 * The request for this item is ignored because it is already in progress
 */
extern SDLVehicleDataResultCode const SDLVehicleDataResultCodeIgnored;