1

Dependencies:   CircularBuffer Radio Servo Terminal mbed

Fork of WalkingRobot by Patrick Clary

utility.h

Committer:
alex03
Date:
2013-04-09
Revision:
11:975d24305af7
Parent:
9:a6d1502f0f20

File content as of revision 11:975d24305af7:

//

inline float min(float a, float b)
{
    return (a < b ? a : b);
}