Treehouse Mbed Team / Mbed 2 deprecated APS_DCM1SL

Dependencies:   mbed

Committer:
mfwic
Date:
Sat Mar 09 21:01:45 2019 +0000
Revision:
42:3ae73b61f657
Child:
47:d10bf65cb7dc
Removed V24, I24, I48.; Commented out en_out and wr_out.; Compiles

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mfwic 42:3ae73b61f657 1 //-------------------------------------------------------------------------------
mfwic 42:3ae73b61f657 2 //
mfwic 42:3ae73b61f657 3 // Treehouse Designs Inc.
mfwic 42:3ae73b61f657 4 // Colorado Springs, Colorado
mfwic 42:3ae73b61f657 5 //
mfwic 42:3ae73b61f657 6 // Copyright (c) 2016 by Treehouse Designs Inc.
mfwic 42:3ae73b61f657 7 // Copyright (c) 2018 by Agility Power Systems Inc.
mfwic 42:3ae73b61f657 8 //
mfwic 42:3ae73b61f657 9 // This code is the property of Treehouse Designs, Inc. (Treehouse) and
mfwic 42:3ae73b61f657 10 // Agility Power Systems Inc. (Agility) and may not be redistributed
mfwic 42:3ae73b61f657 11 // in any form without prior written permission from
mfwic 42:3ae73b61f657 12 // both copyright holders, Treehouse and Agility.
mfwic 42:3ae73b61f657 13 //
mfwic 42:3ae73b61f657 14 // The above copyright notice and this permission notice shall be included in
mfwic 42:3ae73b61f657 15 // all copies or substantial portions of the Software.
mfwic 42:3ae73b61f657 16 //
mfwic 42:3ae73b61f657 17 //
mfwic 42:3ae73b61f657 18 //-------------------------------------------------------------------------------
mfwic 42:3ae73b61f657 19 //
mfwic 42:3ae73b61f657 20 // REVISION HISTORY:
mfwic 42:3ae73b61f657 21 //
mfwic 42:3ae73b61f657 22 // $Author: $
mfwic 42:3ae73b61f657 23 // $Rev: $
mfwic 42:3ae73b61f657 24 // $Date: $
mfwic 42:3ae73b61f657 25 // $URL: $
mfwic 42:3ae73b61f657 26 //
mfwic 42:3ae73b61f657 27 //-------------------------------------------------------------------------------
mfwic 42:3ae73b61f657 28
mfwic 42:3ae73b61f657 29 #ifndef clocks_H
mfwic 42:3ae73b61f657 30 #define clocks_H
mfwic 42:3ae73b61f657 31
mfwic 42:3ae73b61f657 32 #include "globals.h"
mfwic 42:3ae73b61f657 33 #include "mbed.h"
mfwic 42:3ae73b61f657 34
mfwic 42:3ae73b61f657 35 void initOut(void);
mfwic 42:3ae73b61f657 36 void flipSlow(void);
mfwic 42:3ae73b61f657 37 void flipFast(void);
mfwic 42:3ae73b61f657 38 void checkFlip(void);
mfwic 42:3ae73b61f657 39
mfwic 42:3ae73b61f657 40
mfwic 42:3ae73b61f657 41 extern volatile bool dosFlip;
mfwic 42:3ae73b61f657 42 extern volatile bool dofFlip;
mfwic 42:3ae73b61f657 43
mfwic 42:3ae73b61f657 44 #endif