diff options
author | Ryan <fauxpark@gmail.com> | 2023-07-07 21:24:07 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 21:24:07 +1000 |
commit | 30de598650f368e215ad5f82c7b9de52eceb539e (patch) | |
tree | c6fc060fa459e3fc571624530330bbbcb55fea45 /tmk_core/protocol/usb_util.h | |
parent | d83578dbe4df0e77112b673265445d37fd231b93 (diff) |
tmk_core: remove direct `quantum.h` includes (#21465)
Diffstat (limited to 'tmk_core/protocol/usb_util.h')
-rw-r--r-- | tmk_core/protocol/usb_util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tmk_core/protocol/usb_util.h b/tmk_core/protocol/usb_util.h index 13db9fbfbd..6f0e406378 100644 --- a/tmk_core/protocol/usb_util.h +++ b/tmk_core/protocol/usb_util.h @@ -13,10 +13,13 @@ * 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 <stdbool.h> void usb_disconnect(void); + bool usb_connected_state(void); + bool usb_vbus_state(void); |