Updated to turboPmac 1.4 and hid symbols
This commit is contained in:
2
Makefile
2
Makefile
@@ -42,4 +42,4 @@ DBDS += turboPmac/sinqMotor/src/sinqMotor.dbd
|
||||
DBDS += turboPmac/src/turboPmac.dbd
|
||||
DBDS += src/seleneGuide.dbd
|
||||
|
||||
USR_CFLAGS += -Wall -Wextra -Weffc++ -Wunused-result -Wextra -Werror # -Wpedantic // Does not work because EPICS macros trigger warnings
|
||||
USR_CFLAGS += -Wall -Wextra -Weffc++ -Wunused-result -Wextra -Werror -fvisibility=hidden# -Wpedantic // Does not work because EPICS macros trigger warnings
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
// Forward declaration of the seleneLiftAxis class to resolve the cyclic
|
||||
// dependency between the seleneLiftAxis and the seleneAngleAxis .h-file.
|
||||
// See https://en.cppreference.com/w/cpp/language/class.
|
||||
class seleneLiftAxis;
|
||||
class HIDDEN seleneLiftAxis;
|
||||
|
||||
/**
|
||||
* @brief Virtual axis for setting the angle of the Selene guide
|
||||
*
|
||||
* Please see README.md for a detailed explanation.
|
||||
*/
|
||||
class seleneAngleAxis : public turboPmacAxis {
|
||||
class HIDDEN seleneAngleAxis : public turboPmacAxis {
|
||||
public:
|
||||
/**
|
||||
* @brief Construct a new seleneAngleAxis.
|
||||
|
||||
@@ -13,11 +13,11 @@
|
||||
// Forward declaration of the axis classes to resolve the cyclic
|
||||
// dependency between the seleneLiftAxis and the seleneAngleAxis .h-file.
|
||||
// See https://en.cppreference.com/w/cpp/language/class.
|
||||
class seleneAngleAxis;
|
||||
class seleneLiftAxis;
|
||||
class seleneOffsetAxis;
|
||||
class HIDDEN seleneAngleAxis;
|
||||
class HIDDEN seleneLiftAxis;
|
||||
class HIDDEN seleneOffsetAxis;
|
||||
|
||||
class seleneGuideController : public turboPmacController {
|
||||
class HIDDEN seleneGuideController : public turboPmacController {
|
||||
|
||||
public:
|
||||
/**
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
*
|
||||
* Please see README.md for a detailed explanation.
|
||||
*/
|
||||
class seleneLiftAxis : public turboPmacAxis {
|
||||
class HIDDEN seleneLiftAxis : public turboPmacAxis {
|
||||
public:
|
||||
static const int numAxes_ = 6;
|
||||
|
||||
|
||||
@@ -7,14 +7,14 @@
|
||||
// Forward declaration of the seleneLiftAxis class to resolve the cyclic
|
||||
// dependency between the seleneLiftAxis and the seleneAngleAxis .h-file.
|
||||
// See https://en.cppreference.com/w/cpp/language/class.
|
||||
class seleneLiftAxis;
|
||||
class HIDDEN seleneLiftAxis;
|
||||
|
||||
/**
|
||||
* @brief Virtual axis for setting the offset of a motor of the Selene guide
|
||||
*
|
||||
* Please see README.md for a detailed explanation.
|
||||
*/
|
||||
class seleneOffsetAxis : public turboPmacAxis {
|
||||
class HIDDEN seleneOffsetAxis : public turboPmacAxis {
|
||||
public:
|
||||
/**
|
||||
* @brief Construct a new selene Offset Axis object
|
||||
|
||||
Submodule turboPmac updated: f423002d23...d41e7bf054
Reference in New Issue
Block a user