/* * \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 #include 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_ */