Changeset 709
- Timestamp:
- 07/17/09 18:20:14 (4 years ago)
- Location:
- branches/version-3.00
- Files:
-
- 2 modified
-
doc/release.html (modified) (4 diffs)
-
root/RELEASE (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-3.00/doc/release.html
r703 r709 14 14 <li><b>New features:</b></li> 15 15 <ul> 16 <li>Class <code>NXTMotor</code> (formerly known as <code>NXTmotor</code>) now has new propert <code>ActionAtTachoLimit</code> (use instead of <code>BrakeAtTachoLimit</code>)</li>16 <li>Class <code>NXTMotor</code> (formerly known as <code>NXTmotor</code>) now has new property <code>ActionAtTachoLimit</code> (use instead of <code>BrakeAtTachoLimit</code>)</li> 17 17 <li>New function <code>DirectMotorCommand</code> (usage and syntax identical to passing all parameters at once to removed function <code>SendMotorSettings</code>)</li> 18 18 <li>New optional argument <code>'MotorControlFilename'</code> for functions <code>COM_OpenNXT</code> and <code>COM_OpenNXTEx</code>, followed by a custom filename to override the default setting or an empty string to disable launching of the embedded program</li> … … 24 24 <li>Moved classic motor commands to private folder (deprecated): 25 25 <code>SetMotor, GetMotor, SpeedRegulation, SyncToMotor, SetAngleLimit, SetTurnRatio, SetRampMode, SetMemoryCount, GetMemoryCount</code></li> 26 <li> Old class <code>NXTmotor</code>'s property <code>BrakeAtTachoLimit</code> has been removed (use <code>ActionAtTachoLimit</code> now), class has been renamed to <code>NXTMotor</code></li>27 <li> Old class <code>NXTmotor</code>'s property <code>TurnRatio</code> has been removed</li>26 <li>Removed old class <code>NXTmotor</code>'s property <code>BrakeAtTachoLimit</code> (use <code>ActionAtTachoLimit</code> now) 27 <li>Removed old class <code>NXTmotor</code>'s property <code>TurnRatio</code></li> 28 28 <li>Removed optional argument <code>'check'</code> from <code>COM_OpenNXT</code> and <code>COM_OpenNXTEx</code> (checking is implicitely done every time now) 29 29 </ul> … … 33 33 <li>Improved <code>COM_ReadI2C</code> (now detects if a digital sensor was not opened properly)</li> 34 34 <li>Return-structs of <code>NXT_GetOutputState</code> and <code>NXT_GetInputValues</code> now contain double datatypes in all fields (conversion from uint8 for certain fields is not necessary anymore)</li> 35 <li>Slightly improved warnings / error-checking in code>COM_OpenNXT</code> and <code>COM_OpenNXTEx</code> 36 <li>Embedded NXC program for motor control has been renamed to MotorControl12.nxc (compiles to MotorControl12.rxe), current version 1.2 was not changed. Using LEGO MINDSTORMS NXT Firmware 1.26 or better is strongly recommended!</li> 35 <li>Slightly improved warnings / error-checking in <code>COM_OpenNXT</code> and <code>COM_OpenNXTEx</code> 36 <li>Renamend class <code>NXTmotor</code> to <code>NXTMotor</code> (for consistency reasons and to underline new interface)</li> 37 <li>Renamed embedded NXC program for motor control to MotorControl12.nxc (compiles to MotorControl12.rxe), current version 1.2 was not changed. Using LEGO MINDSTORMS NXT Firmware 1.26 or better is strongly recommended!</li> 37 38 <li>Minor documentation updates</li> 38 39 </ul> … … 43 44 <li><b>Known bugs and limitations:</b></li> 44 45 <ul> 45 <li>This release has BETAstatus, so certain features might not be stable, documentation might be outdated in some places</li>46 <li>This release has <i>beta</i> status, so certain features might not be stable, documentation might be outdated in some places</li> 46 47 <li>New system requirements: MATLAB 7.7 (2008b) 47 48 <li>The toolbox programs <code>ToolboxTest</code> and <code>ToolboxBenchmark</code> are not up to date yet and are hence not included in this release. -
branches/version-3.00/root/RELEASE
r703 r709 2 2 3 3 * New features: 4 o Class NXTMotor (formerly known as NXTmotor) now has new propert ActionAtTachoLimit (use instead of BrakeAtTachoLimit)4 o Class NXTMotor (formerly known as NXTmotor) now has new property ActionAtTachoLimit (use instead of BrakeAtTachoLimit) 5 5 o New function DirectMotorCommand (usage and syntax identical to passing all parameters at once to removed function SendMotorSettings) 6 6 o New optional argument 'MotorControlFilename' for functions COM_OpenNXT and COM_OpenNXTEx, followed by a custom filename to override the default setting or an empty string to disable launching of the embedded program … … 9 9 o Removed classic motor commands SendMotorSettings, GetMotorSettings, ResetMotorAngle, WaitForMotor, MotorRotateAbs 10 10 o Moved classic motor commands to private folder (deprecated): SetMotor, GetMotor, SpeedRegulation, SyncToMotor, SetAngleLimit, SetTurnRatio, SetRampMode, SetMemoryCount, GetMemoryCount 11 o Old class NXTmotor's property BrakeAtTachoLimit has been removed (use ActionAtTachoLimit now), class has been renamed to NXTMotor12 o Old class NXTmotor's property TurnRatio has been removed11 o Removed old class NXTmotor's property BrakeAtTachoLimit (use ActionAtTachoLimit now) 12 o Removed old class NXTmotor's property TurnRatio 13 13 o Removed optional argument 'check' from COM_OpenNXT and COM_OpenNXTEx (checking is implicitely done every time now) 14 14 * Improvements / Changes: … … 16 16 o Improved COM_ReadI2C (now detects if a digital sensor was not opened properly) 17 17 o Return-structs of NXT_GetOutputState and NXT_GetInputValues now contain double datatypes in all fields (conversion from uint8 for certain fields is not necessary anymore) 18 o Slightly improved warnings / error-checking in code>COM_OpenNXT and COM_OpenNXTEx 19 o Embedded NXC program for motor control has been renamed to MotorControl12.nxc (compiles to MotorControl12.rxe), current version 1.2 was not changed. Using LEGO MINDSTORMS NXT Firmware 1.26 or better is strongly recommended! 18 o Slightly improved warnings / error-checking in COM_OpenNXT and COM_OpenNXTEx 19 o Renamend class NXTmotor to NXTMotor (for consistency reasons and to underline new interface) 20 o Renamed embedded NXC program for motor control to MotorControl12.nxc (compiles to MotorControl12.rxe), current version 1.2 was not changed. Using LEGO MINDSTORMS NXT Firmware 1.26 or better is strongly recommended! 20 21 o Minor documentation updates 21 22 * Bugfixes: 22 23 o Fixed instabilities in COM_OpenNXT / COM_OpenNXTEx on Linux (due to automatic Bluetooth connections) by removing this feature 23 24 * Known bugs and limitations: 24 o This release has BETAstatus, so certain features might not be stable, documentation might be outdated in some places25 o This release has beta status, so certain features might not be stable, documentation might be outdated in some places 25 26 o New system requirements: MATLAB 7.7 (2008b) 26 27 o The toolbox programs ToolboxTest and ToolboxBenchmark are not up to date yet and are hence not included in this release.
