Skip to content

Commit

Permalink
Change inc path to include
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasjaster committed May 25, 2024
1 parent 3181b2b commit 0d96b4f
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MAX1704x",
"version": "0.1.0",
"version": "0.1.1",
"description": "MBED OS Library for \"MAX1704x\" LiIon Fuel Gauge",
"keywords": "MAX1704x, mbed os",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion src/MAX17043.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../inc/MAX17043.h"
#include "../include/MAX17043.h"

MAX17043::MAX17043(PinName sda, PinName scl) : MAX1704X(sda, scl)
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAX17044.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../inc/MAX17044.h"
#include "../include/MAX17044.h"

MAX17044::MAX17044(PinName sda, PinName scl) : MAX1704X(sda, scl)
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAX17048.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../inc/MAX17048.h"
#include "../include/MAX17048.h"

MAX17048::MAX17048(PinName sda, PinName scl) : MAX1704X(sda, scl)
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAX17049.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../inc/MAX17049.h"
#include "../include/MAX17049.h"

MAX17049::MAX17049(PinName sda, PinName scl) : MAX1704X(sda, scl)
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAX1704X.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../inc/MAX1704X.h"
#include "../include/MAX1704X.h"

MAX1704X::MAX1704X(PinName sda, PinName scl) {
_i2c = new I2C(sda, scl);
Expand Down

0 comments on commit 0d96b4f

Please sign in to comment.