34 lines
635 B
C#
34 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Ble.Commands
|
|
{
|
|
public enum RowerCommand
|
|
{
|
|
JustRow = 1,
|
|
FixedDistance=2,
|
|
FixedTime = 3,
|
|
}
|
|
|
|
public enum CommandResponseCode
|
|
{
|
|
// Token: 0x04000FEB RID: 4075
|
|
Success = 1,
|
|
// Token: 0x04000FEC RID: 4076
|
|
NotSupported,
|
|
// Token: 0x04000FED RID: 4077
|
|
InvalidParameter,
|
|
// Token: 0x04000FEE RID: 4078
|
|
OperationFailed,
|
|
// Token: 0x04000FEF RID: 4079
|
|
UnexpectedResult,
|
|
// Token: 0x04000FF0 RID: 4080
|
|
TypeMismatch,
|
|
// Token: 0x04000FF1 RID: 4081
|
|
Expired
|
|
}
|
|
}
|