Treehouse Mbed Team / Mbed 2 deprecated APS_DCM1SL

Dependencies:   mbed

Committer:
mfwic
Date:
Thu Mar 14 03:22:23 2019 +0000
Revision:
53:004a9674e922
Parent:
44:741ee27c8a34
Changed slowClk.attach to slowClk.attach_us, also fastClk.

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 lut_H
mfwic 42:3ae73b61f657 30 #define lut_H
mfwic 42:3ae73b61f657 31
mfwic 42:3ae73b61f657 32 #include "mbed.h"
mfwic 42:3ae73b61f657 33 #include "parameters.h"
mfwic 42:3ae73b61f657 34
mfwic 44:741ee27c8a34 35 extern unsigned short max_boards;
mfwic 42:3ae73b61f657 36 extern unsigned int bCodeRow[];
mfwic 42:3ae73b61f657 37
mfwic 42:3ae73b61f657 38 #define LUT_MAX_ADC ADC_MAX_VALUE/2
mfwic 42:3ae73b61f657 39
mfwic 42:3ae73b61f657 40 const float LUT_VER = 1.5;
mfwic 42:3ae73b61f657 41
mfwic 42:3ae73b61f657 42 void getLUT_binCodeArray(unsigned short);
mfwic 42:3ae73b61f657 43 unsigned int getLUT_thermCode(unsigned short);
mfwic 42:3ae73b61f657 44
mfwic 42:3ae73b61f657 45 #endif