20230408_LBXJH_upperpc/piaoliufuzi_tcp_V1.2/gyroscope/gyroscope/BigOrLittle.cs

26 lines
464 B
C#

using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// whble
/// 2019年4月16日
/// </summary>
namespace gyroscope
{
/// <summary>
/// Make sure the Endian mode of the data
/// </summary>
public enum BigOrLittle
{
/// <summary>
/// BigEndian
/// </summary>
BigEndian = 0,
/// <summary>
/// LittleEndian
/// </summary>
LittleEndian = 1
}
}