DeviceConfig.h 954 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*****************************************************************
  2. *
  3. * DeviceConfig.h
  4. * Device Configuration Handler
  5. *
  6. * Author: Govind Kothandapani <govindk@ami.com>
  7. * : Rama Bisa <ramab@ami.com>
  8. * : Basavaraj Astekar <basavaraja@ami.com>
  9. * : Bakka Ravinder Reddy <bakkar@ami.com>
  10. *
  11. *****************************************************************/
  12. #ifndef DEVICE_CONFIG_H
  13. #define DEVICE_CONFIG_H
  14. #include <stdio.h>
  15. #include "MsgHndlr.h"
  16. #include "com_IPMI_DeviceConfig.h"
  17. /**
  18. * @var g_Config_CmdHndlr
  19. * @brief Transport Configuration Commands Map.
  20. **/
  21. extern const CmdHndlrMap_T g_Config_CmdHndlr [];
  22. /**
  23. * @defgroup devcfg Device Configuration Module
  24. * IPMI Device Configuration command interface. This module
  25. * implements configuration and access commands for transport modules
  26. * such as LAN, Serial/Modem, Serial Over LAN.
  27. * @{
  28. **/
  29. /** @} */
  30. #endif /* DEVICE_CONFIG_H */