Cleanup arduino useless bullshit

This commit is contained in:
2022-05-23 23:42:13 +02:00
parent 7eac3fae5d
commit 2409545662
4 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
#include <string.h>
/************************************************************************************** /**************************************************************************************
// The following class creates Sprites in RAM, graphics can then be drawn in the Sprite // The following class creates Sprites in RAM, graphics can then be drawn in the Sprite
// and rendered quickly onto the TFT screen. The class inherits the graphics functions // and rendered quickly onto the TFT screen. The class inherits the graphics functions

View File

@@ -1,3 +1,5 @@
#include <string.h>
//////////////////////////////////////////////////// ////////////////////////////////////////////////////
// TFT_eSPI driver functions for ESP32 processors // // TFT_eSPI driver functions for ESP32 processors //
//////////////////////////////////////////////////// ////////////////////////////////////////////////////

View File

@@ -41,6 +41,10 @@
#define SPI_BUSY_CHECK #define SPI_BUSY_CHECK
#endif #endif
#include "freertos/task.h"
#include "wiring_shift.h"
#include "esp32-hal-gpio.h"
namespace { namespace {
void delay(uint32_t ms) void delay(uint32_t ms)
{ {

View File

@@ -27,7 +27,6 @@
***************************************************************************************/ ***************************************************************************************/
//Standard support //Standard support
#include <Arduino.h>
#include <SPI.h> #include <SPI.h>
#include <string_view> #include <string_view>