1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // #ifndef __ESP8266_CORE_H
- // #define __ESP8266_CORE_H
- // #include <stdint.h>
- // #ifdef __cplusplus
- // extern 'C'
- // {
- // #endif
- // #ifdef __ESP8266_CORE_H_GLOBAL
- // #define __ESP8266_CORE_H_EXTERN
- // #else
- // #define __ESP8266_CORE_H_EXTERN extern
- // #endif
- // /************************************************************************************************
- // * Version *
- // ************************************************************************************************/
- // /************************************************************************************************
- // * How to use *
- // ************************************************************************************************/
- // /************************************************************************************************
- // * Enable config *
- // ************************************************************************************************/
- // /************************************************************************************************
- // * Includes *
- // ************************************************************************************************/
- // /************************************************************************************************
- // * Defines *
- // ************************************************************************************************/
- // typedef struct
- // {
- // uint8_t is_used; // 0 未使用,1,使用
- // uint8_t *cmd;
- // uint8_t *ack;
- // uint32_t tick;
- // uint16_t wait_time;
- // int32_t (*p_func)(uint8_t *cmd, uint8_t *ack, uint16_t wait_time)
- // } esp8266_cmd_cache;
- // /************************************************************************************************
- // * Defines *
- // ************************************************************************************************/
- // #ifdef __cplusplus
- // };
- // #endif
- // #endif // __ESP8266_CORE_H
|