doxygen fixes

ugfx_release_2.6
Joel Bodenmann 2013-06-01 01:57:20 +02:00
parent ebc30c02bc
commit e12a213ff1
4 changed files with 2 additions and 33 deletions

View File

@ -18,17 +18,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file templates/chconf.h
* @brief Configuration file template.
* @details A copy of this file must be placed in each project directory, it
* contains the application specific kernel settings.
*
* @addtogroup config
* @details Kernel related settings and hooks.
* @{
*/
#ifndef _CHCONF_H_
#define _CHCONF_H_
@ -532,4 +521,3 @@
#endif /* _CHCONF_H_ */
/** @} */

View File

@ -18,17 +18,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file templates/halconf.h
* @brief HAL configuration header.
* @details HAL configuration file, this file allows to enable or disable the
* various device drivers from your application. You may also use
* this file in order to override the device drivers default settings.
*
* @addtogroup HAL_CONF
* @{
*/
#ifndef _HALCONF_H_
#define _HALCONF_H_
@ -339,4 +328,3 @@
#endif /* _HALCONF_H_ */
/** @} */

View File

@ -6,7 +6,7 @@
*/
/**
* @file drivers/gdisp/HX8347D/gdisp_lld_board_embest_dmstf4bb.h
* @file drivers/gdisp/HX8347D/gdisp_lld_board_st_stm32f4_discovery.h
* @brief GDISP Graphic Driver subsystem board SPI interface for the HX8347D display.
*
* @addtogroup GDISP

View File

@ -212,7 +212,7 @@ void tdispScroll(uint16_t direction, uint16_t amount, uint16_t delay);
/**
* @brief Set the backlight using PWM-driver
*
* @param[in] percent Sets the brightness of the display in %.
* @param[in] percentage Sets the brightness of the display in %.
* 0% = backlight is off or very low
* 100% = backlight is set to full brightness
*/
@ -229,13 +229,6 @@ void tdispSetBacklight(uint16_t percentage);
*/
void tdispControl(uint16_t what, uint16_t value);
/**
* @brief Set the backlight level
*
* @param[in] percent A percentage from 0 to 100%. 0% will turn off the display
*/
// #define tdispSetBacklight(percent) tdispControl(TDISP_CTRL_BACKLIGHT, (percent))
/**
* @brief Set cursor move mode
*