PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 lines
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