libdoip  0.1.0
DoIP (Diagnostics over Internet Protocol) ISO 13400 C++17 Library
DoIPSyncStatus.h
Go to the documentation of this file.
1 #ifndef DOIPSYNCSTATUS_H
2 #define DOIPSYNCSTATUS_H
3 
4 #include <stdint.h>
5 
6 namespace doip {
7  // Table 7 - VIN/GID Sync Status values
8  enum class DoIPSyncStatus : uint8_t {
9  GidVinSynchronized = 0x00,
10  // 0x01 to 0x0F: reserved
11  GidVinNotSynchronized = 0x10,
12  // 0x11 to 0xFF: reserved
13  };
14 } // namespace doip
15 
16 #endif /* DOIPSYNCSTATUS_H */
Definition: AnsiColors.h:3
DoIPSyncStatus
Definition: DoIPSyncStatus.h:8