From b3eb079f0ff76073493cba30f64783f94c044b95 Mon Sep 17 00:00:00 2001 From: aleph Date: Mon, 28 Feb 2011 15:11:35 +0000 Subject: [PATCH] hx8347 lcd: Fix build warning in template hardware file git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4733 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/hw/hw_hx8347.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bertos/hw/hw_hx8347.h b/bertos/hw/hw_hx8347.h index 8f60a881..c3af134d 100644 --- a/bertos/hw/hw_hx8347.h +++ b/bertos/hw/hw_hx8347.h @@ -51,7 +51,8 @@ */ INLINE void hx8347_cmd(uint8_t cmd) { - /* Implement me */ + /* Implement me */ + (void)cmd; } /** @@ -59,7 +60,8 @@ INLINE void hx8347_cmd(uint8_t cmd) */ INLINE void hx8347_write(uint16_t data) { - /* Implement me */ + /* Implement me */ + (void)data; } /** @@ -67,7 +69,8 @@ INLINE void hx8347_write(uint16_t data) */ INLINE uint16_t hx8347_read(void) { - /* Implement me */ + /* Implement me */ + return 0; } /** -- 2.25.1