Skip to content

Commit 66ed5d0

Browse files
authored
Merge pull request #68 from kdriver/CaseError
Captilised A of arduino.h in debug.h - did not compile on linux for E…
2 parents 3f92c78 + 34fb235 commit 66ed5d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/util/debug.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@
2727
#ifndef _INFLUXDB_CLIENT_DEBUG_H
2828
#define _INFLUXDB_CLIENT_DEBUG_H
2929

30-
#include <arduino.h>
30+
// captilised the A of Arduino - kdriver
31+
#include <Arduino.h>
3132

3233
#ifdef INFLUXDB_CLIENT_DEBUG
3334
# define INFLUXDB_CLIENT_DEBUG(fmt, ...) Serial.printf_P( (PGM_P)PSTR(fmt), ## __VA_ARGS__ )
3435
#else
3536
# define INFLUXDB_CLIENT_DEBUG(fmt, ...)
3637
#endif //INFLUXDB_CLIENT_DEBUG
3738

38-
#endif //# _INFLUXDB_CLIENT_DEBUG_H
39+
#endif //# _INFLUXDB_CLIENT_DEBUG_H

0 commit comments

Comments
 (0)