Skip to content

Commit

Permalink
Revert _BV testing commit
Browse files Browse the repository at this point in the history
This reverts commit 9223261.
  • Loading branch information
thinkyhead committed Aug 30, 2019
1 parent 05ef9b2 commit 0bcb644
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Marlin/src/core/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
#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)

Expand Down
1 change: 0 additions & 1 deletion Marlin/src/core/utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#pragma once

#include "../inc/MarlinConfigPre.h"
#include "../HAL/shared/Marduino.h"

constexpr char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };

Expand Down

0 comments on commit 0bcb644

Please sign in to comment.