You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
230 B

#include "device.hpp"
Device::Device()
{
Reg_Control.POWER_DEV = Reg_Control::POWER_DEV::TURN_OFF;
Reg_Control.SPEED = Reg_Control::SPEED::STAND_STILL;
std::cout << Reg_Control.raw;
}
void Device::doSomething()
{
}