jonny_jr9 76e8bac113 2 boards: split code, outsource common, remove duplicate files
- outsoruce common files and separate common types from source files (new
  common/types.hpp)
- split source files to 2 board folders (relevant only, no duplicate)
- currently boards compile successfull but not functional at all
- comment out currently incompatible code
2023-08-30 09:01:13 +02:00

28 lines
657 B
C++

#pragma once
#include "motordrivers.hpp"
#include "motorctl.hpp"
#include "gpio_evaluateSwitch.hpp"
#include "buzzer.hpp"
#include "fan.hpp"
//in IDLE mode: set loglevel for evaluatedJoystick to DEBUG
//and repeatedly read joystick e.g. for manually calibrating / testing joystick
//#define JOYSTICK_LOG_IN_IDLE
//TODO outsource global variables to e.g. global.cpp and only config options here?
//create global controlledMotor instances for both motors
extern controlledMotor motorLeft;
extern controlledMotor motorRight;
//create global buzzer object
extern buzzer_t buzzer;
//configuration for fans / cooling
extern fan_config_t configCooling;