aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/gdispXXXXX/gdisp_lld.c18
-rw-r--r--templates/touchpadXXXXX/touchpad_lld.c2
2 files changed, 12 insertions, 8 deletions
diff --git a/templates/gdispXXXXX/gdisp_lld.c b/templates/gdispXXXXX/gdisp_lld.c
index 09912d9f..205b7fa2 100644
--- a/templates/gdispXXXXX/gdisp_lld.c
+++ b/templates/gdispXXXXX/gdisp_lld.c
@@ -338,9 +338,10 @@ void GDISP_LLD(drawpixel)(coord_t x, coord_t y, color_t color) {
* @brief Draw a character using a transparent background.
* @note Optional - The high level driver can emulate using software.
*
- * @param[in] x, y The top-left corner of the text
- * @param[in] c The character to print
- * @param[in] color The color of the character
+ * @param[in] x, y The top-left corner of the text
+ * @param[in] c The character to print
+ * @param[in] font The font to use
+ * @param[in] color The color of the character
*
* @notapi
*/
@@ -357,10 +358,11 @@ void GDISP_LLD(drawpixel)(coord_t x, coord_t y, color_t color) {
* @brief Draw a character using a filled background.
* @note Optional - The high level driver can emulate using software.
*
- * @param[in] x, y The top-left corner of the text
- * @param[in] c The character to print
- * @param[in] color The color of the character
- * @param[in] bgcolor The background color
+ * @param[in] x, y The top-left corner of the text
+ * @param[in] c The character to print
+ * @param[in] font The font to use
+ * @param[in] color The color of the character
+ * @param[in] bgcolor The background color
*
* @notapi
*/
@@ -420,7 +422,7 @@ void GDISP_LLD(drawpixel)(coord_t x, coord_t y, color_t color) {
#if (GDISP_NEED_CONTROL && GDISP_HARDWARE_CONTROL) || defined(__DOXYGEN__)
/**
* @brief Driver Control
- * @detail Unsupported control codes are ignored.
+ * @details Unsupported control codes are ignored.
* @note The value parameter should always be typecast to (void *).
* @note There are some predefined and some specific to the low level driver.
* @note GDISP_CONTROL_POWER - Takes a gdisp_powermode_t
diff --git a/templates/touchpadXXXXX/touchpad_lld.c b/templates/touchpadXXXXX/touchpad_lld.c
index 9bcae27d..bba9c71e 100644
--- a/templates/touchpadXXXXX/touchpad_lld.c
+++ b/templates/touchpadXXXXX/touchpad_lld.c
@@ -71,6 +71,8 @@
/**
* @brief Low level Touchpad driver initialization.
*
+ * @param[in] tp The touchpad driver struct
+ *
* @notapi
*/
void tp_lld_init(TOUCHPADDriver *tp) {