mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
44 lines
920 B
C
44 lines
920 B
C
|
/*
|
||
|
* \brief Serial output driver for console lib
|
||
|
* \author Martin Stein
|
||
|
* \date 2013-01-09
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2013 Genode Labs GmbH
|
||
|
*
|
||
|
* This file is part of the Genode OS framework, which is distributed
|
||
|
* under the terms of the GNU General Public License version 2.
|
||
|
*/
|
||
|
|
||
|
#ifndef _INCLUDE__ARNDALE_UART__DRIVERS__SERIAL_LOG_H_
|
||
|
#define _INCLUDE__ARNDALE_UART__DRIVERS__SERIAL_LOG_H_
|
||
|
|
||
|
/* Genode includes */
|
||
|
#include <board.h>
|
||
|
#include <drivers/uart/arndale_uart_base.h>
|
||
|
|
||
|
namespace Genode
|
||
|
{
|
||
|
/**
|
||
|
* Serial output driver for console lib
|
||
|
*/
|
||
|
class Serial_log : public Arndale_uart_base
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
/**
|
||
|
* Constructor
|
||
|
*
|
||
|
* \param baud_rate targeted transfer baud-rate
|
||
|
*/
|
||
|
Serial_log(unsigned const baud_rate) :
|
||
|
Arndale_uart_base(Board::UART_2_MMIO_BASE,
|
||
|
Board::UART_2_CLOCK, baud_rate)
|
||
|
{ }
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* _INCLUDE__ARNDALE_UART__DRIVERS__SERIAL_LOG_H_ */
|
||
|
|