浏览代码

Use auto output for Adafruit BLE (#4131)

* use auto for adafruit ble

* spacing

* switch ifdef name
Mike Roberts 6 年之前
父节点
当前提交
b60413af60
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      quantum/quantum.c

+ 3 - 0
quantum/quantum.c

@@ -1084,6 +1084,9 @@ void matrix_init_quantum() {
   #ifdef HAPTIC_ENABLE
     haptic_init();
   #endif
+  #ifdef OUTPUT_AUTO_ENABLE
+    set_output(OUTPUT_AUTO);
+  #endif
   matrix_init_kb();
 }