Ignore:
Timestamp:
Dec 5, 2015, 7:18:45 PM (8 years ago)
Author:
ertl-honda
Message:

Milkcocoa用に更新

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rtos_arduino/trunk/arduino_lib/libraries/ESP8266/README.md

    r136 r143  
    11@mainpage
    22
    3 # WeeESP8266
     3# WeeESP8266 updated for Milkcoca SDK
    44
    55An ESP8266 library for Arduino providing an easy-to-use way to manipulate ESP8266.
     6Updated to support Milkcoca SDK<>, M0 and TOPPERS/R2CA.
    67
    78# Source
    8 
    9 Source can be download at <https://github.com/itead/ITEADLIB_Arduino_WeeESP8266>.
     9Source can be download at <>.
     10Original source can be download at <https://github.com/itead/ITEADLIB_Arduino_WeeESP8266>.
    1011
    1112You can clone it by:
     
    9394    uint32_t    recv (uint8_t *coming_mux_id, uint8_t *buffer, uint32_t buffer_size, uint32_t timeout=1000) : Receive data from all of TCP or UDP builded already in multiple mode.
    9495
     96# Added API List
     97
     98    void        begin(SoftwareSerial &uart, uint32_t baud = 115200); : Begin ESP8266.
     99
     100    void        begin(SoftwareSerial &uart, uint32_t baud = 115200); : Begin ESP8266.
     101
     102    bool        send(String &str); : Send data based on TCP or UDP builded already in single mode.
     103
     104    bool        send(uint8_t mux_id, String &str); : Send data based on one of TCP or UDP builded already in multiple mode.
     105
     106    int         dataAvailable(void); : Check data is available.
    95107
    96108# Mainboard Requires
     
    103115  - Arduino UNO and its derivatives
    104116  - Arduino MEGA and its derivatives
     117  - Arduino M0 and its derivatives
    105118  - [Iteaduino UNO](http://imall.iteadstudio.com/im130312001.html)
    106119  - [WBoard Pro](http://imall.iteadstudio.com/im141125005.html)
     
    165178defined in HardwareSerial.h is too small.
    166179
     180UNO or MEGA or WBoard Pro
    167181Open the file from `\arduino\hardware\arduino\avr\cores\arduino\HardwareSerial.h`.
    168 See the follow line in the HardwareSerial.h file.
     182
     183M0
     184Open the file from `\arduino\hardware\arduino\avr\cores\arduino\RingBuffer.h`.
     185See the follow line in the file.
    169186
    170187    #define SERIAL_BUFFER_SIZE 64
Note: See TracChangeset for help on using the changeset viewer.