2013-05-24 15:26:52 +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-24 15:26:52 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-24 15:26:52 +00:00
|
|
|
*/
|
2013-02-11 08:25:45 +00:00
|
|
|
|
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if (GFX_USE_GINPUT && GINPUT_NEED_TOGGLE) /*|| defined(__DOXYGEN__)*/
|
|
|
|
|
2014-02-18 14:36:52 +00:00
|
|
|
#include "src/ginput/driver_toggle.h"
|
2013-02-11 08:25:45 +00:00
|
|
|
|
|
|
|
GINPUT_TOGGLE_DECLARE_STRUCTURE();
|
|
|
|
|
|
|
|
void ginput_lld_toggle_init(const GToggleConfig *ptc) {
|
|
|
|
palSetGroupMode(((IOBus *)ptc->id)->portid, ptc->mask, 0, ptc->mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned ginput_lld_toggle_getbits(const GToggleConfig *ptc) {
|
|
|
|
return palReadBus((IOBus *)ptc->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GINPUT && GINPUT_NEED_TOGGLE */
|