28 lines
603 B
C
28 lines
603 B
C
/* Copyright 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* STM32F0 Family specific USB functionality
|
|
*/
|
|
|
|
#include "registers.h"
|
|
#include "system.h"
|
|
#include "usb_api.h"
|
|
|
|
void usb_connect(void)
|
|
{
|
|
/* USB is in use */
|
|
disable_sleep(SLEEP_MASK_USB_DEVICE);
|
|
|
|
STM32_USB_BCDR |= BIT(15) /* DPPU */;
|
|
}
|
|
|
|
void usb_disconnect(void)
|
|
{
|
|
/* disable pull-up on DP to disconnect */
|
|
STM32_USB_BCDR &= ~BIT(15) /* DPPU */;
|
|
|
|
/* USB is off, so sleep whenever */
|
|
enable_sleep(SLEEP_MASK_USB_DEVICE);
|
|
}
|