You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added interface to get robot type: `robotType()`
13
14
- Added interface to get robot serial number: `robotSerialNumber()`
14
15
- Added interface to get robot ID: `robotID()`
16
+
- Add timestamp information to the default log handler.
15
17
16
18
### Changed
17
19
- Adjust the "timeout" value of "trajectory_socket" in `external_control.script`.
@@ -23,10 +25,15 @@
23
25
- Fix the issue where the error level was incorrect when parsing the 30001 robot error exception message.
24
26
- Fix the memory issue that occurs after receiving incomplete messages from 30001.
25
27
- Fix the issue where static resources in `TcpServer` are destructed prematurely.
26
-
-- Fixed the issue where the `EliteDriver::registerRobotExceptionCallback()` interface was not implemented.
28
+
- Fixed the issue where the `EliteDriver::registerRobotExceptionCallback()` interface was not implemented.
29
+
- Fix the crash issue during destruction.
27
30
28
31
### Deprecated
29
32
- Deprecated `DashboardClient::robot()` it will be removed in future versions. Please use `DashboardClient::robotType()` instead.
33
+
- Due to spelling errors, the following interfaces have been deprecated and will be removed in future versions. Please use the corresponding new interfaces:
Copy file name to clipboardExpand all lines: doc/UserGuide/en/Get-Robot-State.en.md
+30-1Lines changed: 30 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,36 @@ Call the relevant interfaces of the SDK to obtain the robot's joint angles and s
8
8
## Background
9
9
RTSI is a communication interface for Elite CS series robots, which can read and write robot I/O at a maximum frequency of 250Hz. The SDK provides two types of interfaces. The first is the basic RTSI interface (RtsiClientInterface), which can control every step of RTSI communication. The second interface encapsulates various robot data (RtsiIOInterface), such as joint angles, into functions that can be called directly.
10
10
11
-
The specific description of the RTSI protocol can be found in the RTSI documentation downloaded from the official website.
11
+
The specific description of the RTSI protocol can be found in the RTSI documentation downloaded from the official website. The following diagram briefly illustrates the workflow of the RTSI protocol.
0 commit comments