FirwmareConfigurations.h 400 B

1234567891011121314151617181920
  1. /** @file
  2. This header file provides definitions of firmware configuration.
  3. Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _FIRMWARE_CONFIGURATION_H_
  7. #define _FIRMWARE_CONFIGURATION_H_
  8. typedef enum {
  9. FwConfigDefault = 0,
  10. FwConfigProduction,
  11. FwConfigTest,
  12. FwConfigMax
  13. } FW_CONFIG;
  14. #endif