大季 矢花
/
MB2019_main_alltimes_1123
aa
Safty/Safty.cpp
- Committer:
- yabahiro
- Date:
- 2019-11-23
- Revision:
- 59:5cd3875fa96a
- Parent:
- 30:8f092276b2ba
File content as of revision 59:5cd3875fa96a:
#include "Safty.h" #include "../Communication/Controller/Controller.h" #include "../Switch/Switch.h" using namespace SWITCH; namespace SAFTY { ErrorStatus ErrorCheck::Check() { ErrorStatus error = 0; CONTROLLER::Controller::CheckControllerLost() ? error |= Error::ControllerLost : error &=~ Error::ControllerLost; // #ifdef USE_DRIVECHECK (DRIVECHECK_LIMITSW == SW_OFF) ? error |= Error::DrivePowerLost : error &=~ Error::DrivePowerLost; // #endif return error; } }