Only define _BV in Marduino.h

This commit is contained in:
Scott Lahteine 2019-08-29 17:50:16 -05:00
parent d25231aea8
commit 9223261ea9
2 changed files with 1 additions and 2 deletions

View File

@ -61,8 +61,6 @@
#define L(CODE) CODE ":\n\t"
// Macros for bit masks
#undef _BV
#define _BV(n) (1<<(n))
#define TEST(n,b) !!((n)&_BV(b))
#define SET_BIT_TO(N,B,TF) do{ if (TF) SBI(N,B); else CBI(N,B); }while(0)

View File

@ -22,6 +22,7 @@
#pragma once
#include "../inc/MarlinConfigPre.h"
#include "../HAL/shared/Marduino.h"
constexpr char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };