PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
503B

  1. #pragma once
  2. #include "unit-tests.h"
  3. #include <src/midi_Settings.h>
  4. BEGIN_UNIT_TESTS_NAMESPACE
  5. template<bool RunningStatus, bool OneByteParsing>
  6. struct VariableSettings : public midi::DefaultSettings
  7. {
  8. static const bool UseRunningStatus = RunningStatus;
  9. static const bool Use1ByteParsing = OneByteParsing;
  10. };
  11. template<bool A, bool B>
  12. const bool VariableSettings<A, B>::UseRunningStatus;
  13. template<bool A, bool B>
  14. const bool VariableSettings<A, B>::Use1ByteParsing;
  15. END_UNIT_TESTS_NAMESPACE