ugfx_release_2.6
Joel Bodenmann 2012-11-02 09:33:56 +01:00
parent 7603ae3082
commit 397b5074e8
4 changed files with 8 additions and 1 deletions

View File

@ -67,6 +67,8 @@
/**
* @brief Low level Touchpad driver initialization.
*
* @param[in] The touchpad driver
*
* @notapi
*/
void tp_lld_init(const TOUCHPADDriver *tp) {

View File

@ -166,6 +166,7 @@ void gwinClear(GHandle gh) {
* @note May leave GDISP clipping to this window's dimensions
*
* @param[in] gh The window handle
* @param[in] x,y The coordinates of the pixel
*
* @api
*/

View File

@ -507,7 +507,7 @@ void GDISP_LLD(drawpixel)(coord_t x, coord_t y, color_t color) {
#if (GDISP_NEED_QUERY && GDISP_HARDWARE_QUERY) || defined(__DOXYGEN__)
/**
* @brief Query a driver value.
* @detail Typecase the result to the type you want.
* @details Typecase the result to the type you want.
* @note GDISP_QUERY_WIDTH - (coord_t) Gets the width of the screen
* GDISP_QUERY_HEIGHT - (coord_t) Gets the height of the screen
* GDISP_QUERY_POWER - (gdisp_powermode_t) Get the current powermode

View File

@ -82,6 +82,8 @@ void tp_lld_init(TOUCHPADDriver *tp) {
/**
* @brief Reads out the X direction.
*
* @return The uncalibrated X coordinate
*
* @notapi
*/
uint16_t tp_lld_read_x(void) {
@ -98,6 +100,8 @@ uint16_t tp_lld_read_x(void) {
/*
* @brief Reads out the Y direction.
*
* @return The uncalibrated Y coordinate
*
* @notapi
*/
uint16_t tp_lld_read_y(void) {