Browse Source

Merge remote-tracking branch 'origin/master' into develop

pull/13360/head
QMK Bot 2 years ago
parent
commit
5489c47a27
2 changed files with 4 additions and 2 deletions
  1. +3
    -1
      tmk_core/common/chibios/chibios_config.h
  2. +1
    -1
      tmk_core/common/usb_util.c

+ 3
- 1
tmk_core/common/chibios/chibios_config.h View File

@ -15,7 +15,9 @@
*/
#pragma once
#define SPLIT_USB_DETECT // Force this on for now
#ifndef USB_VBUS_PIN
# define SPLIT_USB_DETECT // Force this on when dedicated pin is not used
#endif
#if defined(STM32F1XX)
# define USE_GPIOV1


+ 1
- 1
tmk_core/common/usb_util.c View File

@ -13,8 +13,8 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "quantum.h"
#include "usb_util.h"
#include "wait.h"
__attribute__((weak)) void usb_disable(void) {}
__attribute__((weak)) bool usb_connected_state(void) { return true; }


Loading…
Cancel
Save