Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Feb 28, 2015
1 parent 831925b commit 8d6c4a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Modelica_DeviceDrivers/Communication/SerialPort.mo
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ within Modelica_DeviceDrivers.Communication;
class SerialPort "A driver for serial port communication."
extends ExternalObject;
encapsulated function constructor
"Creates an SerialPort instance with a given listening port."
"Creates a SerialPort instance with a given listening port."
import Modelica_DeviceDrivers.Communication.SerialPort;
input String deviceName "Serial port (/dev/ttyX)";
input Integer bufferSize=16*1024 "Size of receive buffer";
Expand Down
2 changes: 1 addition & 1 deletion Modelica_DeviceDrivers/Communication/UDPSocket.mo
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ within Modelica_DeviceDrivers.Communication;
class UDPSocket "A driver for UDP packet network communication."
extends ExternalObject;
encapsulated function constructor
"creates an UDPSocket instance with a given listening port."
"Creates a UDPSocket instance with a given listening port."
import Modelica_DeviceDrivers.Communication.UDPSocket;
input Integer port "listening port";
input Integer bufferSize=16*1024 "Size of receive buffer";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ double MDD_CANMessageFloatBitunpacking(void* p_cANMessage, int bitStartPosition)
*
* @deprecated Never tested. Almost Certainly buggy. Probably this functionality is never needed?
*
* Bit offset is counted in the direction of array layout. Assume an char a[2] vector with the following layout:
* Bit offset is counted in the direction of array layout. Assume a char a[2] vector with the following layout:
@verbatim
0 1
IIIIIIII IIIIIIII
Expand Down
2 changes: 1 addition & 1 deletion Modelica_DeviceDrivers/Resources/Include/MDDSoftingCAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# include "../src/include/CompatibilityDefs.h"
/* CAN LAYER 2 LIBRARY INCLUDE FILES */
# include "../thirdParty/softing/Can_def.h" /* dll import and export definitions */
# include "../thirdParty/softing/CANL2.H" /* definition of the API functions an the structures */
# include "../thirdParty/softing/CANL2.H" /* definition of the API functions and the structures */
# include "ModelicaUtilities.h"
# include "MDDCANMessage.h"
# include "MDDSerialPackager.h"
Expand Down
2 changes: 1 addition & 1 deletion Modelica_DeviceDrivers/Resources/Include/MDDUDPSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ int MDD_udpGetReceivedBytes(void * p_udp) {
}


/** Create an UDP socket.
/** Create a UDP socket.
* @todo Redesign in order to properly specify what kind of socket (receiving or sending)
* should be created and everything that can be checked once (e.g., validity of
* IP addresses) should be done here.
Expand Down

0 comments on commit 8d6c4a3

Please sign in to comment.