

amptest
This repository has no backups
This repository's network speed is throttled to 100KB/sec
Upgrade your account to fix these warnings, or use backups.vc for automated backups
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#pragma once enum ESignalMode { eConstant, eSine, eTriangle, eMeandr, // eSweep }; int getTabSize(); ESignalMode getMode(); void setMode(ESignalMode mode); void setMode(const char* szMode); const char* getCurrentModeName(); double getAmp(); void setAmp(double factor); // 0.0 - 1.0 uint32_t getNextDAC(); |