KCS.h 1.4 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. * KCS.h
  17. * KCS Functions and Macros Definitions.
  18. *
  19. * Author: Rama Rao Bisa <ramab@ami.com>
  20. ******************************************************************/
  21. #ifndef KCS_H
  22. #define KCS_H
  23. #include "Types.h"
  24. //#include "OSPort.h"
  25. /**
  26. * @brief Initialize KCS interface.
  27. * @return 0 if success, -1 if error.
  28. **/
  29. extern int InitKCS (void);
  30. /*** External Definitions ***/
  31. #define KCS_1_CHANNEL 0
  32. #define KCS_2_CHANNEL 1
  33. #define MAX_KCS_PKT_LEN (33*1024)
  34. #endif /* KCS_H */