BroBot Code for ESE350 Lab6 part 3 (Skeleton)

Dependencies:   MPU6050_V3 mbed-rtos mbed

Fork of BroBot_RTOS_ESE350 by Carter Sharer

Committer:
csharer
Date:
Wed Oct 12 05:04:10 2016 +0000
Revision:
3:2f76ffbc5cef
first commit to BroBot;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
csharer 3:2f76ffbc5cef 1 //BroBot.h
csharer 3:2f76ffbc5cef 2 // This file is used to store constants operators used by many files
csharer 3:2f76ffbc5cef 3
csharer 3:2f76ffbc5cef 4 #define RAD2GRAD 57.2957795
csharer 3:2f76ffbc5cef 5 #define CAP(val, constraint) ((val > constraint) ? constraint : ((val<-constraint) ? -constraint : val))
csharer 3:2f76ffbc5cef 6 #define MAX_CONTROL_OUTPUT 100