1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-01 18:32:37 +02:00

Move more files to WebUI (#534)

Now everything with Luc's copyright is in WebUI/
This commit is contained in:
Mitch Bradley
2020-08-11 07:23:56 -10:00
committed by GitHub
parent 8d5dea9dfa
commit 6ff3e28541
10 changed files with 8 additions and 9 deletions

View File

@@ -43,6 +43,7 @@
#include "Defaults.h"
#include "SettingsStorage.h"
#include "WebUI/Authentication.h"
#include "WebUI/Commands.h"
#include "System.h"
#include "Planner.h"
@@ -61,7 +62,6 @@
#include "Stepper.h"
#include "Jog.h"
#include "WebUI/InputBuffer.h"
#include "Commands.h"
#include "Settings.h"
#include "SettingsDefinitions.h"
#include "WebUI/WebSettings.h"
@@ -70,7 +70,7 @@
#include "SDCard.h"
#ifdef ENABLE_BLUETOOTH
# include "BTConfig.h"
# include "WebUI/BTConfig.h"
#endif
#ifdef ENABLE_WIFI

View File

@@ -1,7 +1,7 @@
#pragma once
/*
system.h - Header for system level commands and real-time processes
System.h - Header for system level commands and real-time processes
Part of Grbl
Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC
@@ -22,7 +22,6 @@
#include "Grbl.h"
#include "TDef.h"
#include "Commands.h"
// Define global system variables
typedef struct {

View File

@@ -18,7 +18,7 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "Grbl.h"
#include "../Grbl.h"
#ifdef ENABLE_BLUETOOTH
# include <BluetoothSerial.h>

View File

@@ -17,7 +17,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "Grbl.h"
#include "../Grbl.h"
#ifdef __cplusplus
extern "C" {

View File

@@ -54,7 +54,7 @@ DNSServer dnsServer;
# include <esp_ota_ops.h>
//embedded response file if no files on SPIFFS
# include "../NoFile.h"
# include "NoFile.h"
//Upload status
typedef enum {

View File

@@ -21,7 +21,7 @@
*/
#include "../Config.h"
#include "../Commands.h"
#include "Commands.h"
class WebSocketsServer;
class WebServer;

View File

@@ -41,7 +41,7 @@
# ifdef ENABLE_NOTIFICATIONS
# include "NotificationsService.h"
# endif
# include "../Commands.h"
# include "Commands.h"
WiFiServices wifi_services;