Skip to content

Commit cce27a0

Browse files
authored
Merge pull request #86 from SenaxInc/copilot/fix-arduino-compilation-error-again
Fix forward declaration placement for sendConfigGenerator
2 parents e70b160 + 1dfe919 commit cce27a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TankAlarm-112025-Server-BluesOpta/TankAlarm-112025-Server-BluesOpta.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2625,6 +2625,7 @@ static void respondJson(EthernetClient &client, const String &body, int status =
26252625
static void respondStatus(EthernetClient &client, int status, const String &message);
26262626
static void sendDashboard(EthernetClient &client);
26272627
static void sendClientConsole(EthernetClient &client);
2628+
static void sendConfigGenerator(EthernetClient &client);
26282629
static void sendTankJson(EthernetClient &client);
26292630
static void sendClientDataJson(EthernetClient &client);
26302631
static void handleConfigPost(EthernetClient &client, const String &body);
@@ -2639,7 +2640,6 @@ enum class ConfigDispatchStatus : uint8_t {
26392640
static void handlePinPost(EthernetClient &client, const String &body);
26402641
static void handleRefreshPost(EthernetClient &client, const String &body);
26412642
static void handleRelayPost(EthernetClient &client, const String &body);
2642-
static void sendConfigGenerator(EthernetClient &client);
26432643
static ConfigDispatchStatus dispatchClientConfig(const char *clientUid, JsonVariantConst cfgObj);
26442644
static bool sendRelayCommand(const char *clientUid, uint8_t relayNum, bool state, const char *source);
26452645
static void pollNotecard();

0 commit comments

Comments
 (0)