This is some awesome robot code

Dependencies:   mbed-rtos mbed QEI

Fork of ICRSEurobot13 by Thomas Branch

Processes/MotorControl/MotorControl.h

Committer:
madcowswe
Date:
2013-04-14
Revision:
62:78d99b781f02
Parent:
25:b16f1045108f
Child:
73:265d3cc6b0b1

File content as of revision 62:78d99b781f02:


#ifndef MOTOR_CONTROL_H
#define MOTOR_CONTROL_H

namespace MotorControl{
    
    extern volatile float fwdcmd;
    extern volatile float omegacmd;
    
    extern volatile float mfwdpowdbg;
    extern volatile float mrotpowdbg;
    
    inline void set_fwdcmd(float infwdcmd){
        fwdcmd = infwdcmd;
    }
    
    inline void set_omegacmd(float inomega){
        omegacmd = inomega;
    }
    
    void motor_control_isr();
    
}

#endif //MOTOR_CONTROL_H