consistent header includes
replaced <> with "" for non-system headers
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
#ifndef NANOBAKE_BOARD_2432S024_H
|
||||
#define NANOBAKE_BOARD_2432S024_H
|
||||
|
||||
#include "board_2432s024_display.h"
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
#include "board_2432s024_display.h"
|
||||
|
||||
#include <esp_lcd_ili9341.h>
|
||||
#include <esp_log.h>
|
||||
#include <esp_err.h>
|
||||
#include <esp_check.h>
|
||||
#include <esp_lcd_panel_ops.h>
|
||||
#include <driver/gpio.h>
|
||||
#include <driver/spi_master.h>
|
||||
#include <freertos/FreeRTOS.h>
|
||||
#include <freertos/semphr.h>
|
||||
#include "esp_lcd_ili9341.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_err.h"
|
||||
#include "esp_lcd_panel_ops.h"
|
||||
#include "driver/gpio.h"
|
||||
#include "driver/spi_master.h"
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/semphr.h"
|
||||
|
||||
static const char* TAG = "2432s024_ili9341";
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef NANOBAKE_BOARD_2432S024_DISPLAY_H
|
||||
#define NANOBAKE_BOARD_2432S024_DISPLAY_H
|
||||
|
||||
#include <nb_display.h>
|
||||
#include "nb_display.h"
|
||||
|
||||
extern NbDisplayDriver board_2432s024_create_display_driver();
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#include "board_2432s024_touch.h"
|
||||
|
||||
#include <esp_lcd_touch_cst816s.h>
|
||||
#include <esp_log.h>
|
||||
#include <esp_err.h>
|
||||
#include <driver/i2c.h>
|
||||
#include "esp_lcd_touch_cst816s.h"
|
||||
#include "esp_log.h"
|
||||
#include "esp_err.h"
|
||||
#include "driver/i2c.h"
|
||||
|
||||
#define CST816_I2C_PORT (0)
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef NANOBAKE_BOARD_2432S024_TOUCH_H
|
||||
#define NANOBAKE_BOARD_2432S024_TOUCH_H
|
||||
|
||||
#include <nb_touch.h>
|
||||
#include "nb_touch.h"
|
||||
|
||||
NbTouchDriver board_2432s024_create_touch_driver();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user