Spaces:
Running
Running
File size: 7,006 Bytes
efe2c71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
/**
* Shared Motor Communication Utilities
* Proven patterns from calibrate.ts for consistent motor communication
* Used by both calibration and teleoperation
*/
export interface MotorCommunicationPort {
write(data: Uint8Array): Promise<void>;
read(timeout?: number): Promise<Uint8Array>;
}
/**
* STS3215 Protocol Constants
* Single source of truth for all motor communication
*/
export const STS3215_PROTOCOL = {
// Register addresses
PRESENT_POSITION_ADDRESS: 56,
GOAL_POSITION_ADDRESS: 42,
HOMING_OFFSET_ADDRESS: 31,
MIN_POSITION_LIMIT_ADDRESS: 9,
MAX_POSITION_LIMIT_ADDRESS: 11,
// Protocol constants
RESOLUTION: 4096, // 12-bit resolution (0-4095)
SIGN_MAGNITUDE_BIT: 11, // Bit 11 is sign bit for Homing_Offset encoding
// Communication timing (proven from calibration)
WRITE_TO_READ_DELAY: 10,
RETRY_DELAY: 20,
INTER_MOTOR_DELAY: 10,
MAX_RETRIES: 3,
} as const;
/**
* Read single motor position with PROVEN retry logic
* Reuses exact patterns from calibrate.ts
*/
export async function readMotorPosition(
port: MotorCommunicationPort,
motorId: number
): Promise<number | null> {
try {
// Create Read Position packet using proven pattern
const packet = new Uint8Array([
0xff,
0xff, // Header
motorId, // Servo ID
0x04, // Length
0x02, // Instruction: READ_DATA
STS3215_PROTOCOL.PRESENT_POSITION_ADDRESS, // Present_Position register address
0x02, // Data length (2 bytes)
0x00, // Checksum placeholder
]);
const checksum =
~(
motorId +
0x04 +
0x02 +
STS3215_PROTOCOL.PRESENT_POSITION_ADDRESS +
0x02
) & 0xff;
packet[7] = checksum;
// PROVEN PATTERN: Professional Feetech communication with retry logic
let attempts = 0;
while (attempts < STS3215_PROTOCOL.MAX_RETRIES) {
attempts++;
// CRITICAL: Clear any remaining data in buffer first (from calibration lessons)
try {
await port.read(0); // Non-blocking read to clear buffer
} catch (e) {
// Expected - buffer was empty
}
// Write command with PROVEN timing
await port.write(packet);
// PROVEN TIMING: Arduino library uses careful timing - Web Serial needs more
await new Promise((resolve) =>
setTimeout(resolve, STS3215_PROTOCOL.WRITE_TO_READ_DELAY)
);
try {
const response = await port.read(150);
if (response.length >= 7) {
const id = response[2];
const error = response[4];
if (id === motorId && error === 0) {
const position = response[5] | (response[6] << 8);
return position;
} else if (id === motorId && error !== 0) {
// Motor error, retry
} else {
// Wrong response ID, retry
}
} else {
// Short response, retry
}
} catch (readError) {
// Read timeout, retry
}
// PROVEN TIMING: Professional timing between attempts
if (attempts < STS3215_PROTOCOL.MAX_RETRIES) {
await new Promise((resolve) =>
setTimeout(resolve, STS3215_PROTOCOL.RETRY_DELAY)
);
}
}
// If all attempts failed, return null
return null;
} catch (error) {
console.warn(`Failed to read motor ${motorId} position:`, error);
return null;
}
}
/**
* Read all motor positions with PROVEN patterns
* Exactly matches calibrate.ts readMotorPositions() function
*/
export async function readAllMotorPositions(
port: MotorCommunicationPort,
motorIds: number[]
): Promise<number[]> {
const motorPositions: number[] = [];
for (let i = 0; i < motorIds.length; i++) {
const motorId = motorIds[i];
const position = await readMotorPosition(port, motorId);
if (position !== null) {
motorPositions.push(position);
} else {
// Use fallback value for failed reads
const fallback = Math.floor((STS3215_PROTOCOL.RESOLUTION - 1) / 2);
motorPositions.push(fallback);
}
// PROVEN PATTERN: Professional inter-motor delay
await new Promise((resolve) =>
setTimeout(resolve, STS3215_PROTOCOL.INTER_MOTOR_DELAY)
);
}
return motorPositions;
}
/**
* Write motor position with error handling
*/
export async function writeMotorPosition(
port: MotorCommunicationPort,
motorId: number,
position: number
): Promise<void> {
// STS3215 Write Goal_Position packet
const packet = new Uint8Array([
0xff,
0xff, // Header
motorId, // Servo ID
0x05, // Length
0x03, // Instruction: WRITE_DATA
STS3215_PROTOCOL.GOAL_POSITION_ADDRESS, // Goal_Position register address
position & 0xff, // Position low byte
(position >> 8) & 0xff, // Position high byte
0x00, // Checksum placeholder
]);
// Calculate checksum
const checksum =
~(
motorId +
0x05 +
0x03 +
STS3215_PROTOCOL.GOAL_POSITION_ADDRESS +
(position & 0xff) +
((position >> 8) & 0xff)
) & 0xff;
packet[8] = checksum;
await port.write(packet);
}
/**
* Generic function to write a 2-byte value to a motor register
* Matches calibrate.ts writeMotorRegister() exactly
*/
export async function writeMotorRegister(
port: MotorCommunicationPort,
motorId: number,
registerAddress: number,
value: number
): Promise<void> {
// Create Write Register packet
const packet = new Uint8Array([
0xff,
0xff, // Header
motorId, // Servo ID
0x05, // Length
0x03, // Instruction: WRITE_DATA
registerAddress, // Register address
value & 0xff, // Data_L (low byte)
(value >> 8) & 0xff, // Data_H (high byte)
0x00, // Checksum placeholder
]);
// Calculate checksum
const checksum =
~(
motorId +
0x05 +
0x03 +
registerAddress +
(value & 0xff) +
((value >> 8) & 0xff)
) & 0xff;
packet[8] = checksum;
// Simple write then read like calibration
await port.write(packet);
// Wait for response (silent unless error)
try {
await port.read(200);
} catch (error) {
// Silent - response not required for successful operation
}
}
/**
* Sign-magnitude encoding functions (from calibrate.ts)
*/
export function encodeSignMagnitude(
value: number,
signBitIndex: number = STS3215_PROTOCOL.SIGN_MAGNITUDE_BIT
): number {
const maxMagnitude = (1 << signBitIndex) - 1;
const magnitude = Math.abs(value);
if (magnitude > maxMagnitude) {
throw new Error(
`Magnitude ${magnitude} exceeds ${maxMagnitude} (max for signBitIndex=${signBitIndex})`
);
}
const directionBit = value < 0 ? 1 : 0;
return (directionBit << signBitIndex) | magnitude;
}
export function decodeSignMagnitude(
encodedValue: number,
signBitIndex: number = STS3215_PROTOCOL.SIGN_MAGNITUDE_BIT
): number {
const signBit = (encodedValue >> signBitIndex) & 1;
const magnitude = encodedValue & ((1 << signBitIndex) - 1);
return signBit ? -magnitude : magnitude;
}
|