MitLib v3.0.0.11 (VS10)

main v3.0.0.11
Jenkins 10 years ago
parent 6b319b3a51
commit e18960cf47

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -995,8 +995,8 @@ VS_VERSION_INFO$(VERSION_CONTROL) VERSIONINFO
#else
VS_VERSION_INFO VERSIONINFO
#endif
FILEVERSION 3,0,0,10
PRODUCTVERSION 3,0,0,10
FILEVERSION 3,0,0,11
PRODUCTVERSION 3,0,0,11
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -1014,12 +1014,12 @@ BEGIN
VALUE "Comments", "1. Added Cleanup After Delete Package during deleting of package for application to do any other clean up.\r\n"
VALUE "CompanyName", "MIT "
VALUE "FileDescription", "GuiDLL"
VALUE "FileVersion", "3.0.0.10\0"
VALUE "FileVersion", "3.0.0.11\0"
VALUE "InternalName", "GuiDLL"
VALUE "LegalCopyright", "Copyright ? 2015"
VALUE "OriginalFilename", "GuiDLL.dll"
VALUE "ProductName", "MIT GuiDLL"
VALUE "ProductVersion", "3.0.0.10\0"
VALUE "ProductVersion", "3.0.0.11\0"
END
END
BLOCK "VarFileInfo"

@ -138,6 +138,7 @@ enum HOMING_METHOD
HOME_INDEX,
HOME_SENSOR_INDEX,
HOME_BY_LIMIT,
HOME_BY_LIMIT_THEN_INDEX = 27,
};
// motor profile data structure

@ -250,6 +250,9 @@ public:
// virtual method to do homing by Home Sensor
virtual BOOL HomeBySensor();
// virtual method by limit then index
virtual BOOL HomeByLimitThenIndex();
// virtual method to move absolute
int MoveAbs(double dPosition, int nPos = -1, int nMode = 0);
virtual bool AbsoluteMove(double dPosition, int nMode, PROFILE_CURVE curve) = 0;

@ -65,6 +65,9 @@ public:
// method to do homing by Home Sensor
BOOL HomeBySensor() override;
// method to home by home mode 27: (EL On Then reverse to count EZ number and reset counter)
BOOL HomeByLimitThenIndex() override;
// method to move absolute
bool AbsoluteMove(double dPosition, int nMode, PROFILE_CURVE curve) override;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -33,7 +33,7 @@ public:
bool IsOnlineLocal();
bool IsSpoolActive();
bool IsConnectWithSecsGem(); // check for connection between handler and Ti secs gem
bool m_bDataComplete;
bool m_bDataComplete;
std::string m_RcvBuff;
void OnReceive(const char *buf, int size);
void OnDisconnect(int errorCode);

@ -110,8 +110,8 @@ VS_VERSION_INFO$(VERSION_CONTROL) VERSIONINFO
#else
VS_VERSION_INFO VERSIONINFO
#endif
FILEVERSION 3,0,0,10
PRODUCTVERSION 3,0,0,10
FILEVERSION 3,0,0,11
PRODUCTVERSION 3,0,0,11
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x21L
@ -129,15 +129,15 @@ BEGIN
VALUE "Comments", "1. Reduce opening and closing of MitLanguage.mdb\0"
VALUE "CompanyName", "MIT \0"
VALUE "FileDescription", "Utility\0"
VALUE "FileVersion", "3.0.0.10\0"
VALUE "FileVersion", "3.0.0.11\0"
VALUE "InternalName", "Utility\0"
VALUE "LegalCopyright", "Copyright © 2015\0"
VALUE "LegalTrademarks", " \0"
VALUE "OriginalFilename", "Utility.dll\0"
VALUE "PrivateBuild", " \0"
VALUE "ProductName", "MIT Utility\0"
VALUE "ProductVersion", "3.0.0.10\0"
VALUE "SpecialBuild", "mitlib-release-3-10\0"
VALUE "ProductVersion", "3.0.0.11\0"
VALUE "SpecialBuild", "mitlib-release-3-11\0"
END
END
BLOCK "VarFileInfo"

@ -25,6 +25,8 @@ public:
CMaintMsg();
virtual ~CMaintMsg();
static CMutex m_MaintMsgMutex;
private:
static CString m_csMaintMsg;
};

@ -72,8 +72,8 @@ VS_VERSION_INFO$(VERSION_CONTROL) VERSIONINFO
#else
VS_VERSION_INFO VERSIONINFO
#endif
FILEVERSION 3,0,0,10
PRODUCTVERSION 3,0,0,10
FILEVERSION 3,0,0,11
PRODUCTVERSION 3,0,0,11
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -91,15 +91,15 @@ BEGIN
VALUE "Comments", "1. Do not process clear warning if warning did not exist\r\n2. Do not process warning if already process\r\n3. Clear run module warning when end of lot completed\0"
VALUE "CompanyName", "MIT \0"
VALUE "FileDescription", "mcctrdll\0"
VALUE "FileVersion", "3.0.0.10\0"
VALUE "FileVersion", "3.0.0.11\0"
VALUE "InternalName", "mcctrdll\0"
VALUE "LegalCopyright", "Copyright © 2015\0"
VALUE "LegalTrademarks", " \0"
VALUE "OriginalFilename", "mcctrdll.dll\0"
VALUE "PrivateBuild", " \0"
VALUE "ProductName", "MIT mcctrdll\0"
VALUE "ProductVersion", "3.0.0.10\0"
VALUE "SpecialBuild", "mitlib-release-3-10\0"
VALUE "ProductVersion", "3.0.0.11\0"
VALUE "SpecialBuild", "mitlib-release-3-11\0"
END
END
BLOCK "VarFileInfo"

Loading…
Cancel
Save