blob: a89648dfacc39c59a80c09037450bd97d2ac1aa7 [file] [log] [blame]
Andrew Jeffery9c766792022-08-10 23:12:49 +09301#ifndef STATES_H
2#define STATES_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include "pldm_types.h"
9
10/** @brief PLDM enums for the boot progress state set
11 */
12enum pldm_boot_progress_states {
13 PLDM_BOOT_NOT_ACTIVE = 1,
14 PLDM_BOOT_COMPLETED = 2,
15};
16
17/** @brief PLDM enums for system power states
18 */
19enum pldm_system_power_states {
20 PLDM_OFF_SOFT_GRACEFUL = 9,
21};
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif /* STATES_H */