diff options
author | Brian Cully <bjc@kublai.com> | 2022-10-27 16:03:30 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-10-27 16:13:41 -0400 |
commit | d636107975ff00a0990eb257d2354b757d073be4 (patch) | |
tree | 8b623ea9c03f35b8a0dd50f738cc3a0ffb0a94e7 /src | |
parent | 8ae65e862b886e6151ee4424d0fe1d16f7b46830 (diff) | |
download | luchie-d636107975ff00a0990eb257d2354b757d073be4.tar.gz luchie-d636107975ff00a0990eb257d2354b757d073be4.zip |
cirque: update rap command names from data sheet
Diffstat (limited to 'src')
-rw-r--r-- | src/cirque.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cirque.rs b/src/cirque.rs index 53c9dde..99de287 100644 --- a/src/cirque.rs +++ b/src/cirque.rs @@ -48,8 +48,8 @@ enum RAPAddress { ZIdle = 0x0a, ZScaler = 0x0b, SleepInterval = 0x0c, - SleepDelay = 0x0d, - Reserved0 = 0x0e, + SleepTimer = 0x0d, + DynamicEMIAdjustThreshold = 0x0e, Reserved1 = 0x0f, Reserved2 = 0x10, Reserved3 = 0x11, @@ -59,13 +59,13 @@ enum RAPAddress { PacketByte3 = 0x15, PacketByte4 = 0x16, PacketByte5 = 0x17, - Reserved4 = 0x18, - Reserved5 = 0x19, - Reserved6 = 0x1a, - ERAValue = 0x1b, - ERAHighByte = 0x1c, - ERALowByte = 0x1d, - ERAControl = 0x1e, + PortAGPIOControl = 0x18, + PortAGPIOData = 0x19, + PortBGPIOControlAndData = 0x1a, + ExtendedRegisterAccessValue = 0x1b, + ExtendedRegisterAccessHigh = 0x1c, + ExtendedRegisterAccessLow = 0x1d, + ExtendedRegisterAccessControl = 0x1e, ProductID = 0x1f, } |