sci.h
上传用户:lilishw
上传日期:2021-05-28
资源大小:1542k
文件大小:1k
源码类别:

Modem编程

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------------------------------
  2. // Project:- DE8681
  3. //   Filename:- SCI.H
  4. // Description:- Header file for SCI.C
  5. // Programmer:- D.T.F
  6. // Version:- 2.0
  7. // Created:- 28th February 2002
  8. // Last modified:-
  9. //---------------------------------------------------------------------------------------------------
  10. // (C) Consumer Microcircuits Ltd 2002
  11. //
  12. // This firmware was designed by:-
  13. // Consumer Microcircuits Ltd,
  14. // Langford, Maldon,
  15. // ESSEX
  16. // CM9 6WG.
  17. // in the UK for use with CML evaluation kits only and is based on UK originated technology.
  18. // Please contact
  19. // sales@cmlmicro.co.uk
  20. // +44 (0)1621 875500
  21. // for licensing details.
  22. //---------------------------------------------------------------------------------------------------
  23. #define FOSC (4000000L)
  24. #define SCI_EIGHT (0)
  25. #define SCI_NINE (1)
  26. extern unsigned char sci_init(unsigned long int, unsigned char);
  27. extern void  sci_putByte(unsigned char);
  28. extern unsigned char sci_getByte(void);
  29. extern void  sci_putNinth(unsigned char);
  30. extern unsigned char sci_getNinth(void);
  31. extern unsigned char sci_getFERR(void);
  32. extern unsigned char sci_checkOERR(void);