diff options
author | Ryan <fauxpark@gmail.com> | 2020-08-19 22:46:15 +1000 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | 3f392c09b60d46d9e4a4d3cc150a26294dea4da7 (patch) | |
tree | 87fe710bbfd25890a106ea54b33e2b86fce02075 /tmk_core/protocol/lufa/outputselect.h | |
parent | 47f8947bf5aa3ff1cbb484a2d6dc3fa818987700 (diff) |
More Bluetooth refactoring (#9905)
Diffstat (limited to 'tmk_core/protocol/lufa/outputselect.h')
-rw-r--r-- | tmk_core/protocol/lufa/outputselect.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tmk_core/protocol/lufa/outputselect.h b/tmk_core/protocol/lufa/outputselect.h index 24fe4daa24..7f7ed00b95 100644 --- a/tmk_core/protocol/lufa/outputselect.h +++ b/tmk_core/protocol/lufa/outputselect.h @@ -12,6 +12,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#pragma once + +#include <stdint.h> + enum outputs { OUTPUT_AUTO, @@ -37,4 +41,4 @@ enum outputs { void set_output(uint8_t output); void set_output_user(uint8_t output); uint8_t auto_detect_output(void); -uint8_t where_to_send(void);
\ No newline at end of file +uint8_t where_to_send(void); |