Increase CPU frequency on HTTPS requests. Clock back down after a period of time.

This commit is contained in:
Jm Casler
2020-10-11 20:38:09 -07:00
parent ca48079545
commit 3d3f7869d4
4 changed files with 91 additions and 7 deletions

View File

@@ -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
};