­

Basic Stream Setup Example

This example shows how bi-directional streams can be set up to share streaming serial data between the target and the host.

    Description

    This example shows how bi-directional streams can be set up to share streaming serial data between the target and the host.

    Click here to download complete Project FileClick here to download getting started Project File

    // Adding Function which receive data in its argument and 
    // transmit the same data through upstream in console window
    void DownStreamISR(char* str, int len)
    {
        WriteBuffer(hUpStreamISR, str, len);
    }