No changes
sample_hardware.hpp@0:6f9f2e93a0be, 2017-11-09 (annotated)
- Committer:
- noutram
- Date:
- Thu Nov 09 14:24:12 2017 +0000
- Revision:
- 0:6f9f2e93a0be
- Child:
- 1:3250ba797c16
Library for the ELEC350/1 Practical Tasks using the FZ429ZI board
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
noutram | 0:6f9f2e93a0be | 1 | #ifndef __sample_hardware__ |
noutram | 0:6f9f2e93a0be | 2 | #define __sample_hardware__ |
noutram | 0:6f9f2e93a0be | 3 | extern DigitalOut onBoardLED; |
noutram | 0:6f9f2e93a0be | 4 | extern DigitalOut redLED; |
noutram | 0:6f9f2e93a0be | 5 | extern DigitalOut yellowLED; |
noutram | 0:6f9f2e93a0be | 6 | extern DigitalOut greenLED; |
noutram | 0:6f9f2e93a0be | 7 | |
noutram | 0:6f9f2e93a0be | 8 | extern DigitalIn onBoardSwitch; |
noutram | 0:6f9f2e93a0be | 9 | extern DigitalIn SW1; |
noutram | 0:6f9f2e93a0be | 10 | extern DigitalIn SW2; |
noutram | 0:6f9f2e93a0be | 11 | //extern Serial pc; |
noutram | 0:6f9f2e93a0be | 12 | |
noutram | 0:6f9f2e93a0be | 13 | extern void post(); |
noutram | 0:6f9f2e93a0be | 14 | |
noutram | 0:6f9f2e93a0be | 15 | #endif |