-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serial port data unknown #348
Comments
As mentioned in #350 (comment) I'm not very knowledgeable in the serial port intricacies. I agree that the settings belong into the documentation and ideally should be the same on Windows and Linux :-). For the time being one needs to look into the C code external object constructors to figure out the configuration details (and I don't claim understanding everything in detail). In the external object constructor for Windows one finds Modelica_DeviceDrivers/Modelica_DeviceDrivers/Resources/Include/MDDSerialPort.h Lines 202 to 212 in 8267f35
and Modelica_DeviceDrivers/Modelica_DeviceDrivers/Resources/Include/MDDSerialPort.h Lines 221 to 228 in 8267f35
|
After I opened this ticket I successfully exchanged info between teraterm and OM via Modelica-DeviceDrivers+serial port successfully. To do this, I left Teraterm with the default setting, i.e. 8N1 (Parity none, o data bits, 1 stop bit) So, this strongly suggests that this, 8N1, is the setup of serial port of Modelica_DeviceDrivers. Now I read on your message
which confirms the assumption (moreover, I don't believe that the two ports can dialogue with unmatched settings) |
I would like to use Modelica_DeviceDrivers to send data through a serial port.
I have two PCs connected through a serial cable and can transmit and receive text through a terminal app (I use Tera Term).
When I try modelica, instead, I receive unrecognised stuff. I just I send "Hello world!" through AddString (picture below).
I think the first thing to check is the serial data:
While parity is under Modelica control, the other parameters are not. This is not bad per se. What is bad is that I don't know the values used by Modelica for them, and therefore cannot set the receiving PC to the right setting.
Can someone tell to me what values for the above communication parameters are used by SerialPortSend?
The text was updated successfully, but these errors were encountered: