diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-09-28 23:42:53 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-09-28 23:42:53 +0200 |
commit | 0253b7df4967b3fee54d9d9a1e588e6da8cd687d (patch) | |
tree | 2b54acc57c2dcef1cfc6daa12e9142fc5b156d90 /src/gdisp | |
parent | 8d7bbe7e45e47e24074676ca996c0b744b14c959 (diff) | |
download | uGFX-0253b7df4967b3fee54d9d9a1e588e6da8cd687d.tar.gz uGFX-0253b7df4967b3fee54d9d9a1e588e6da8cd687d.tar.bz2 uGFX-0253b7df4967b3fee54d9d9a1e588e6da8cd687d.zip |
some more doxygen fixes
Diffstat (limited to 'src/gdisp')
-rw-r--r-- | src/gdisp/sys_defs.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gdisp/sys_defs.h b/src/gdisp/sys_defs.h index 35844e2d..6ebfe8b5 100644 --- a/src/gdisp/sys_defs.h +++ b/src/gdisp/sys_defs.h @@ -250,6 +250,8 @@ unsigned gdispGetDisplayCount(void); * * @param[in] g The display to use * + * @return The width of the display + * * @api */ coord_t gdispGGetWidth(GDisplay *g); @@ -260,6 +262,8 @@ coord_t gdispGGetWidth(GDisplay *g); * * @param[in] g The display to use * + * @return The height of the display + * * @api */ coord_t gdispGGetHeight(GDisplay *g); @@ -270,6 +274,8 @@ coord_t gdispGGetHeight(GDisplay *g); * * @param[in] g The display to use * + * @return The current power mode + * * @api */ powermode_t gdispGGetPowerMode(GDisplay *g); @@ -280,6 +286,8 @@ powermode_t gdispGGetPowerMode(GDisplay *g); * * @param[in] g The display to use * + * @return The current orientation + * * @api */ orientation_t gdispGGetOrientation(GDisplay *g); @@ -290,6 +298,8 @@ orientation_t gdispGGetOrientation(GDisplay *g); * * @param[in] g The display to use * + * @return The current backlight value + * * @api */ uint8_t gdispGGetBacklight(GDisplay *g); @@ -300,6 +310,8 @@ uint8_t gdispGGetBacklight(GDisplay *g); * * @param[in] g The display to use * + * @return The current contrast value + * * @api */ uint8_t gdispGGetContrast(GDisplay *g); |