usbuart: Removed the STM32 version of usbuart.c now it's not required
This commit is contained in:
parent
9ca1b645bb
commit
d0915a1312
|
@ -18,7 +18,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c
|
timing_stm32.c
|
||||||
|
|
|
@ -30,7 +30,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -16,7 +16,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -18,7 +18,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -30,7 +30,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -18,7 +18,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -23,7 +23,6 @@ VPATH += platforms/stm32
|
||||||
SRC += \
|
SRC += \
|
||||||
traceswodecode.c \
|
traceswodecode.c \
|
||||||
traceswo.c \
|
traceswo.c \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -32,7 +32,6 @@ endif
|
||||||
VPATH += platforms/stm32
|
VPATH += platforms/stm32
|
||||||
|
|
||||||
SRC += \
|
SRC += \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Black Magic Debug project.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2012 Black Sphere Technologies Ltd.
|
|
||||||
* Written by Gareth McMullin <gareth@blacksphere.co.nz>
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* 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 <libopencm3/stm32/gpio.h>
|
|
||||||
#include <libopencm3/stm32/usart.h>
|
|
||||||
#include <libopencm3/stm32/dma.h>
|
|
||||||
#include <libopencm3/cm3/cortex.h>
|
|
||||||
#include <libopencm3/cm3/nvic.h>
|
|
||||||
#include <libopencm3/cm3/scs.h>
|
|
||||||
#include <libopencm3/usb/usbd.h>
|
|
||||||
#include <libopencm3/usb/cdc.h>
|
|
||||||
|
|
||||||
#include "general.h"
|
|
||||||
#include "usbuart.h"
|
|
||||||
#include "usb.h"
|
|
||||||
#include "aux_serial.h"
|
|
|
@ -20,7 +20,6 @@ endif
|
||||||
VPATH += platforms/stm32
|
VPATH += platforms/stm32
|
||||||
|
|
||||||
SRC += \
|
SRC += \
|
||||||
usbuart.c \
|
|
||||||
serialno.c \
|
serialno.c \
|
||||||
timing.c \
|
timing.c \
|
||||||
timing_stm32.c \
|
timing_stm32.c \
|
||||||
|
|
Loading…
Reference in New Issue