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.
Dependents: UIT2_MovingAverage UIT2_AllpassReverb UIT2_CombReverb UIT2_FIR_LPF_Symmetry ... more
Revision 7:6a9c1633dd90, committed 2014-11-11
- Comitter:
- MikamiUitOpen
- Date:
- Tue Nov 11 10:04:00 2014 +0000
- Parent:
- 6:6989472e84c4
- Child:
- 8:f933fcd30408
- Commit message:
- 8
Changed in this revision
| ADC_Base.hpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/ADC_Base.hpp Mon Nov 10 06:51:18 2014 +0000
+++ b/ADC_Base.hpp Tue Nov 11 10:04:00 2014 +0000
@@ -4,7 +4,7 @@
// If you use this class on Nucleo F411,
// initialization of the class must be done
// in main() routine.
-// 2014/10/10, Copyright (c) 2014 MIKAMI, Naoki
+// 2014/11/11, Copyright (c) 2014 MIKAMI, Naoki
//------------------------------------------------------
#ifndef ADC_BASE_HPP
@@ -17,9 +17,11 @@
class ADC_Base
{
private:
- // Using mbed library for ADC
+ // Following object of AnalogIn class will be
+ // initialized by menber initializer
AnalogIn adc_;
- // Default constructor is not defined in AnalogIn class
+ // Following two objects of AnalogIn class will be
+ // initailized by regular excutable statements
AnalogIn* adc2_;
AnalogIn* adc3_;