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.
test_fg.h@0:be95bfb06686, 2022-01-17 (annotated)
- Committer:
- wuliqunyy
- Date:
- Mon Jan 17 13:20:09 2022 +0000
- Revision:
- 0:be95bfb06686
a working non_flat + adc_didt for ehp regulation version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wuliqunyy | 0:be95bfb06686 | 1 | //Class delclarations |
wuliqunyy | 0:be95bfb06686 | 2 | |
wuliqunyy | 0:be95bfb06686 | 3 | #include "mbed.h" |
wuliqunyy | 0:be95bfb06686 | 4 | #include "test_vector.h" |
wuliqunyy | 0:be95bfb06686 | 5 | |
wuliqunyy | 0:be95bfb06686 | 6 | class test_fg:public test_vector { |
wuliqunyy | 0:be95bfb06686 | 7 | |
wuliqunyy | 0:be95bfb06686 | 8 | public: |
wuliqunyy | 0:be95bfb06686 | 9 | /*constructor*/ |
wuliqunyy | 0:be95bfb06686 | 10 | test_fg(PinName pin); |
wuliqunyy | 0:be95bfb06686 | 11 | virtual void configure(); |
wuliqunyy | 0:be95bfb06686 | 12 | virtual void run(); |
wuliqunyy | 0:be95bfb06686 | 13 | virtual void stop(); |
wuliqunyy | 0:be95bfb06686 | 14 | virtual uint32_t* getResult(); |
wuliqunyy | 0:be95bfb06686 | 15 | virtual char* getResultStatus(); |
wuliqunyy | 0:be95bfb06686 | 16 | virtual void release(); |
wuliqunyy | 0:be95bfb06686 | 17 | virtual uint32_t getBufferSize(); |
wuliqunyy | 0:be95bfb06686 | 18 | |
wuliqunyy | 0:be95bfb06686 | 19 | private: |
wuliqunyy | 0:be95bfb06686 | 20 | |
wuliqunyy | 0:be95bfb06686 | 21 | }; |
wuliqunyy | 0:be95bfb06686 | 22 |