summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/lufa/outputselect.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-02-20 18:11:02 +1100
committerGitHub <noreply@github.com>2021-02-20 18:11:02 +1100
commit7ab9f6a1010108c329f6880fe08716dd06a90daf (patch)
tree353aad3c8803db05d4cf9e191816dc3e8adcd995 /tmk_core/protocol/lufa/outputselect.h
parent4794f6ac4d9bb91b2b7ecf078e1406e6a81aaf12 (diff)
Output selection: Remove "USB and BT" option (#11940)
Diffstat (limited to 'tmk_core/protocol/lufa/outputselect.h')
-rw-r--r--tmk_core/protocol/lufa/outputselect.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/tmk_core/protocol/lufa/outputselect.h b/tmk_core/protocol/lufa/outputselect.h
index 7f7ed00b95..c4548e1122 100644
--- a/tmk_core/protocol/lufa/outputselect.h
+++ b/tmk_core/protocol/lufa/outputselect.h
@@ -21,21 +21,11 @@ enum outputs {
OUTPUT_NONE,
OUTPUT_USB,
- OUTPUT_BLUETOOTH,
-
- // backward compatibility
- OUTPUT_USB_AND_BT
+ OUTPUT_BLUETOOTH
};
-/**
- * backward compatibility for BLUETOOTH_ENABLE, send to BT and USB by default
- */
#ifndef OUTPUT_DEFAULT
-# ifdef BLUETOOTH_ENABLE
-# define OUTPUT_DEFAULT OUTPUT_USB_AND_BT
-# else
-# define OUTPUT_DEFAULT OUTPUT_AUTO
-# endif
+# define OUTPUT_DEFAULT OUTPUT_AUTO
#endif
void set_output(uint8_t output);