From 4ebff8eaa54a66cee979a5585c0c537da4bd8400 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 28 May 2017 19:24:39 -0500 Subject: [PATCH] Drop fastio timer cruft --- Marlin/fastio.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Marlin/fastio.h b/Marlin/fastio.h index 035c9c3a2..d5ae8f2cc 100644 --- a/Marlin/fastio.h +++ b/Marlin/fastio.h @@ -215,10 +215,6 @@ typedef enum { // Set Compare Mode bits #define _SET_COM(T,Q,V) (TCCR##T##Q = (TCCR##T##Q & ~(0x3 << COM##T##Q##0)) | (int(V) << COM##T##Q##0)) -#define _SET_COMA(T,V) _SET_COM(T,A,V) -#define _SET_COMB(T,V) _SET_COM(T,B,V) -#define _SET_COMC(T,V) _SET_COM(T,C,V) -#define _SET_COMS(T,V1,V2,V3) do{ _SET_COMA(T,V1); _SET_COMB(T,V2); _SET_COMC(T,V3); }while(0) #define SET_COM(T,Q,V) _SET_COM(T,Q,COM_##V) #define SET_COMA(T,V) SET_COM(T,A,V) #define SET_COMB(T,V) SET_COM(T,B,V)