BeRTOS
|
00001 00044 #ifndef HW_HX8347_H 00045 #define HW_HX8347_H 00046 00047 #warning TODO: This is an example implementation, you must implement it! 00048 00052 INLINE void hx8347_cmd(uint8_t cmd) 00053 { 00054 /* Implement me */ 00055 (void)cmd; 00056 } 00057 00061 INLINE void hx8347_write(uint16_t data) 00062 { 00063 /* Implement me */ 00064 (void)data; 00065 } 00066 00070 INLINE uint16_t hx8347_read(void) 00071 { 00072 /* Implement me */ 00073 return 0; 00074 } 00075 00079 INLINE void hx8347_busInit(void) 00080 { 00081 /* Implement me */ 00082 } 00083 00084 #endif /* HW_HX8347_H */