Browse Source

Drop fastio timer cruft

Scott Lahteine 7 years ago
parent
commit
4ebff8eaa5
1 changed files with 0 additions and 4 deletions
  1. 0
    4
      Marlin/fastio.h

+ 0
- 4
Marlin/fastio.h View File

@@ -215,10 +215,6 @@ typedef enum {
215 215
 
216 216
 // Set Compare Mode bits
217 217
 #define _SET_COM(T,Q,V) (TCCR##T##Q = (TCCR##T##Q & ~(0x3 << COM##T##Q##0)) | (int(V) << COM##T##Q##0))
218
-#define _SET_COMA(T,V) _SET_COM(T,A,V)
219
-#define _SET_COMB(T,V) _SET_COM(T,B,V)
220
-#define _SET_COMC(T,V) _SET_COM(T,C,V)
221
-#define _SET_COMS(T,V1,V2,V3) do{ _SET_COMA(T,V1); _SET_COMB(T,V2); _SET_COMC(T,V3); }while(0)
222 218
 #define SET_COM(T,Q,V) _SET_COM(T,Q,COM_##V)
223 219
 #define SET_COMA(T,V) SET_COM(T,A,V)
224 220
 #define SET_COMB(T,V) SET_COM(T,B,V)

Loading…
Cancel
Save