This commit is contained in:
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. * @brief Low level Touchpad driver initialization.
* *
* @param[in] The touchpad driver
*
* @notapi * @notapi
*/ */
void tp_lld_init(const TOUCHPADDriver *tp) { 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 * @note May leave GDISP clipping to this window's dimensions
* *
* @param[in] gh The window handle * @param[in] gh The window handle
* @param[in] x,y The coordinates of the pixel
* *
* @api * @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__) #if (GDISP_NEED_QUERY && GDISP_HARDWARE_QUERY) || defined(__DOXYGEN__)
/** /**
* @brief Query a driver value. * @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 * @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_HEIGHT - (coord_t) Gets the height of the screen
* GDISP_QUERY_POWER - (gdisp_powermode_t) Get the current powermode * 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. * @brief Reads out the X direction.
* *
* @return The uncalibrated X coordinate
*
* @notapi * @notapi
*/ */
uint16_t tp_lld_read_x(void) { uint16_t tp_lld_read_x(void) {
@ -98,6 +100,8 @@ uint16_t tp_lld_read_x(void) {
/* /*
* @brief Reads out the Y direction. * @brief Reads out the Y direction.
* *
* @return The uncalibrated Y coordinate
*
* @notapi * @notapi
*/ */
uint16_t tp_lld_read_y(void) { uint16_t tp_lld_read_y(void) {