Skip to content

Commit

Permalink
Fix include of max86150.h
Browse files Browse the repository at this point in the history
The file is named max86150.h (lower case letters), but
it was included as MAX86150.h, causing build to fail on
case sensitive operating systems such as Linux.
  • Loading branch information
jomag committed Mar 12, 2020
1 parent de0d45f commit 2c25ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/max86150.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
BSD license, all text above must be included in any redistribution.
*****************************************************/

#include "MAX86150.h"
#include "max86150.h"

static const uint8_t MAX86150_INTSTAT1 = 0x00;
static const uint8_t MAX86150_INTSTAT2 = 0x01;
Expand Down

0 comments on commit 2c25ab6

Please sign in to comment.