SOLSend.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /****************************************************************
  2. ****************************************************************
  3. ** **
  4. ** (C)Copyright 2005-2006, American Megatrends Inc. **
  5. ** **
  6. ** All Rights Reserved. **
  7. ** **
  8. ** 6145-F, Northbelt Parkway, Norcross, **
  9. ** **
  10. ** Georgia - 30071, USA. Phone-(770)-246-8600. **
  11. ** **
  12. ****************************************************************
  13. ****************************************************************/
  14. /*****************************************************************
  15. *
  16. * solsend.h
  17. * SOL Send Routines
  18. *
  19. * Author: Govind Kothandapani <govindk@ami.com>
  20. * : Gowtham Shanmukham<gowthams@ami.com>
  21. *
  22. *****************************************************************/
  23. #ifndef SOLSEND_H
  24. #define SOLSEND_H
  25. #include "Types.h"
  26. #include "SOL.h"
  27. #define MAX_SOL_READ_SERIAL_BUF 256
  28. extern int SS_Init (int BMCInst);
  29. extern int SS_OnSOLPkt (SOLPayLoad_T* p_pkt, INT16U size,int BMCInst);
  30. extern int SS_IsPktReady (int BMCInst);
  31. extern int SS_FormSOLPkt (SOLPayLoad_T* p_pkt, _FAR_ INT16U* p_size,int BMCInst);
  32. extern void OnSOLRedirection (INT8U b,int BMCInst);
  33. extern void* ReadSerialPkt (void* pData);
  34. #endif /* SOLSEND_H */