Changeset 178


Ignore:
Timestamp:
Mar 28, 2016, 2:21:06 PM (8 years ago)
Author:
ertl-honda
Message:

ドキュメントの更新

Location:
rtos_arduino/trunk/arduino_lib/libraries/ESP8266_Arudino_AT
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rtos_arduino/trunk/arduino_lib/libraries/ESP8266_Arudino_AT/ESP8266.h

    r177 r178  
    489489
    490490    /**
    491      * 
     491     *  Rceive Buffer for each link.
    492492     */
    493493    ESP8266_RingBuffer rx_buffer[ESP8266_NUM_CONNECTION];
     
    501501
    502502    /*
    503      * Read all data in UART RX.
     503     * Read all data in UART RX and store to Rceive Buffer .
    504504     */
    505505    void rx_update(void);   
     
    573573
    574574    uint8_t wifi_status;
     575   
    575576    bool    mux_mode;
     577   
    576578    uint8_t connection_bitmap;
     579   
    577580    esp8266_connection_status connection_status[ESP8266_NUM_CONNECTION];
    578581
  • rtos_arduino/trunk/arduino_lib/libraries/ESP8266_Arudino_AT/README.md

    r143 r178  
    9898    void        begin(SoftwareSerial &uart, uint32_t baud = 115200); : Begin ESP8266.
    9999
    100     void        begin(SoftwareSerial &uart, uint32_t baud = 115200); : Begin ESP8266.
     100    void        begin(HardwareSerial &uart, uint32_t baud = 115200); : Begin ESP8266.
    101101
    102102    bool        send(String &str); : Send data based on TCP or UDP builded already in single mode.
     
    104104    bool        send(uint8_t mux_id, String &str); : Send data based on one of TCP or UDP builded already in multiple mode.
    105105
    106     int         dataAvailable(void); : Check data is available.
     106    int         isdataAvailable(uint8_t mux_id); : Check data is available in multiple mode.
     107
     108    int         isdataAvailable(void); : Check data is available in single mode.
     109
     110    int         isConnected(void); : Check connection is opend in single mode.
     111
     112    int         isConnected(uint8_t mux_id); : Check specific connection is opend in multiple mode.
     113
     114    int         getMuxCStatus(uint8_t *mux_id_ptn); : Get connection link status.
    107115
    108116# Mainboard Requires
Note: See TracChangeset for help on using the changeset viewer.