08e1b0ebc7
Documenting the drivers interface should be done inside a template driver or the gdisp LLD abstraction.
25 lines
673 B
C
25 lines
673 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/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 */
|