c5a86757bd
The only include path now needed is for drivers (in particular GDISP drivers)
25 lines
668 B
C
25 lines
668 B
C
/*
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
*
|
|
* http://ugfx.org/license.html
|
|
*/
|
|
|
|
#include "gfx.h"
|
|
|
|
#if (GFX_USE_GINPUT && GINPUT_NEED_TOGGLE) /*|| defined(__DOXYGEN__)*/
|
|
|
|
#include "../../../../src/ginput/ginput_driver_toggle.h"
|
|
|
|
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 */
|