Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
296 B

  1. #include <unity.h>
  2. #include <Arduino.h>
  3. // Ensure build system works
  4. // ref: https://github.com/bxparks/UnixHostDuino/pull/6
  5. void test_linkage() {
  6. pinMode(0, INPUT);
  7. pinMode(0, OUTPUT);
  8. }
  9. int main(int argc, char** argv) {
  10. UNITY_BEGIN();
  11. RUN_TEST(test_linkage);
  12. UNITY_END();
  13. }