Changes for page LSS Firmware

Last modified by Eric Nantel on 2024/07/12 11:24

From version < 3.17 >
edited by RB1
on 2019/11/22 11:53
To version < 13.1 >
edited by Eric Nantel
on 2021/09/20 08:11
< >
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -xwiki:XWiki.RB1
1 +xwiki:XWiki.ENantel
Hidden
... ... @@ -1,1 +1,1 @@
1 -true
1 +false
Content
... ... @@ -5,8 +5,7 @@
5 5  
6 6  = Firmware Versions =
7 7  
8 -This section contains details about every official release of the LSS firmware. This includes information such as when the update was released, what new features/fixes/etc. it provides and any details about known issues or other warnings. If you are unsure how to proceed to update your LSS, please see [[this guide>>doc:lynxmotion-smart-servo.lss-configuration-software.lss-config-firmware-update.WebHome]].
9 -Note: the date format used is yyyy-mm-dd.
8 +This section contains details about official firmware releases for the the Lynxmotion Smart Servos (LSS). Information includes release date (yyyy-mm-dd), and which new features / fixes / etc. were included. It also provides and any details about known issues or other warnings. If you are unsure how to proceed to update your LSS, please see [[this guide>>doc:lynxmotion-smart-servo.lss-configuration-software.lss-config-firmware-update.WebHome]].
10 10  
11 11  == Version 367 ==
12 12  
... ... @@ -13,7 +13,7 @@
13 13  Released 2019-10-07
14 14  
15 15  * Fixes:
16 -** Minor improvements to handling low-speed motion control. More updates coming soon on this front!
15 +** Minor improvements to handling of low-speed motion control. More updates coming soon on this front!
17 17  ** Encoder issue that would sometimes cause random fast motion, ignoring speed restrictions.
18 18  
19 19  == Version 365 ==
... ... @@ -37,3 +37,43 @@
37 37  * Fixes:
38 38  ** Improved LED patterns for clarity.
39 39  ** ID is now kept during a firmware update.
39 +
40 +== Version 369 (EXPERIMENTAL) ==
41 +
42 +Released 2021-06-18
43 +
44 +* Fixed race condition in communication resulting in occasional corrupt responses. Most prevelant but not limited to the QN command.
45 +* Support for baud rates higher than 250k. We've certified 9600, 19200, 38400, 57600, 230400, 250000, 460800 and 500000 baud but 750000 and 921600 have also passed our testing. Only these exact baud rates are recognized by the servo.
46 +* Improvement in query response time of around 15% at 250k baud and much greater now that higher baud rates can be used.
47 +
48 +== Version 370 (EXPERIMENTAL) ==
49 +
50 +Released 2021-09-20
51 +This update is a major overhaul to the communication sub-system. Expect major performance improvements and bugs! ;)
52 +
53 +* Backwards compatibility is a priority. This firmware shouldn't affect existing code, please report any issues. Include a reproductible command sequence if possible.
54 +* Allows multiple commands to be sent and received as a group
55 +* Group commands can include multiple servos without bus conflict/contention
56 +** Ex. #0QD#5QD#10QD\r - queries 3 servos at once for position
57 +** #0QD0QC0#5QD0QC0 - queries 2 servos at once for position and current (milliamps). 0 required to separate commands QD and QC
58 +* Increase in supported baud rates up to 921k (adds 500k, 750k, 921.6k) with 2 and 3Mbit coming soon
59 +* Auto baud rate (ABR) can be enabled (off by default):
60 +** Ex. #254ABR1 - Enable baudrate detection on first byte received after power-up.
61 +** #254ABR2,30 - Enable baudrate detection on first byte received after power-up. If no data for 30 seconds enable detection again on next byte.
62 +** Warning: ABR doesn't work well with LSS Config at the moment, updated LSS Config coming soon.
63 +* Using #254QID120 can scan the entire bus at once for servos without conflict.
64 +** Servos will use a simple formula to delay their response: 200usec + <id> * 120usec, where <id> is their servo ID 0 to 253.
65 +** The first parameter (ex. 120) indicates how many milliseconds to delay between IDs and 120usec is a safe number.
66 +** Warning: #254QID with no parameter will still conflict to remain backward compatibility with LSS Config.
67 +* Configure a slot# for each servo and using (ex.) #254QD can query all servos at once without conflict
68 +** Ex. We have 3 servos at ID 0, 5, and 10. We want to configure them to be slots 0, 1, and 2 respectively.
69 +*** #254SLOTCOUNT3\r - configure 3 slots on our bus
70 +*** #0SLOT0\r - we don't really have to do this one, servos default to slot 0 on power-up
71 +*** #5SLOT1\r - Servo ID5 to slot 1
72 +*** #10SLOT2\r - Servo ID10 to slot 2
73 +*** #254QD\r - Query all servos for position
74 +*** #254QD0QC0\r - Query all servos for position and current (milliamps)
75 +** Note: You only need to configure slots once on power-up, #254<cmd> will offset all servo replies based on slot# after this is set.
76 +** Note: Why not just use servo ID as slot#? Many LSS bus setups are not using sequential IDs so it's more efficient to assign slot# then expect everyone to change their robot's logical servo IDs to be sequential.
77 +* Fixed memory leak in MMD command
78 +* General firmware cleanup & improvements
Copyright RobotShop 2018