Browse Source

Fix DEGREES macro

pull/1/head
Scott Lahteine 9 years ago
parent
commit
790c697c19
  1. 2
      Marlin/Marlin.h

2
Marlin/Marlin.h

@ -36,7 +36,7 @@
#define TEST(n,b) (((n)&BIT(b))!=0)
#define SET_BIT(n,b,value) (n) ^= ((-value)^(n)) & (BIT(b))
#define RADIANS(d) ((d)*M_PI/180.0)
#define DEGREES(r) ((d)*180.0/M_PI)
#define DEGREES(r) ((r)*180.0/M_PI)
#define NOLESS(v,n) do{ if (v < n) v = n; }while(0)
#define NOMORE(v,n) do{ if (v > n) v = n; }while(0)

Loading…
Cancel
Save