- add static type to all local variables in every source file so the scope of each variable is limited to that file. This prevents conflicting variable names with other source file (e.g. 'state' variable in vfd.cpp) - simplify encoder concept wrap all used functions from rotary_encoder.h library in custom encoder.hpp file -> only one file has to be included where encoder is used -> global variable 'encoder' is not necessary anymore -> reduces duplicate code for length calculation - update all files where encoder functions where used accordingly
41 lines
918 B
C++
41 lines
918 B
C++
/* in this file all used functions from original rotary_encoder.h library are wrapped with custom functions to reduce global variables and duplicate code
|
|
*/
|
|
//TODO create a cpp class for an encoder?
|
|
#pragma once
|
|
extern "C" {
|
|
#include <freertos/task.h>
|
|
}
|
|
|
|
#include "config.hpp"
|
|
|
|
|
|
//----------------------------
|
|
//----- global variables -----
|
|
//----------------------------
|
|
//TODO ignore global encoder queue, since it is not used?
|
|
extern QueueHandle_t encoder_queue; //encoder event queue
|
|
|
|
|
|
//-------------------------
|
|
//------- functions -------
|
|
//-------------------------
|
|
|
|
//--- encoder_init ---
|
|
//init encoder
|
|
QueueHandle_t encoder_init();
|
|
|
|
//--- encoder_getSteps ---
|
|
//get steps counted since last reset
|
|
int encoder_getSteps();
|
|
|
|
|
|
//--- encoder_getLenMm ---
|
|
//get current length in Mm since last reset
|
|
int encoder_getLenMm();
|
|
|
|
|
|
|
|
//--- encoder_reset ---
|
|
//reset counted steps / length to 0
|
|
void encoder_reset();
|