File size: 6,631 Bytes
efe2c71
5eb1bc0
6fa48c4
efe2c71
 
5eb1bc0
 
 
 
 
 
efe2c71
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
6fa48c4
efe2c71
 
6fa48c4
efe2c71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
 
 
 
5eb1bc0
efe2c71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6fa48c4
efe2c71
 
 
 
 
 
 
 
 
 
 
5eb1bc0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
efe2c71
5eb1bc0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
efe2c71
5eb1bc0
1a7b22d
5eb1bc0
1a7b22d
5eb1bc0
 
 
 
1a7b22d
5eb1bc0
 
 
efe2c71
 
 
 
5eb1bc0
1a7b22d
5eb1bc0
1a7b22d
5eb1bc0
 
 
 
1a7b22d
5eb1bc0
 
 
 
 
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
268
269
270
271
272
273
274
275
276
277
278
279
280
/**
 * Motor Communication Utilities
 * STS3215 motor reading and writing operations
 */

import { STS3215_PROTOCOL } from "./sts3215-protocol.js";

/**
 * Interface for motor communication port
 * Compatible with both WebSerialPortWrapper and RobotConnectionManager
 */
export interface MotorCommunicationPort {
  write(data: Uint8Array): Promise<void>;
  read(timeout?: number): Promise<Uint8Array>;
}

/**
 * Read single motor position with retry logic
 */
export async function readMotorPosition(
  port: MotorCommunicationPort,
  motorId: number
): Promise<number | null> {
  try {
    // Create Read Position packet
    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;

    // Retry communication with timeouts
    let attempts = 0;

    while (attempts < STS3215_PROTOCOL.MAX_RETRIES) {
      attempts++;

      // Clear any remaining data in buffer first
      try {
        await port.read(0); // Non-blocking read to clear buffer
      } catch (e) {
        // Expected - buffer was empty
      }

      // Write command
      await port.write(packet);

      // Wait for motor response
      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;
          }
        }
      } catch (readError) {
        // Read timeout, retry
      }

      // Wait between retry 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) {
    return null;
  }
}

/**
 * Read all motor positions
 */
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);
    }

    // Delay between motor reads
    await new Promise((resolve) =>
      setTimeout(resolve, STS3215_PROTOCOL.INTER_MOTOR_DELAY)
    );
  }

  return motorPositions;
}

/**
 * Write motor goal position
 */
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
 */
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;

  // Write register value
  await port.write(packet);

  // Wait for response (silent unless error)
  try {
    await port.read(200);
  } catch (error) {
    // Silent - response not required for successful operation
  }
}

/**
 * Lock a motor (motor will hold its position and resist movement)
 */
export async function lockMotor(
  port: MotorCommunicationPort,
  motorId: number
): Promise<void> {
  await writeMotorRegister(
    port,
    motorId,
    STS3215_PROTOCOL.TORQUE_ENABLE_ADDRESS,
    1
  );
  // Small delay for command processing
  await new Promise((resolve) =>
    setTimeout(resolve, STS3215_PROTOCOL.WRITE_TO_READ_DELAY)
  );
}

/**
 * Release a motor (motor can be moved freely by hand)
 */
export async function releaseMotor(
  port: MotorCommunicationPort,
  motorId: number
): Promise<void> {
  await writeMotorRegister(
    port,
    motorId,
    STS3215_PROTOCOL.TORQUE_ENABLE_ADDRESS,
    0
  );
  // Small delay for command processing
  await new Promise((resolve) =>
    setTimeout(resolve, STS3215_PROTOCOL.WRITE_TO_READ_DELAY)
  );
}

/**
 * Lock motors (motors will hold their positions - perfect after calibration)
 */
export async function lockMotors(
  port: MotorCommunicationPort,
  motorIds: number[]
): Promise<void> {
  for (const motorId of motorIds) {
    await lockMotor(port, motorId);
    // Small delay between motors
    await new Promise((resolve) =>
      setTimeout(resolve, STS3215_PROTOCOL.INTER_MOTOR_DELAY)
    );
  }
}

/**
 * Release motors (motors can be moved freely - perfect for calibration)
 */
export async function releaseMotors(
  port: MotorCommunicationPort,
  motorIds: number[]
): Promise<void> {
  for (const motorId of motorIds) {
    await releaseMotor(port, motorId);
    // Small delay between motors
    await new Promise((resolve) =>
      setTimeout(resolve, STS3215_PROTOCOL.INTER_MOTOR_DELAY)
    );
  }
}