zephyr/include/drivers/serial/uart_ns16550.h
Andrew Boie 743677d743 uart: ns16550: place header in correct spot
This is an application facing define, specific to this
driver, for the public uart_drv_cmd() API. Put it with
public headers.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2019-02-22 23:32:31 -05:00

17 lines
306 B
C

/*
* Copyright (c) 2015 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Header file for the NS16550 UART
*/
#ifndef ZEPHYR_DRIVERS_SERIAL_UART_NS16550_H_
#define ZEPHYR_DRIVERS_SERIAL_UART_NS16550_H_
#define CMD_SET_DLF 0x01
#endif /* ZEPHYR_DRIVERS_SERIAL_UART_NS16550_H_ */