summaryrefslogtreecommitdiff
path: root/chip/stm32/usb-stm32f0.c
blob: 1805c74e5e220f98a4a05723f2f91f7d9ce54c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright (c) 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 "usb_api.h"

void usb_connect(void)
{
	STM32_USB_BCDR |= (1 << 15) /* DPPU */;
}

void usb_disconnect(void)
{
	/* disable pull-up on DP to disconnect */
	STM32_USB_BCDR &= ~(1 << 15) /* DPPU */;
}