Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 407 Bytes

Readme.md

File metadata and controls

16 lines (14 loc) · 407 Bytes

CSI Lib

This .NET library can be used to parse message coming from the Atheros CSI Tool. Example code:

// Default Buffer size
var bufferSize = 4096;
var reader = new CSIReader("/dev/CSI_dev", bufferSize);
reader.OnNewPacket += (sender, packet) =>
{
    // Packet contains CSI data as well as some metadata
    HandleNewPacket(packet);
};

reader.StartReading();