cpu/stm32f1: use common STM32 files

This commit is contained in:
Hauke Petersen 2016-02-08 21:50:52 +01:00
parent a04f509857
commit bae3e7185a
3 changed files with 7 additions and 17 deletions

View File

@ -2,6 +2,6 @@
MODULE = cpu MODULE = cpu
# add a list of subdirectories, that should also be build # add a list of subdirectories, that should also be build
DIRS += periph $(RIOTCPU)/cortexm_common DIRS += periph $(RIOTCPU)/cortexm_common $(RIOTCPU)/stm32_common
include $(RIOTBASE)/Makefile.base include $(RIOTBASE)/Makefile.base

View File

@ -1,6 +1,5 @@
export CPU_ARCH = cortex-m3 export CPU_ARCH = cortex-m3
export CPU_FAM = stm32f1
# use common periph functions include $(RIOTCPU)/stm32_common/Makefile.include
USEMODULE += periph_common
include $(RIOTCPU)/Makefile.include.cortexm_common include $(RIOTCPU)/Makefile.include.cortexm_common

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2015 Freie Universität Berlin * Copyright (C) 2015-2016 Freie Universität Berlin
* *
* This file is subject to the terms and conditions of the GNU Lesser * This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level * General Public License v2.1. See the file LICENSE in the top level
@ -16,11 +16,11 @@
* @author Hauke Petersen <hauke.peterse@fu-berlin.de> * @author Hauke Petersen <hauke.peterse@fu-berlin.de>
*/ */
#ifndef PERIPH_CPU_H_ #ifndef PERIPH_CPU_H
#define PERIPH_CPU_H_ #define PERIPH_CPU_H
#include "cpu.h" #include "cpu.h"
#include "periph/dev_enums.h" #include "periph_cpu_common.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -107,15 +107,6 @@ typedef enum {
*/ */
void gpio_init_af(gpio_t pin, gpio_af_out_t af); void gpio_init_af(gpio_t pin, gpio_af_out_t af);
/**
* @brief declare needed generic SPI functions
* @{
*/
#define PERIPH_SPI_NEEDS_TRANSFER_BYTES
#define PERIPH_SPI_NEEDS_TRANSFER_REG
#define PERIPH_SPI_NEEDS_TRANSFER_REGS
/** @} */
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif