27 lines
523 B
C
27 lines
523 B
C
/*
|
|
* BlockingQueue.hpp
|
|
*
|
|
* Created on: May 17, 2018
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
|
*/
|
|
|
|
#include "easylogging++.h"
|
|
|
|
#define INPUT_LOGGER "driver_logger"
|
|
#define OUTPUT_LOGGER "output_logger"
|
|
|
|
#define LOGGER_FILE "driver.log"
|
|
|
|
|
|
|
|
#define DRIVER_CONF_FILE "/var/log/flippr_driver.conf"
|
|
|
|
#define HIGHEST_LOG_VERBOSITY 10
|
|
|
|
#define INPUT_MATRIX_SIZE 8
|
|
#define INPUT_SLEEP_DURATION_NANO 800
|
|
|
|
#define PULLDOWN false
|
|
|
|
#define HIGHEST_INPUT_EVENT_PRIORITY 0
|