mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-15 08:56:34 +02:00
Fix path capitalization
This fixes build breakage on case-sensitive filesystems (e.g. Linux) with errors like: src/Display/Display.h:4:10: fatal error: ../main/BoardDef.h: No such file or directory
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
#ifndef _AIR_GRADIENT_OLED_H_
|
#ifndef _AIR_GRADIENT_OLED_H_
|
||||||
#define _AIR_GRADIENT_OLED_H_
|
#define _AIR_GRADIENT_OLED_H_
|
||||||
|
|
||||||
#include "../main/BoardDef.h"
|
#include "../Main/BoardDef.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef _S8_H_
|
#ifndef _S8_H_
|
||||||
#define _S8_H_
|
#define _S8_H_
|
||||||
|
|
||||||
#include "../main/BoardDef.h"
|
#include "../Main/BoardDef.h"
|
||||||
#include "Arduino.h"
|
#include "Arduino.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef _AIR_GRADIENT_SGP4X_H_
|
#ifndef _AIR_GRADIENT_SGP4X_H_
|
||||||
#define _AIR_GRADIENT_SGP4X_H_
|
#define _AIR_GRADIENT_SGP4X_H_
|
||||||
|
|
||||||
#include "../main/BoardDef.h"
|
#include "../Main/BoardDef.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef _SHT_H_
|
#ifndef _SHT_H_
|
||||||
#define _SHT_H_
|
#define _SHT_H_
|
||||||
|
|
||||||
#include "../main/BoardDef.h"
|
#include "../Main/BoardDef.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user