ifw-fcf 8.0.2
 
Loading...
Searching...
No Matches
modulatorHwErrors.hpp
Go to the documentation of this file.
1
7
8#ifndef FCF_DEVMGR_DEVICE_MODULATOR_HW_ERRORS_HPP
9#define FCF_DEVMGR_DEVICE_MODULATOR_HW_ERRORS_HPP
10
11#include <unordered_map>
12
13
15
16 enum {
21 };
22
23
24 const std::unordered_map<short, std::string> HW_ERRORS = {
25 {HW_ERR_HW_NOT_OP, "TwinCAT not in OP state or CouplerState not mapped."},
26 {HW_ERR_LOCAL, "Control not allowd. Device in Local mode."},
27 {HW_ERR_START_IN_PAST, "Start time already passed."},
28
29 };
30
31}
32
33#endif // FCF_DEVMGR_DEVICE_MODULATOR_HW_ERRORS_HPP
Modulator class source file.
Definition modulator.hpp:17
const std::unordered_map< short, std::string > HW_ERRORS
Definition modulatorHwErrors.hpp:24
@ HW_ERR_HW_NOT_OP
Definition modulatorHwErrors.hpp:18
@ HW_SUCCESS
Definition modulatorHwErrors.hpp:17
@ HW_ERR_LOCAL
Definition modulatorHwErrors.hpp:19
@ HW_ERR_START_IN_PAST
Definition modulatorHwErrors.hpp:20