Skip to content

Commit

Permalink
fix tracker build (#5151)
Browse files Browse the repository at this point in the history
fix tracker 1000 build
  • Loading branch information
caveman99 authored Oct 26, 2024
1 parent ea63f03 commit adf1bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/motion/QMA6100PSensor.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "QMA6100PSensor.h"

#if !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL) && !MESHTASTIC_EXCLUDE_I2C && HAS_QMA6100P
#if !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL) && !MESHTASTIC_EXCLUDE_I2C && defined(HAS_QMA6100P)

// Flag when an interrupt has been detected
volatile static bool QMA6100P_IRQ = false;
Expand Down
2 changes: 1 addition & 1 deletion src/motion/QMA6100PSensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "MotionSensor.h"

#if !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL) && !MESHTASTIC_EXCLUDE_I2C && HAS_QMA6100P
#if !defined(ARCH_PORTDUINO) && !defined(ARCH_STM32WL) && !MESHTASTIC_EXCLUDE_I2C && defined(HAS_QMA6100P)

#include <QMA6100P.h>

Expand Down

0 comments on commit adf1bc4

Please sign in to comment.