Rev 10 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | mjames | 1 | /* |
2 | * display.h |
||
3 | * |
||
4 | * Created on: 30 Nov 2020 |
||
5 | * Author: mike |
||
6 | */ |
||
7 | |||
8 | #pragma once |
||
9 | |||
10 | #define MAX_DISPLAYS 1 |
||
11 | #if defined __cplusplus |
||
12 | extern "C" { |
||
13 | #endif |
||
14 | |||
15 | extern void |
||
16 | cc_init (); |
||
17 | |||
18 | extern int |
||
19 | cc_display (int dialIndex); |
||
20 | |||
21 | |||
22 | #if defined __cplusplus |
||
23 | } |
||
24 | #endif |