esp8266_core.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // #ifndef __ESP8266_CORE_H
  2. // #define __ESP8266_CORE_H
  3. // #include <stdint.h>
  4. // #ifdef __cplusplus
  5. // extern 'C'
  6. // {
  7. // #endif
  8. // #ifdef __ESP8266_CORE_H_GLOBAL
  9. // #define __ESP8266_CORE_H_EXTERN
  10. // #else
  11. // #define __ESP8266_CORE_H_EXTERN extern
  12. // #endif
  13. // /************************************************************************************************
  14. // * Version *
  15. // ************************************************************************************************/
  16. // /************************************************************************************************
  17. // * How to use *
  18. // ************************************************************************************************/
  19. // /************************************************************************************************
  20. // * Enable config *
  21. // ************************************************************************************************/
  22. // /************************************************************************************************
  23. // * Includes *
  24. // ************************************************************************************************/
  25. // /************************************************************************************************
  26. // * Defines *
  27. // ************************************************************************************************/
  28. // typedef struct
  29. // {
  30. // uint8_t is_used; // 0 未使用,1,使用
  31. // uint8_t *cmd;
  32. // uint8_t *ack;
  33. // uint32_t tick;
  34. // uint16_t wait_time;
  35. // int32_t (*p_func)(uint8_t *cmd, uint8_t *ack, uint16_t wait_time)
  36. // } esp8266_cmd_cache;
  37. // /************************************************************************************************
  38. // * Defines *
  39. // ************************************************************************************************/
  40. // #ifdef __cplusplus
  41. // };
  42. // #endif
  43. // #endif // __ESP8266_CORE_H