blob: 9f5c1b9005c75482224747d3287154fb5d0d37cb [file] [log] [blame]
Paul Burtonad8783c2016-09-08 07:47:39 +01001/*
2 * Copyright (C) 2016 Imagination Technologies
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7#ifndef __BOARD_BOSTON_LCD_H__
8#define __BOARD_BOSTON_LCD_H__
9
10/**
11 * lowlevel_display() - Display a message on Boston's LCD
12 * @msg: The string to display
13 *
14 * Display the string @msg on the 7 character LCD display of the Boston board.
15 * This is typically used for debug or to present some form of status
16 * indication to the user, allowing faults to be identified when things go
17 * wrong early enough that the UART isn't up.
18 */
19void lowlevel_display(const char msg[static 8]);
20
21#endif /* __BOARD_BOSTON_LCD_H__ */