-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.h
27 lines (24 loc) · 875 Bytes
/
display.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*****************************************************************************
* Copyright (C) 2019 by Ismail Yesildirek & Bijan Kianian
*
* Redistribution, modification or use of this software in source or binary
* forms is permitted as long as the files maintain this copyright. Users are
* permitted to modify this and use it to learn about the field of embedded
* software. Ismail Yesildirek, Bijan Kianian, and the University of Colorado are not
* liable for any misuse of this material.
*
*****************************************************************************/
/**
* @file display.h
* @brief This header file provides user interface interaction
* response via functions
*
* @author Ismail Yesildirek & Bijan Kianian
* @date February 24 2019
* @version 1.0
*
*/
#include <stdint.h>
/* Prototype list */
void display(int32_t*, int32_t);
/* End prototype list */