mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-09-02 02:42:36 +02:00
Move more files to WebUI (#534)
Now everything with Luc's copyright is in WebUI/
This commit is contained in:
@@ -43,6 +43,7 @@
|
|||||||
#include "Defaults.h"
|
#include "Defaults.h"
|
||||||
#include "SettingsStorage.h"
|
#include "SettingsStorage.h"
|
||||||
#include "WebUI/Authentication.h"
|
#include "WebUI/Authentication.h"
|
||||||
|
#include "WebUI/Commands.h"
|
||||||
#include "System.h"
|
#include "System.h"
|
||||||
|
|
||||||
#include "Planner.h"
|
#include "Planner.h"
|
||||||
@@ -61,7 +62,6 @@
|
|||||||
#include "Stepper.h"
|
#include "Stepper.h"
|
||||||
#include "Jog.h"
|
#include "Jog.h"
|
||||||
#include "WebUI/InputBuffer.h"
|
#include "WebUI/InputBuffer.h"
|
||||||
#include "Commands.h"
|
|
||||||
#include "Settings.h"
|
#include "Settings.h"
|
||||||
#include "SettingsDefinitions.h"
|
#include "SettingsDefinitions.h"
|
||||||
#include "WebUI/WebSettings.h"
|
#include "WebUI/WebSettings.h"
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
#include "SDCard.h"
|
#include "SDCard.h"
|
||||||
|
|
||||||
#ifdef ENABLE_BLUETOOTH
|
#ifdef ENABLE_BLUETOOTH
|
||||||
# include "BTConfig.h"
|
# include "WebUI/BTConfig.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_WIFI
|
#ifdef ENABLE_WIFI
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#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
|
Part of Grbl
|
||||||
Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
|
||||||
@@ -22,7 +22,6 @@
|
|||||||
|
|
||||||
#include "Grbl.h"
|
#include "Grbl.h"
|
||||||
#include "TDef.h"
|
#include "TDef.h"
|
||||||
#include "Commands.h"
|
|
||||||
|
|
||||||
// Define global system variables
|
// Define global system variables
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "Grbl.h"
|
#include "../Grbl.h"
|
||||||
|
|
||||||
#ifdef ENABLE_BLUETOOTH
|
#ifdef ENABLE_BLUETOOTH
|
||||||
# include <BluetoothSerial.h>
|
# include <BluetoothSerial.h>
|
@@ -17,7 +17,7 @@
|
|||||||
License along with this library; if not, write to the Free Software
|
License along with this library; if not, write to the Free Software
|
||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
#include "Grbl.h"
|
#include "../Grbl.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
@@ -54,7 +54,7 @@ DNSServer dnsServer;
|
|||||||
# include <esp_ota_ops.h>
|
# include <esp_ota_ops.h>
|
||||||
|
|
||||||
//embedded response file if no files on SPIFFS
|
//embedded response file if no files on SPIFFS
|
||||||
# include "../NoFile.h"
|
# include "NoFile.h"
|
||||||
|
|
||||||
//Upload status
|
//Upload status
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../Config.h"
|
#include "../Config.h"
|
||||||
#include "../Commands.h"
|
#include "Commands.h"
|
||||||
class WebSocketsServer;
|
class WebSocketsServer;
|
||||||
class WebServer;
|
class WebServer;
|
||||||
|
|
||||||
|
@@ -41,7 +41,7 @@
|
|||||||
# ifdef ENABLE_NOTIFICATIONS
|
# ifdef ENABLE_NOTIFICATIONS
|
||||||
# include "NotificationsService.h"
|
# include "NotificationsService.h"
|
||||||
# endif
|
# endif
|
||||||
# include "../Commands.h"
|
# include "Commands.h"
|
||||||
|
|
||||||
WiFiServices wifi_services;
|
WiFiServices wifi_services;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user