TOSUN-Shanghai / TSMaster

A powerful open environment for automotive bus monitoring, simulation, testing, diagnostics, calibration and so on. It supports all kinds of mainstream hardware such as TOSUN, Vector, IXXAT, PEAK, Kvaser, Intrepidcs, ZLG, CANable, CandleLight, cantact and so on. Free for research and education purpose for some features.
http://www.tosunai.cn/
GNU Lesser General Public License v2.1
276 stars 43 forks source link

[System Variables] Add new data types #81

Closed totocaca123 closed 1 year ago

totocaca123 commented 1 year ago

Currently some data types are missing (boolean, uint8, sint8, uint16...). image

Missing data type enum

freshhope commented 1 year ago

This is because you can always use Int32 to replace sint8, boolean, and UInt32 to replace uint8 and uint16. The reason why we do not include boolean and sint8 is to simply. System variable's main focus is functionality.

totocaca123 commented 1 year ago

OK it seems logical (so I oversize my data and cast in script)