Copy gpio component from gate project Add instance of evaluatedswitch for button next to joystick to config Add code for testing the button to main.cpp
124 lines
3.8 KiB
C++
124 lines
3.8 KiB
C++
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <esp_system.h>
|
|
#include <esp_event.h>
|
|
#include <nvs_flash.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "driver/gpio.h"
|
|
#include "esp_log.h"
|
|
#include "sdkconfig.h"
|
|
|
|
#include "driver/ledc.h"
|
|
|
|
}
|
|
|
|
#include "motordrivers.hpp"
|
|
#include "motorctl.hpp"
|
|
#include "config.hpp"
|
|
|
|
//tag for logging
|
|
static const char * TAG = "main";
|
|
|
|
|
|
|
|
//====================================
|
|
//========== motorctl task ===========
|
|
//====================================
|
|
//task for handling the motors (ramp, current limit, driver)
|
|
void task_motorctl( void * pvParameters ){
|
|
ESP_LOGI(TAG, "starting handle loop...");
|
|
while(1){
|
|
motorRight.handle();
|
|
motorLeft.handle();
|
|
//10khz -> T=100us
|
|
vTaskDelay(50 / portTICK_PERIOD_MS);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//=================================
|
|
//=========== app_main ============
|
|
//=================================
|
|
extern "C" void app_main(void) {
|
|
//enable 5V volate regulator
|
|
gpio_pad_select_gpio(GPIO_NUM_17);
|
|
gpio_set_direction(GPIO_NUM_17, GPIO_MODE_OUTPUT);
|
|
gpio_set_level(GPIO_NUM_17, 1);
|
|
|
|
|
|
//-------------------------------
|
|
//---------- log level ----------
|
|
//-------------------------------
|
|
//set loglevel for all tags:
|
|
esp_log_level_set("*", ESP_LOG_WARN);
|
|
|
|
//set loglevel for individual tags:
|
|
//esp_log_level_set("motordriver", ESP_LOG_DEBUG);
|
|
//esp_log_level_set("motor-control", ESP_LOG_DEBUG);
|
|
//esp_log_level_set("evaluatedJoystick", ESP_LOG_DEBUG);
|
|
//esp_log_level_set("joystickCommands", ESP_LOG_DEBUG);
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------
|
|
//--- create task for controlling the motors ---
|
|
//----------------------------------------------
|
|
xTaskCreate(&task_motorctl, "task_motor-control", 2048, NULL, 5, NULL);
|
|
|
|
|
|
while(1){
|
|
|
|
vTaskDelay(50 / portTICK_PERIOD_MS);
|
|
|
|
buttonJoystick.handle();
|
|
|
|
//--- testing button ---
|
|
if (buttonJoystick.risingEdge){
|
|
ESP_LOGI(TAG, "button pressed, was released for %d ms", buttonJoystick.msReleased);
|
|
}else if (buttonJoystick.fallingEdge){
|
|
ESP_LOGI(TAG, "button released, was pressed for %d ms", buttonJoystick.msPressed);
|
|
}
|
|
|
|
|
|
|
|
//--- testing joystick commands ---
|
|
motorCommands_t commands = joystick_generateCommandsDriving(joystick);
|
|
motorRight.setTarget(commands.right.state, commands.right.duty); //TODO make motorctl.setTarget also accept motorcommand struct directly
|
|
motorLeft.setTarget(commands.left.state, commands.left.duty); //TODO make motorctl.setTarget also accept motorcommand struct directly
|
|
//motorRight.setTarget(commands.right.state, commands.right.duty);
|
|
|
|
|
|
|
|
|
|
//--- testing joystick class ---
|
|
//joystickData_t data = joystick.getData();
|
|
//ESP_LOGI(TAG, "position=%s, x=%.1f%%, y=%.1f%%, radius=%.1f%%, angle=%.2f",
|
|
// joystickPosStr[(int)data.position], data.x*100, data.y*100, data.radius*100, data.angle);
|
|
|
|
//--- testing the motor driver ---
|
|
//fade up duty - forward
|
|
// for (int duty=0; duty<=100; duty+=5) {
|
|
// motorLeft.setTarget(motorstate_t::FWD, duty);
|
|
// vTaskDelay(100 / portTICK_PERIOD_MS);
|
|
// }
|
|
|
|
|
|
//--- testing controlledMotor --- (ramp)
|
|
// //brake for 1 s
|
|
// motorLeft.setTarget(motorstate_t::BRAKE);
|
|
// vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
// //command 90% - reverse
|
|
// motorLeft.setTarget(motorstate_t::REV, 90);
|
|
// vTaskDelay(5000 / portTICK_PERIOD_MS);
|
|
// //command 100% - forward
|
|
// motorLeft.setTarget(motorstate_t::FWD, 100);
|
|
// vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
|
|
}
|
|
|
|
}
|