Interrupts.c
上传用户:gxz1972
上传日期:2019-09-13
资源大小:323k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // Interrupts.c
  3. //-----------------------------------------------------------------------------
  4. // Copyright 2007 Vson Technology, Inc.
  5. // http://www.usbmcu.com
  6. //
  7. // Program Description:
  8. //
  9. //
  10. //
  11. //
  12. //
  13. // MCU:            C8051F347
  14. // Tool chain:     Keil C51 7.50 / Keil EVAL C51
  15. //                 Silicon Laboratories IDE version 2.6
  16. // Command Line:   
  17. // Project Name:   TR1000
  18. //
  19. //
  20. // Release 1.0
  21. //    -All changes by Brin Cai
  22. //    -24 JUL 2007
  23. //
  24. //
  25. //-----------------------------------------------------------------------------
  26. // Includes
  27. //-----------------------------------------------------------------------------
  28. #include "Include_H.h"
  29. //---------------------------------------------
  30. void TIMER2_ISR () interrupt 5 //10ms interrupt
  31. {
  32.   TF2H = 0;
  33. if(gwDelayCnt>0)
  34. {
  35.   gwDelayCnt--;
  36. }
  37. if (gwDelayCnt==0)
  38. {
  39.   gbitClearStudentIdBuffer = 1;//clr Student Id buffer
  40.   IE &= ~0x20;
  41. }
  42. }
  43. /*
  44. void TIMER3_ISR () interrupt 14 //10ms interrupt
  45. {
  46.   TF3H = 0;
  47. if(gwDelayCnt>0)
  48. {
  49.   gwDelayCnt--;
  50. }
  51. }
  52. */
  53. //-----------------------------------------------------------------------------
  54. // End Of File
  55. //-----------------------------------------------------------------------------