2013-05-03 14:36:17 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2018-10-01 15:32:39 +00:00
|
|
|
* http://ugfx.io/license.html
|
2013-02-11 08:25:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GINPUT_LLD_TOGGLE_CONFIG_H
|
|
|
|
#define _GINPUT_LLD_TOGGLE_CONFIG_H
|
|
|
|
|
|
|
|
#if GFX_USE_GINPUT && GINPUT_NEED_TOGGLE
|
|
|
|
|
2018-07-08 05:15:15 +00:00
|
|
|
#define GINPUT_TOGGLE_POLL_PERIOD gDelayForever // We are interrupt driven (or polled - either works here)
|
2013-10-12 03:24:40 +00:00
|
|
|
|
|
|
|
// This driver is unique in that it can support 8 buttons per window across multiple windows.
|
|
|
|
// GINPUT_TOGGLE_CONFIG_ENTRIES just must be less than the number of GDISP windows (GDISP_DRIVER_COUNT_WIN32).
|
2015-02-13 23:16:28 +00:00
|
|
|
// DEPRECATED: Currently only supports a single window with buttons until toggles use GDriver
|
2013-10-12 03:24:40 +00:00
|
|
|
#ifndef GINPUT_TOGGLE_CONFIG_ENTRIES
|
|
|
|
#define GINPUT_TOGGLE_CONFIG_ENTRIES 1 // The total number of GToggleConfig entries
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// The total number of toggle inputs
|
|
|
|
#define GINPUT_TOGGLE_NUM_PORTS (8 * GINPUT_TOGGLE_CONFIG_ENTRIES)
|
2013-02-11 08:25:45 +00:00
|
|
|
|
|
|
|
#define GINPUT_TOGGLE_SW1 0 // Switch 1 - Toggle
|
|
|
|
#define GINPUT_TOGGLE_SW2 1 // Switch 2 - Toggle
|
|
|
|
#define GINPUT_TOGGLE_SW3 2 // Switch 3 - Toggle
|
|
|
|
#define GINPUT_TOGGLE_SW4 3 // Switch 4 - Toggle
|
|
|
|
|
|
|
|
#define GINPUT_TOGGLE_MOMENTARY1 4 // Switch 5 - Momentary
|
|
|
|
#define GINPUT_TOGGLE_MOMENTARY2 5 // Switch 6 - Momentary
|
|
|
|
#define GINPUT_TOGGLE_MOMENTARY3 6 // Switch 7 - Momentary
|
|
|
|
#define GINPUT_TOGGLE_MOMENTARY4 7 // Switch 8 - Momentary
|
2013-10-12 03:24:40 +00:00
|
|
|
|
|
|
|
// This pattern of switch and momentary action is repeated across all windows.
|
2013-02-11 08:25:45 +00:00
|
|
|
|
|
|
|
#endif /* GFX_USE_GDISP && GINPUT_NEED_TOGGLE */
|
|
|
|
|
|
|
|
#endif /* _GINPUT_LLD_TOGGLE_CONFIG_H */
|