spi_mlcd.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * Copyright (C) 2009 by egnite GmbH
  3. * Copyright (C) 2001-2003 by egnite Software GmbH
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. *
  35. */
  36. /*
  37. * $Id: spi_mlcd.c 5472 2013-12-06 00:16:28Z olereinhardt $
  38. */
  39. #include <dev/term.h>
  40. #include <sys/timer.h>
  41. #include <stdlib.h>
  42. #include <string.h>
  43. #ifndef LCD_ROWS
  44. #define LCD_ROWS 2
  45. #endif
  46. #ifndef LCD_COLS
  47. #define LCD_COLS 16
  48. #endif
  49. /*!
  50. * \addtogroup xgDisplay
  51. */
  52. /*@{*/
  53. static void LcdWriteData(uint8_t ch)
  54. {
  55. }
  56. static void LcdWriteCmd(uint8_t cmd, uint8_t xt)
  57. {
  58. }
  59. static void LcdSetCursor(uint8_t pos)
  60. {
  61. }
  62. static void LcdCursorHome(void)
  63. {
  64. }
  65. static void LcdCursorLeft(void)
  66. {
  67. }
  68. static void LcdCursorRight(void)
  69. {
  70. }
  71. static void LcdClear(void)
  72. {
  73. }
  74. static void LcdCursorMode(uint8_t on)
  75. {
  76. }
  77. static int LcdInit(NUTDEVICE *dev)
  78. {
  79. return 0;
  80. }
  81. /*!
  82. * \brief Terminal device control block structure.
  83. */
  84. static TERMDCB dcb_term = {
  85. LcdInit, /*!< \brief Initialize display subsystem, dss_init. */
  86. LcdWriteData, /*!< \brief Write display character, dss_write. */
  87. LcdWriteCmd, /*!< \brief Write display command, dss_command. */
  88. LcdClear, /*!< \brief Clear display, dss_clear. */
  89. LcdSetCursor, /*!< \brief Set display cursor, dss_set_cursor. */
  90. LcdCursorHome, /*!< \brief Set display cursor home, dss_cursor_home. */
  91. LcdCursorLeft, /*!< \brief Move display cursor left, dss_cursor_left. */
  92. LcdCursorRight, /*!< \brief Move display cursor right, dss_cursor_right. */
  93. LcdCursorMode, /*!< \brief Switch cursor on/off, dss_cursor_mode. */
  94. 0, /*!< \brief Mode flags. */
  95. 0, /*!< \brief Status flags. */
  96. LCD_ROWS, /*!< \brief Number of rows. */
  97. LCD_COLS, /*!< \brief Number of columns per row. */
  98. LCD_COLS, /*!< \brief Number of visible columns. */
  99. 0, /*!< \brief Cursor row. */
  100. 0, /*!< \brief Cursor column. */
  101. 0 /*!< \brief Display shadow memory. */
  102. };
  103. /*!
  104. * \brief LCD device information structure.
  105. */
  106. NUTDEVICE devSpiMegaLcd = {
  107. 0, /*!< Pointer to next device. */
  108. {'l', 'c', 'd', 0, 0, 0, 0, 0, 0}, /*!< Unique device name. */
  109. IFTYP_STREAM, /*!< Type of device. */
  110. 0, /*!< Base address. */
  111. 0, /*!< First interrupt number. */
  112. 0, /*!< Interface control block. */
  113. &dcb_term, /*!< Driver control block. */
  114. TermInit, /*!< Driver initialization routine. */
  115. TermIOCtl, /*!< Driver specific control function. */
  116. 0,
  117. TermWrite,
  118. #ifdef __HARVARD_ARCH__
  119. TermWrite_P,
  120. #endif
  121. TermOpen,
  122. TermClose,
  123. NULL,
  124. NULL, /*!< Select function, optional, not yet implemented */
  125. };
  126. /*@}*/