mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-18 13:44:09 +00:00
Make SlipFrame constants public
This commit is contained in:
@@ -4,10 +4,10 @@ namespace SharpOSC
|
|||||||
{
|
{
|
||||||
public static class SlipFrame
|
public static class SlipFrame
|
||||||
{
|
{
|
||||||
static readonly byte END = 0xc0;
|
public static readonly byte END = 0xc0;
|
||||||
static readonly byte ESC = 0xdb;
|
public static readonly byte ESC = 0xdb;
|
||||||
static readonly byte ESC_END = 0xDC;
|
public static readonly byte ESC_END = 0xDC;
|
||||||
static readonly byte ESC_ESC = 0xDD;
|
public static readonly byte ESC_ESC = 0xDD;
|
||||||
|
|
||||||
public static List<byte[]> Decode(byte[] data)
|
public static List<byte[]> Decode(byte[] data)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user