source: rtems/c/src/lib/libbsp/m68k/idp/console/leds.c @ ac7d5ef0

4.104.114.84.95
Last change on this file since ac7d5ef0 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*
2 * leds.c -- control the led's on a Motorola mc68ec0x0 board.
3 *           Written by rob@cygnus.com (Rob Savoye)
4 */
5#include "leds.h"
6
7void zylons();
8void led_putnum();
9void clear_leds();
10
11/*
12 * led_putnum -- print a hex number on the LED. the value of num must be a char with
13 *              the ascii value. ie... number 0 is '0', a is 'a', ' ' (null) clears
14 *              the led display.
15 *              Setting the bit to 0 turns it on, 1 turns it off.
16 *              the LED's are controlled by setting the right bit mask in the base
17 *              address.
18 *              The bits are:
19 *                      [d.p | g | f | e | d | c | b | a ] is the byte.
20 *
21 *              The locations are:
22 *             
23 *                       a
24 *                     -----
25 *                  f |     | b
26 *                    |  g  |
27 *                     -----
28 *                    |     |
29 *                  e |     | c
30 *                     -----
31 *                       d                . d.p (decimal point)
32 */
33void
34led_putnum ( num )
35char num;
36{
37    static unsigned char *leds = (unsigned char *)LED_ADDR;
38    static unsigned char num_bits [18] = {
39      0xff,                                             /* clear all */
40      0xc0, 0xf9, 0xa4, 0xb0, 0x99, 0x92, 0x82, 0xf8, 0x80, 0x98, /* numbers 0-9 */
41      0x98, 0x20, 0x3, 0x27, 0x21, 0x4, 0xe             /* letters a-f */
42    };
43
44    if (num >= '0' && num <= '9')
45      num = (num - '0') + 1;
46
47    if (num >= 'a' && num <= 'f')
48      num = (num - 'a') + 12;
49
50    if (num == ' ')
51      num = 0;
52
53    *leds = num_bits[(int)num];
54}
55
56/* This procedure added by Doug McBride, Colorado Space Grant College --
57   Probably should be a macro instead */
58void
59clear_leds ( )
60{
61    static unsigned char *leds = (unsigned char *)LED_ADDR;
62    *leds = 0xFF;
63}
64
65/*
66 * zylons -- draw a rotating pattern. NOTE: this function never returns.
67 */
68void
69zylons()
70{
71  unsigned char *leds   = (unsigned char *)LED_ADDR;
72  unsigned char curled = 0xfe;
73
74  while (1)
75    {
76      *leds = curled;
77      curled = (curled >> 1) | (curled << 7);
78      delay ( 8000 );
79    }
80}
Note: See TracBrowser for help on using the repository browser.