Major changes in motorctl and control to optimize performance by freeing unnecessary cpu usage by motorctl task Needs testing on actual hardware! motorctl: - slow down handle loop when duty is at target (wait for new command) - create separate task for each motor - setTarget method also accepts motorCommand directly now control.cpp: - redurce stress on motorctl by removing unnecessary commands - set motors to idle at mode change only, instead of every iteration (IDLE, MENU, ADJUST) - HTTP, JOYSTICK: only update motors when stick data actually changed - simplify code - add method for idling both motors - use motorcommands directly in setTarget() http:cpp: - dont block control task with getData() method - handle timeout independent of one queue event - prevents unresponsive system for http-timeout when changing mode from HTTP
82 lines
2.8 KiB
C++
82 lines
2.8 KiB
C++
#pragma once
|
|
|
|
extern "C"
|
|
{
|
|
#include "esp_http_server.h"
|
|
}
|
|
|
|
#include "joystick.hpp"
|
|
|
|
|
|
|
|
//============================
|
|
//===== init http server =====
|
|
//============================
|
|
//function that initializes http server and configures available urls
|
|
//parameter: provide pointer to function that handles incomming joystick data (for configuring the url)
|
|
//TODO add handle functions to future additional endpoints/urls here too
|
|
typedef esp_err_t (*http_handler_t)(httpd_req_t *req);
|
|
void http_init_server(http_handler_t onJoystickUrl);
|
|
|
|
//example with lambda function to pass method of a class instance:
|
|
//esp_err_t (httpJoystick::*pointerToReceiveFunc)(httpd_req_t *req) = &httpJoystick::receiveHttpData;
|
|
//esp_err_t on_joystick_url(httpd_req_t *req){
|
|
// //run pointer to receiveHttpData function of httpJoystickMain instance
|
|
// return (httpJoystickMain->*pointerToReceiveFunc)(req);
|
|
//}
|
|
//http_init_server(on_joystick_url);
|
|
|
|
|
|
//==============================
|
|
//===== start mdns service =====
|
|
//==============================
|
|
//function that initializes and starts mdns server for host discovery
|
|
void start_mdns_service();
|
|
|
|
|
|
//============================
|
|
//===== stop http server =====
|
|
//============================
|
|
//function that destroys the http server
|
|
void http_stop_server(httpd_handle_t * httpServer);
|
|
|
|
|
|
//==============================
|
|
//===== httpJoystick class =====
|
|
//==============================
|
|
//class that receices that from a HTTP post request, generates and scales joystick data and provides the data in a queue
|
|
|
|
//struct with configuration parameters
|
|
typedef struct httpJoystick_config_t {
|
|
float toleranceZeroX_Per;//percentage around joystick axis the coordinate snaps to 0
|
|
float toleranceZeroY_Per;
|
|
float toleranceEndPer; //percentage before joystick end the coordinate snaps to 1/-1
|
|
uint32_t timeoutMs; //time no new data was received before the motors get turned off
|
|
} httpJoystick_config_t;
|
|
|
|
|
|
class httpJoystick{
|
|
public:
|
|
//--- constructor ---
|
|
httpJoystick(httpJoystick_config_t config_f);
|
|
|
|
//--- functions ---
|
|
joystickData_t getData(); //wait for and return joystick data from queue, if timeout return CENTER
|
|
|
|
esp_err_t receiveHttpData(httpd_req_t *req); //function that is called when data is received with post request at /api/joystick
|
|
|
|
private:
|
|
//--- variables ---
|
|
httpJoystick_config_t config;
|
|
QueueHandle_t joystickDataQueue = xQueueCreate( 1, sizeof( struct joystickData_t ) );
|
|
//struct for receiving data from http function, and storing data of last update
|
|
uint32_t timeLastData = 0;
|
|
const joystickData_t dataCenter = {
|
|
.position = joystickPos_t::CENTER,
|
|
.x = 0,
|
|
.y = 0,
|
|
.radius = 0,
|
|
.angle = 0
|
|
};
|
|
joystickData_t dataRead = dataCenter;
|
|
}; |