Skip to content

Commit

Permalink
Define _BV differently from _BV32
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Sep 3, 2021
1 parent 2bb4d16 commit 1c4894d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/HAL/shared/Marduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#define DISABLED(V...) DO(DIS,&&,V)

#undef _BV
#define _BV(b) (1UL << (b))
#define _BV(b) (1 << (b))
#ifndef SBI
#define SBI(A,B) (A |= _BV(B))
#endif
Expand Down

0 comments on commit 1c4894d

Please sign in to comment.