7segtst.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Copyright (C) 2009 by Rittal GmbH & Co. KG,
  3. * Ulrich Prinz <prinz.u@rittal.de>
  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. * \verbatim
  37. * $Id: 7segtst.c 3108 2010-09-15 21:11:15Z Astralix $
  38. * \endverbatim
  39. */
  40. /*
  41. * Revision 1.0 2009/04/13 ulrichprinz
  42. * First checkin, new twi driver for AS1108 3 Digit 7-Segment driver
  43. * (currently SAM7X256 is tested only)
  44. *
  45. */
  46. /*!
  47. * \example 7segtst/7segtst.c
  48. *
  49. * TWI driver for AS1108 3 Digit 7-Segment driver.
  50. */
  51. #include <cfg/os.h>
  52. #include <io.h>
  53. #include <stdio.h>
  54. #include <dev/board.h>
  55. #include <dev/spi_7seg.h>
  56. /* 7-Segment connection definition
  57. * correct these to the port and bus you use
  58. */
  59. /* SPI-Chipselect of the Display driver */
  60. #define NUT_CONFIG_7SEG_CS 1
  61. /* SPI-Bus the driver is connected to */
  62. #define NUT_CONFIG_7SEG_SPIBUS spiBus0At91
  63. /* FILE handle for display */
  64. FILE *disp;
  65. /*
  66. * Main application routine.
  67. *
  68. * Nut/OS automatically calls this entry after initialization.
  69. */
  70. /******************************************************************/
  71. int main(void)
  72. /******************************************************************/
  73. {
  74. uint32_t baud = 115200;
  75. uint8_t rc;
  76. unsigned int count=0;
  77. /*
  78. * Register the UART device, open it, assign stdout to it and set
  79. * the baudrate.
  80. */
  81. NutRegisterDevice(&DEV_DEBUG, 0, 0);
  82. freopen(DEV_DEBUG_NAME, "w", stdout);
  83. _ioctl(_fileno(stdout), UART_SETSPEED, &baud);
  84. /*
  85. * Register 7-Segment chip at the SPI bus.
  86. */
  87. printf("initSPI_disp7seg... ");
  88. rc = NutRegisterSpiDevice(&devSpi7SEG,&NUT_CONFIG_7SEG_SPIBUS,NUT_CONFIG_7SEG_CS);
  89. if (rc != 0){
  90. /* If it fails, leave a message and end here */
  91. printf("FAILED\n");
  92. fflush(stdout);
  93. while(1);
  94. }
  95. printf("OK\n");
  96. /* The driver implements simple printf support for the display
  97. * so it can be opened as a file and used by fprintf()
  98. */
  99. disp = fopen( devSpi7SEG.dev_name, "w");
  100. for (;;)
  101. {
  102. /* Lets run a counter for a simple demo */
  103. fprintf( disp, "%3d\n", count++);
  104. if(count >999)count=0;
  105. NutSleep(200);
  106. }
  107. return 0;
  108. }