Changeset 7e60b7d in rtems


Ignore:
Timestamp:
07/12/14 22:04:19 (9 years ago)
Author:
Ben Gras <beng@…>
Branches:
4.11, 5, master
Children:
7e119990
Parents:
9ba76ed8
git-author:
Ben Gras <beng@…> (07/12/14 22:04:19)
git-committer:
Joel Sherrill <joel.sherrill@…> (07/15/14 15:03:32)
Message:

uart-output-char.h: extra offset definition.

All,

This patch is submitted as its values are used in my to-be-submitted
beagle bsp.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/shared/include/uart-output-char.h

    r9ba76ed8 r7e60b7d  
    3535#define CONSOLE_FCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x08))
    3636#define CONSOLE_LCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x0C))
     37#define CONSOLE_MCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x10))
    3738#define CONSOLE_LSR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x14))
    3839#define CONSOLE_SCR (*(volatile uint32_t *) (BSP_CONSOLE_UART_BASE + 0x1C))
     
    4445#define CONSOLE_LSR_RDR 0x1
    4546#define CONSOLE_LSR_THRE 0x20
     47#define CONSOLE_LSR_TEMT 0x40
    4648
    4749#define BSP_CONSOLE_UART_INIT(dll) \
Note: See TracChangeset for help on using the changeset viewer.