Mercurial > hg > beaglert
view examples/d-box/config.h @ 328:abd7795dad5d prerelease
relaxed the loop when set_startup.sh -l (added a sleep in there). This way if the file fails to load, the board is still operable, see #1698
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Fri, 03 Jun 2016 17:15:56 +0100 |
parents | 00725dfc1b87 |
children |
line wrap: on
line source
/* * config.h * * Global settings for D-Box project * * Andrew McPherson and Victor Zappi 2014 */ #ifndef DBOX_CONFIG_H_ #define DBOX_CONFIG_H_ /* Number of maximum touches used by the TouchKey sensors */ #define MAX_TOUCHES 5 // for sensor 1 filter #define EXP_DENOM 53.5981500331 // exp(4)-1 /* Define this to use Xenomai real-time extensions */ #define DBOX_USE_XENOMAI //#define OLD_OSCBANK #ifdef DBOX_USE_XENOMAI // Xenomai-specific includes #include <sys/mman.h> #include <native/task.h> #include <native/timer.h> #include <rtdk.h> #endif #ifdef DBOX_USE_XENOMAI #define dbox_printf rt_printf #else #define dbox_printf printf #endif #endif /* DBOX_CONFIG_H */