summaryrefslogtreecommitdiff
path: root/chip/stm32/usb-stm32f3.c
blob: ceab410da036be3004087485aae27fe55bef35dc (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.
 *
 * STM32F3 Family specific USB functionality
 */

#include "usb-stm32f3.h"

#include "usb_api.h"

void usb_connect(void)
{
	usb_board_connect();
}

void usb_disconnect(void)
{
	usb_board_connect();
}