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

Modem编程

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------------------------------
  2. // Project:- DE8681 (CMX868 Rev C)
  3. //   Filename:- BERT.H
  4. // Description:- Header file for BERT.C
  5. // Programmer:- D.T.F
  6. // Version:- 1.0
  7. // Created:- 30th November 2001
  8. // Last modified:-
  9. //---------------------------------------------------------------------------------------------------
  10. // (C) Consumer Microcircuits Ltd 2001
  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. #ifdef BERT_C
  24. void bert(void);
  25. void  bert868_init(void);
  26. void init_bertporta(void);
  27. void undo_bertporta(void);
  28. void bert_txd(void);
  29. void bert_rxd(void);
  30. void read_bertxdata(void);
  31. void modify_rxd(void);
  32. void bertimer_reload(void);
  33. void bertimer_init(void);
  34. #else
  35. extern void bert(void);
  36. extern void bert_txd(void);
  37. extern void bert_rxd(void);
  38. extern void init_bertporta(void);
  39. extern void undo_bertporta(void);
  40. #endif