- move code from testing task to control.cpp - outsource functions for initializing display and encoder - delete testing code - add two display pages (current distance and counter) - run handle functions for each button
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <esp_idf_version.h>
|
|
#include "freertos/queue.h"
|
|
#include "esp_system.h"
|
|
#include "esp_log.h"
|
|
}
|
|
|
|
#include "config.hpp"
|
|
#include "control.hpp"
|
|
#include "buzzer.hpp"
|
|
|
|
|
|
//=================================
|
|
//=========== functions ===========
|
|
//=================================
|
|
//function to configure gpio pin as output
|
|
void gpio_configure_output(gpio_num_t gpio_pin){
|
|
gpio_pad_select_gpio(gpio_pin);
|
|
gpio_set_direction(gpio_pin, GPIO_MODE_OUTPUT);
|
|
}
|
|
|
|
void init_gpios(){
|
|
//initialize all outputs
|
|
//4x stepper mosfets
|
|
gpio_configure_output(GPIO_VFD_FWD);
|
|
gpio_configure_output(GPIO_VFD_D0);
|
|
gpio_configure_output(GPIO_VFD_D1);
|
|
gpio_configure_output(GPIO_VFD_D2);
|
|
//2x power mosfets
|
|
gpio_configure_output(GPIO_MOS1);
|
|
gpio_configure_output(GPIO_MOS2);
|
|
//onboard relay and buzzer
|
|
gpio_configure_output(GPIO_RELAY);
|
|
gpio_configure_output(GPIO_BUZZER);
|
|
//5v regulator
|
|
gpio_configure_output(GPIO_NUM_17);
|
|
}
|
|
|
|
|
|
|
|
//======================================
|
|
//============ buzzer task =============
|
|
//======================================
|
|
//TODO: move the task creation to buzzer class (buzzer.cpp)
|
|
//e.g. only have function buzzer.createTask() in app_main
|
|
void task_buzzer( void * pvParameters ){
|
|
ESP_LOGI("task_buzzer", "Start of buzzer task...");
|
|
//run function that waits for a beep events to arrive in the queue
|
|
//and processes them
|
|
buzzer.processQueue();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//======================================
|
|
//=========== main function ============
|
|
//======================================
|
|
extern "C" void app_main()
|
|
{
|
|
//init outputs
|
|
init_gpios();
|
|
|
|
//enable 5V volate regulator
|
|
gpio_set_level(GPIO_NUM_17, 1);
|
|
|
|
//define loglevel
|
|
esp_log_level_set("*", ESP_LOG_INFO);
|
|
esp_log_level_set("control", ESP_LOG_INFO);
|
|
|
|
//create task for controlling the machine
|
|
xTaskCreate(task_control, "task_control", configMINIMAL_STACK_SIZE * 3, NULL, 5, NULL);
|
|
//create task for handling the buzzer
|
|
xTaskCreate(&task_buzzer, "task_buzzer", 2048, NULL, 2, NULL);
|
|
|
|
//beep at startup
|
|
buzzer.beep(3, 70, 50);
|
|
}
|