aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-11-02 09:33:56 +0100
committerJoel Bodenmann <joel@unormal.org>2012-11-02 09:33:56 +0100
commit397b5074e8a8fae3dbfa52dd0ce62e4ccb2908dc (patch)
tree292a9658f1cd4ed4a6df31ae354f2d753a1fd84c /templates
parent7603ae30822052a898e05f0634ae6a4ab9ac4792 (diff)
downloaduGFX-397b5074e8a8fae3dbfa52dd0ce62e4ccb2908dc.tar.gz
uGFX-397b5074e8a8fae3dbfa52dd0ce62e4ccb2908dc.tar.bz2
uGFX-397b5074e8a8fae3dbfa52dd0ce62e4ccb2908dc.zip
docs
Diffstat (limited to 'templates')
-rw-r--r--templates/gdispXXXXX/gdisp_lld.c2
-rw-r--r--templates/touchpadXXXXX/touchpad_lld.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/templates/gdispXXXXX/gdisp_lld.c b/templates/gdispXXXXX/gdisp_lld.c
index 5aa10f2d..09912d9f 100644
--- a/templates/gdispXXXXX/gdisp_lld.c
+++ b/templates/gdispXXXXX/gdisp_lld.c
@@ -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
diff --git a/templates/touchpadXXXXX/touchpad_lld.c b/templates/touchpadXXXXX/touchpad_lld.c
index 2fec6ade..9bcae27d 100644
--- a/templates/touchpadXXXXX/touchpad_lld.c
+++ b/templates/touchpadXXXXX/touchpad_lld.c
@@ -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) {