Skip to content

Commit

Permalink
Update defined(CONFIG_IDF_TARGET_ESP32S3)
Browse files Browse the repository at this point in the history
  • Loading branch information
fvanroie committed Jul 23, 2023
1 parent 7625d68 commit 37b3e48
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Arduino_RGB_Display_mod.h"

#if defined(ESP32) && (CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)
#if defined(ESP32) && defined(CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)

#include "Arduino_GFX.h"
#include "Arduino_DataBus.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/Arduino_RPi_DPI_RGBPanel_mod/Arduino_RGB_Display_mod.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "Arduino_DataBus.h"
#endif

#if defined(ESP32) && (CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)
#if defined(ESP32) && defined(CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)

#ifndef _ARDUINO_RGB_DISPLAY_MOD_H_
#define _ARDUINO_RGB_DISPLAY_MOD_H_
Expand Down
2 changes: 1 addition & 1 deletion src/drv/tft/Arduino_PCA9535SWSPI.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if defined(ESP32) && (CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)
#if defined(ESP32) && defined(CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)

#include "Arduino_PCA9535SWSPI.h"
#include "driver/gpio.h"
Expand Down
2 changes: 1 addition & 1 deletion src/drv/tft/Arduino_PCA9535SWSPI.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _Arduino_PCA9535SWSPI_H_
#define _Arduino_PCA9535SWSPI_H_

#if defined(ESP32) && (CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)
#if defined(ESP32) && defined(CONFIG_IDF_TARGET_ESP32S3) && defined(HASP_USE_ARDUINOGFX)

#include <Wire.h>

Expand Down

0 comments on commit 37b3e48

Please sign in to comment.