diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-02-07 13:12:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-07 13:12:29 -0500 |
| commit | 0c2b6951a6ad80649798c0eca36a9999ebae0b13 (patch) | |
| tree | fb8c24479e7978848a1c2a7ff39f117cb3383464 /quantum/quantum_keycodes.h | |
| parent | de659486f52db6492be6ca03ce5450690f5d891d (diff) | |
| parent | e7c4f621f14b60bde68c01ae076cac49cac9927e (diff) | |
| download | qmk_firmware-0c2b6951a6ad80649798c0eca36a9999ebae0b13.tar.gz qmk_firmware-0c2b6951a6ad80649798c0eca36a9999ebae0b13.zip | |
Merge pull request #1057 from priyadi/selectable_output
Implement runtime selectable output (USB or BT)
Diffstat (limited to 'quantum/quantum_keycodes.h')
| -rw-r--r-- | quantum/quantum_keycodes.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 91324be35..a786bd322 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
| @@ -141,6 +141,16 @@ enum quantum_keycodes { | |||
| 141 | PRINT_ON, | 141 | PRINT_ON, |
| 142 | PRINT_OFF, | 142 | PRINT_OFF, |
| 143 | 143 | ||
| 144 | // output selection | ||
| 145 | OUT_AUTO, | ||
| 146 | OUT_USB, | ||
| 147 | #ifdef BLUETOOTH_ENABLE | ||
| 148 | OUT_BT, | ||
| 149 | #endif | ||
| 150 | #ifdef ADAFRUIT_BLE_ENABLE | ||
| 151 | OUT_BLE, | ||
| 152 | #endif | ||
| 153 | |||
| 144 | // always leave at the end | 154 | // always leave at the end |
| 145 | SAFE_RANGE | 155 | SAFE_RANGE |
| 146 | }; | 156 | }; |
