fix file locations
This commit is contained in:
parent
330d493f06
commit
711cf00c43
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,7 +3,6 @@
|
||||
.vs
|
||||
*.sln
|
||||
*.vcxproj*
|
||||
x64
|
||||
NerdMinerLog.txt
|
||||
bin/0x10000_firmware.bin
|
||||
logs
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
[platformio]
|
||||
globallib_dir = lib
|
||||
default_envs = esp32cam ;ESP32-2432S028R, NerminerV2, ESP32-devKitv1, NerminerV2-S3-DONGLE, NerminerV2-S3-AMOLED, NerminerV2-T-QT, NerdminerV2-T-Display_V1, ESP32-2432S028R
|
||||
default_envs = esp32cam, ESP32-2432S028R, NerminerV2, ESP32-devKitv1, NerminerV2-S3-DONGLE, NerminerV2-S3-AMOLED, NerminerV2-T-QT, NerdminerV2-T-Display_V1, ESP32-2432S028R
|
||||
|
||||
[env:NerminerV2]
|
||||
platform = espressif32
|
||||
|
@ -2,21 +2,21 @@
|
||||
#define __DEVICE_H__
|
||||
|
||||
#if defined(NERDMINERV2)
|
||||
#include "devices/nerdMinerV2.h"
|
||||
#include "nerdMinerV2.h"
|
||||
#elif defined(DEVKITV1)
|
||||
#include "devices/esp32DevKit.h"
|
||||
#include "esp32DevKit.h"
|
||||
#elif defined(TDISPLAY)
|
||||
#include "devices/lilygoS3TDisplay.h"
|
||||
#include "lilygoS3TDisplay.h"
|
||||
#elif defined(NERMINER_S3_AMOLED)
|
||||
#include "devices/lilygoS3Amoled.h"
|
||||
#include "lilygoS3Amoled.h"
|
||||
#elif defined(NERMINER_S3_DONGLE)
|
||||
#include "devices/lilygoS3Dongle.h"
|
||||
#include "lilygoS3Dongle.h"
|
||||
#elif defined(ESP32_2432S028R)
|
||||
#include "devices/esp322432s028r.h"
|
||||
#include "esp322432s028r.h"
|
||||
#elif defined(NERMINER_T_QT)
|
||||
#include "devices/lilygoT_QT.h"
|
||||
#include "lilygoT_QT.h"
|
||||
#elif defined(NERDMINER_T_DISPLAY_V1)
|
||||
#include "devices/lilygoV1TDisplay.h"
|
||||
#include "lilygoV1TDisplay.h"
|
||||
#elif defined(ESP32_CAM)
|
||||
#include "esp32CAM.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../drivers.h"
|
||||
#include "DisplayDriver.h"
|
||||
|
||||
#ifdef ESP32_2432S028R
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../drivers.h"
|
||||
#include "DisplayDriver.h"
|
||||
|
||||
#ifdef V1_DISPLAY
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../drivers.h"
|
||||
#include "DisplayDriver.h"
|
||||
|
||||
#ifdef T_QT_DISPLAY
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user