Library of hardware declarations and utility functions for the ELEC350/1 Practicals and Coursework

Dependents:   ELEC351_v1 ELEC350-CWTEMPLATE-2017 ELEC350-CWTEMPLATE-2017 ELEC350-CWTEMPLATE-2018

Fork of ELEC350-Practicals-FZ429 by University of Plymouth - Stages 1, 2 and 3

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?

UserRevisionLine numberNew 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