diff options
author | Nick Brassel <nick@tzarc.org> | 2021-02-15 08:56:13 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 08:56:13 +1100 |
commit | f53e41ac81662a560a299a23c7863dd2f618a1f8 (patch) | |
tree | fcdaf9afd383e537571cc53ef644ba9504e274ec /quantum | |
parent | c27a778281824423a324d04276d291f06b49b1ae (diff) | |
download | qmk_firmware-f53e41ac81662a560a299a23c7863dd2f618a1f8.tar.gz qmk_firmware-f53e41ac81662a560a299a23c7863dd2f618a1f8.zip |
Add support for analog USBPD on STM32G4xx. (#11824)
* Add support for analog USBPD on STM32G4xx.
* Split up to a list of driver types, allow for custom.
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 370a65fe0..b7bf5be31 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h | |||
@@ -193,6 +193,10 @@ extern layer_state_t layer_state; | |||
193 | # include "wpm.h" | 193 | # include "wpm.h" |
194 | #endif | 194 | #endif |
195 | 195 | ||
196 | #ifdef USBPD_ENABLE | ||
197 | # include "usbpd.h" | ||
198 | #endif | ||
199 | |||
196 | // Function substitutions to ease GPIO manipulation | 200 | // Function substitutions to ease GPIO manipulation |
197 | #if defined(__AVR__) | 201 | #if defined(__AVR__) |
198 | typedef uint8_t pin_t; | 202 | typedef uint8_t pin_t; |