Deconding query string when we get a key value from it.
[bertos.git] / bertos / hw / hw_hx8347.h
index 8f60a881b0b02c3f2e4302f9ac130f01ed32d216..c3af134d1053743fc55d02056554d50f4bff700e 100644 (file)
@@ -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;
 }
 
 /**