17 lines
445 B
C
17 lines
445 B
C
#ifndef INCLUDE_DI_CONSTANTS_RPC_LEGACY_H_
|
|
#define INCLUDE_DI_CONSTANTS_RPC_LEGACY_H_
|
|
|
|
/*
|
|
* Legacy devices publish their SN, IDCODE and IMEI from
|
|
* the old MTinfo in order to account for this info in
|
|
* the new MTinfo (possibly)
|
|
*/
|
|
|
|
enum di_rpc_uid_legacy_config {
|
|
DI_RPC_UID_LEGACY_CONFIG_SN = 100U,
|
|
DI_RPC_UID_LEGACY_CONFIG_IDCODE = 101U,
|
|
DI_RPC_UID_LEGACY_CONFIG_IMEI = 102U
|
|
};
|
|
|
|
#endif /* INCLUDE_DI_CONSTANTS_RPC_LEGACY_H_ */
|