Skip to content

Commit

Permalink
changed version: 0.8.1; changed limit axis Z VGR 950->1100; changed P…
Browse files Browse the repository at this point in the history
…arkPos: SSC new pos, play sound if finished
  • Loading branch information
AlexanderSteiger committed Nov 29, 2019
1 parent b7d93aa commit 257d5f1
Show file tree
Hide file tree
Showing 20 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion TxtFactoryClient/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "spdlog/async.h"

// Version info
#define VERSION_HEX ((0<<16)|(8<<8)|(0<<0))
#define VERSION_HEX ((0<<16)|(8<<8)|(1<<0))
char TxtAppVer[32];

unsigned int DebugFlags;
Expand Down
2 changes: 1 addition & 1 deletion TxtFactoryMain/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ std::string sts_vgr;
std::string sts_sld;

// Version info
#define VERSION_HEX ((0<<16)|(8<<8)|(0<<0))
#define VERSION_HEX ((0<<16)|(8<<8)|(1<<0))
char TxtAppVer[32];

unsigned int DebugFlags;
Expand Down
7 changes: 5 additions & 2 deletions TxtParkPos/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#else
#error Set CLIENT_XXX define first!
#endif
#include "TxtSound.h"

#include "KeLibTxtDl.h" // TXT Lib
#include "FtShmem.h" // TXT Transfer Area
Expand All @@ -27,7 +28,7 @@ unsigned int DebugFlags;
FILE *DebugFile;

// Version info
#define VERSION_HEX ((0<<16)|(2<<8)|(0<<0))
#define VERSION_HEX ((0<<16)|(8<<8)|(1<<0))
char TxtAppVer[32];

FISH_X1_TRANSFER* pTArea = NULL;
Expand Down Expand Up @@ -134,10 +135,12 @@ int main(int argc, char* argv[])
ft::TxtPanTiltUnit ptu(&T);
ptu.init();
ptu.moveHome();
ptu.movePanCenter();
ptu.moveTiltPos(100);
#else
#error Set CLIENT_XXX define first!
#endif

ft::TxtSound::play(pTArea,1);
}
StopTxtDownloadProg();
}
Expand Down
2 changes: 1 addition & 1 deletion TxtSmartFactoryLib/doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = TxtSmartFactoryLib
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.8.0
PROJECT_NUMBER = 0.8.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
6 changes: 3 additions & 3 deletions TxtSmartFactoryLib/include/TxtPanTiltUnit.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ class TxtPanTiltUnit : public SubjectObserver {
void moveStepTiltUp();
void moveStepTiltDown();

bool movePanPos(uint16_t pPan);
bool moveTiltPos(uint16_t pTilt);

protected:
void configInputs(uint8_t ch);

Expand All @@ -149,9 +152,6 @@ class TxtPanTiltUnit : public SubjectObserver {
void moveTiltUp(uint16_t steps);
void moveTiltDown(uint16_t steps);

bool movePanPos(uint16_t pPan);
bool moveTiltPos(uint16_t pTilt);

TxtTransfer* pT;
bool stopAllReq;
/* status */
Expand Down
2 changes: 1 addition & 1 deletion TxtSmartFactoryLib/src/TxtVacuumGripperRobot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ TxtVacuumGripperRobot::TxtVacuumGripperRobot(TxtTransfer* pT, ft::TxtMqttFactory
calibPos(VGRCALIB_DSI), calibColor(ft::WP_TYPE_NONE),
axisX("VGR_X", pT, 0, 0, 1500),
axisY("VGR_Y", pT, 1, 1, 900),
axisZ("VGR_Z", pT, 2, 2, 950),
axisZ("VGR_Z", pT, 2, 2, 1100),
vgripper(pT, 6, 7), target(""), dps(pT, mqttclient),
reqQuit(false),
reqOrder(false), reqWP_order(),
Expand Down
Binary file modified bin/TxtFactoryHBW
Binary file not shown.
Binary file added bin/TxtFactoryHBW_Debug
Binary file not shown.
Binary file modified bin/TxtFactoryMPO
Binary file not shown.
Binary file added bin/TxtFactoryMPO_Debug
Binary file not shown.
Binary file modified bin/TxtFactoryMain.cloud
Binary file not shown.
Binary file added bin/TxtFactoryMain_Debug.cloud
Binary file not shown.
Binary file modified bin/TxtFactorySLD
Binary file not shown.
Binary file added bin/TxtFactorySLD_Debug
Binary file not shown.
Binary file modified bin/TxtFactoryVGR
Binary file not shown.
Binary file added bin/TxtFactoryVGR_Debug
Binary file not shown.
Binary file modified bin/TxtParkPosHBW
Binary file not shown.
Binary file modified bin/TxtParkPosMPO
Binary file not shown.
Binary file modified bin/TxtParkPosSSC
Binary file not shown.
Binary file modified bin/TxtParkPosVGR
Binary file not shown.

0 comments on commit 257d5f1

Please sign in to comment.