L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
uart_16550_dw.h
1/*
2 * Copyright (C) 2015 Technische Universität Dresden.
3 * Copyright (C) 2023-2024 Kernkonzept GmbH.
4 * Author(s): Adam Lackorzynski <adam@l4re.org>
5 *
6 * License: see LICENSE.spdx (in this directory or the directories above)
7 */
8#pragma once
9
10#include "uart_16550.h"
11
12namespace L4
13{
14 class Uart_16550_dw : public Uart_16550
15 {
16 public:
17 explicit Uart_16550_dw(unsigned long base_rate)
18 : Uart_16550(base_rate)
19 {}
20
21 void irq_ack() override;
22 };
23}
L4 low-level kernel interface.