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

传真(Fax)编程

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // Main.h
  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 Brian Cai
  22. //    -24 JUL 2007
  23. //
  24. //
  25. #ifndef  _MAIN_H_
  26. #define  _MAIN_H_
  27. //-----------------------------------------------------------------------------
  28. // Global Constants
  29. //-----------------------------------------------------------------------------
  30. //  Machine States
  31. #define ST_WAIT_DEV 0x01                      // Wait for application to open a device instance
  32. #define ST_IDLE_DEV 0x02                      // Device is open, wait for Setup Message from host
  33. #define ST_TX_CONFIG_RESPONSE_TO_HOST 0x04    // Received Setup Message, decode and wait for data
  34. #define ST_TX_KEY_DATA_TO_HOST       0x08    // Receive file data from host
  35. #define ST_TX_TOUCHPAD_DATA_TO_HOST   0x10    // Transmit file data to host
  36. #define ST_TX_ACK   0x20    // Transmit ACK 0xFF to host after every 8 packets
  37. #define ST_ERROR    0x80    // Error state
  38. //-----------------------------------------------------------------------------
  39. // Global Constants
  40. //-----------------------------------------------------------------------------
  41. sbit Led1 = P2^2;                      // LED='1' means ON
  42. sbit Led2 = P2^3;                      // blink to indicate data transmission
  43. //-----------------------------------------------------------------------------
  44. // Function Prototypes
  45. //-----------------------------------------------------------------------------
  46. void USB0_Enable (void);
  47. #endif                               
  48. //-----------------------------------------------------------------------------
  49. // End Of File
  50. //-----------------------------------------------------------------------------