Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of Lab_6_WaG by
display.h@10:ae0a262ba48d, 2018-02-22 (annotated)
- Committer:
- spm71
- Date:
- Thu Feb 22 16:22:19 2018 +0000
- Revision:
- 10:ae0a262ba48d
- Parent:
- 8:d8bc78bda829
- Child:
- 11:6751b9406142
Fixed concurrent functions
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
phn10 | 5:92cdff7fb885 | 1 | /****************************************************************************** |
phn10 | 5:92cdff7fb885 | 2 | * EECS 397 |
phn10 | 5:92cdff7fb885 | 3 | * |
phn10 | 5:92cdff7fb885 | 4 | * Assignment Name: Lab 4: display_test2 |
phn10 | 5:92cdff7fb885 | 5 | * |
phn10 | 5:92cdff7fb885 | 6 | * Authors: Sam Morrison and Phong Nguyen |
phn10 | 5:92cdff7fb885 | 7 | * File name: display.h |
phn10 | 5:92cdff7fb885 | 8 | * Purpose: Contain function prototypes and consant variable |
phn10 | 5:92cdff7fb885 | 9 | * |
phn10 | 5:92cdff7fb885 | 10 | * Created: 02/21/2018 |
phn10 | 5:92cdff7fb885 | 11 | * Last Modified: 02/21/2018 |
phn10 | 5:92cdff7fb885 | 12 | * |
phn10 | 5:92cdff7fb885 | 13 | ******************************************************************************/ |
phn10 | 5:92cdff7fb885 | 14 | #ifndef DISPLAY_H |
phn10 | 5:92cdff7fb885 | 15 | #define DISPLAY_H |
phn10 | 5:92cdff7fb885 | 16 | |
phn10 | 5:92cdff7fb885 | 17 | #include "mbed.h" |
phn10 | 8:d8bc78bda829 | 18 | #include "io_pins.h" |
phn10 | 5:92cdff7fb885 | 19 | |
phn10 | 8:d8bc78bda829 | 20 | extern SPI spi; |
phn10 | 8:d8bc78bda829 | 21 | extern int bcd[4]; |
phn10 | 5:92cdff7fb885 | 22 | |
phn10 | 8:d8bc78bda829 | 23 | void initial_setup(DigitalOut SS, int data_length, int spi_frequency); |
spm71 | 10:ae0a262ba48d | 24 | void bin2bcd_array(int num, char bcd[]); |
phn10 | 5:92cdff7fb885 | 25 | int convert(int dec); |
phn10 | 5:92cdff7fb885 | 26 | char to_command(char input, int place); |
phn10 | 5:92cdff7fb885 | 27 | |
phn10 | 5:92cdff7fb885 | 28 | #endif /*DISPLAY_H */ |