mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-21 18:22:32 +00:00
Increase CPU frequency on HTTPS requests. Clock back down after a period of time.
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
|
||||
#include <Arduino.h>
|
||||
#include <functional>
|
||||
#include "PhoneAPI.h"
|
||||
|
||||
void initWebServer();
|
||||
void createSSLCert();
|
||||
|
||||
|
||||
void handleNotFound();
|
||||
|
||||
void handleWebResponse();
|
||||
@@ -17,8 +17,21 @@ void notifyWebUI();
|
||||
|
||||
void handleHotspot();
|
||||
|
||||
|
||||
void handleStyleCSS();
|
||||
void handleRoot();
|
||||
void handleScriptsScriptJS();
|
||||
void handleJSONChatHistoryDummy();
|
||||
void handleJSONChatHistoryDummy();
|
||||
|
||||
class httpAPI : public PhoneAPI
|
||||
{
|
||||
|
||||
public:
|
||||
// Nothing here yet
|
||||
|
||||
private:
|
||||
// Nothing here yet
|
||||
|
||||
protected:
|
||||
// Nothing here yet
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user