Skip to content

Commit

Permalink
Fix include guard
Browse files Browse the repository at this point in the history
  • Loading branch information
FredM67 committed Nov 1, 2024
1 parent 416156a commit 9b13c0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mk2_3phase_RFdatalog_temp/utils_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
*
*/

#ifndef __UTILS_PINS_H__
#define __UTILS_PINS_H__
#ifndef UTILS_PINS
#define UTILS_PINS

#include <Arduino.h>

Expand Down Expand Up @@ -176,4 +176,4 @@ inline bool getPinState(const uint8_t pin)
return (pin < 8) ? bitRead(PIND, pin) : bitRead(PINB, pin - 8);
}

#endif // __UTILS_PINS_H__
#endif /* UTILS_PINS */

0 comments on commit 9b13c0b

Please sign in to comment.