Changes for page LSS Firmware
Last modified by Eric Nantel on 2024/07/12 11:24
Change comment: There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -xwiki:XWiki. ENantel1 +xwiki:XWiki.CBenson - Content
-
... ... @@ -5,17 +5,8 @@ 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 -{{showhide showmessage="Version 367 - Show details" hidemessage="Version 367 - Hide details"}} 12 -Released 2019-10-07 13 - 14 -Fixes: 15 -Minor improvements to handling of low-speed motion control. More updates coming soon on this front! 16 -Encoder issue that would sometimes cause random fast motion, ignoring speed restrictions. 17 -{{/showhide}} 18 - 19 19 == Version 367 == 20 20 21 21 Released 2019-10-07 ... ... @@ -37,7 +37,8 @@ 37 37 38 38 Released 2019-05-01 39 39 40 -* Initial production version (first official release). 31 +Initial production version (first official release) 32 + 41 41 * New commands: 42 42 ** CLB/QLB to control the blinking of the RGB LED during various phases of motion. 43 43 * New features: ... ... @@ -45,3 +45,63 @@ 45 45 * Fixes: 46 46 ** Improved LED patterns for clarity. 47 47 ** ID is now kept during a firmware update. 40 + 41 +== Version 368 == 42 + 43 +Released 2020-04-07 44 + 45 +Many bug fixers and new features! 46 + 47 +* New features: 48 +** QF now reports more details on version number (QF, QF1, QF2, QF3) 49 +** Maximum motor duty cycle can be controlled using MMD, QMMD (min25%, max100% = 1023). 50 +*** Can set it asymmetrical by passing 2 values separated by a comma (pos limit, neg limit). 51 +** Motion filter was added for EM0. 52 +*** Can be controlled with FPC, CFPC, QFPC. 53 +** IPMS system was added for EM0. 54 +*** Controlled with IPE and QIPE 55 + 56 +== Version 369 (EXP) == 57 + 58 +Released 2021-06-18 59 + 60 +* New features 61 +** Support for baud rates higher than 250k. 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. 62 +** Improvement in query response time of around 15% at 250k baud and much greater now that higher baud rates can be used. 63 +* Fixes 64 +** Fixed race condition in communication resulting in occasional corrupt responses. Most prevelant but not limited to the QN command. 65 + 66 +== Version 370 (EXP) == 67 + 68 +Released 2021-09-20 69 + 70 +Major overhaul to the communication sub-system. Expect major performance improvements and bugs! Backwards compatibility is a priority. This firmware shouldn't affect existing code, please report any issues and include a reproductible command sequence if possible. 71 + 72 +* New features 73 +** Group commands: Allows multiple commands to be sent and received as a group and can include multiple servos without bus conflict / contention 74 +*** #0QD#5QD#10QD\r - As an example, this single command queries three servos for their respective positions 75 +*** #0QD0QC0#5QD0QC0 - This queries two servos for their position and current (milliamps). Note: 0 is required to separate commands QD and QC 76 +** **A**uto **B**aud **R**ate (ABR) which can be enabled (off by default): 77 +*** #254ABR1 - Enable baud rate detection on first byte received after power-up. 78 +*** #254ABR2,30 - Enable baud rate detection on first byte received after power-up. If no data for 30 seconds enable detection again on next byte. 79 +*** Warning: ABR doesn't work well with LSS Config at the moment 80 +** Delayed & ordered query response. 81 +*** #254QID120 - For example, this command can scan the entire bus at once for servos without conflict. 82 +*** Servos use a simple formula to delay their response: 200usec + <id> * 120usec, where <id> is their servo ID 0 to 253. 83 +*** The first parameter (ex. 120) indicates how many milliseconds to delay between IDs and 120usec is a safe number. 84 +*** Warning: #254QID with no parameter will still conflict to remain backward compatible with the LSS Config software 85 +** Configure a **SLOT** # for each servo and using (ex.) 86 +*** #254QD - An example of how all servos can be queried at once without conflict 87 +*** Ex. Three servos with ID 0, 5, and 10 and want to configure them to be slots 0, 1, and 2 respectively: 88 +**** #254SLOTCOUNT3\r - configures 3 slots on the bus 89 +**** #0SLOT0\r - Don't really have to do this one, servos default to slot 0 on power-up 90 +**** #5SLOT1\r - Servo ID5 to slot 1 91 +**** #10SLOT2\r - Servo ID10 to slot 2 92 +**** #254QD\r - Query all servos for position 93 +**** #254QD0QC0\r - Query all servos for position and current (milliamps) 94 +*** 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. 95 +*** 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. 96 +* Fixes 97 +** Increase in supported baud rates up to 921k (adds 500k, 750k, 921.6k) 98 +** Fixed memory leak in MMD command 99 +** General firmware cleanup & improvements