diff --git a/cpu/stm32f4/Makefile.include b/cpu/stm32f4/Makefile.include index ed4584a4859caf21773544aee08bd6c9e6692952..329c4fe9e51b181d9eecde510d8f71ed8287ddd8 100644 --- a/cpu/stm32f4/Makefile.include +++ b/cpu/stm32f4/Makefile.include @@ -3,4 +3,7 @@ export CPU_ARCH = cortex-m4f # use hwtimer compatibility module USEMODULE += hwtimer_compat +# use common periph functions +USEMODULE += periph_common + include $(RIOTCPU)/Makefile.include.cortexm_common diff --git a/cpu/stm32f4/include/periph_cpu.h b/cpu/stm32f4/include/periph_cpu.h index 609fc51f1817333ecc9d41d022f2e90eee2ff2c2..aead4e9a083b4e86f3f470b143b0a5da8e3399da 100644 --- a/cpu/stm32f4/include/periph_cpu.h +++ b/cpu/stm32f4/include/periph_cpu.h @@ -90,6 +90,14 @@ typedef enum { */ void gpio_init_af(gpio_t pin, gpio_af_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 } diff --git a/cpu/stm32f4/periph/spi.c b/cpu/stm32f4/periph/spi.c index 1d59d630b71056fadf1d9f72cf48001bd8173648..2f7eb492675799f27ac5bc158abe18743506f4a4 100644 --- a/cpu/stm32f4/periph/spi.c +++ b/cpu/stm32f4/periph/spi.c @@ -350,66 +350,6 @@ int spi_transfer_byte(spi_t dev, char out, char *in) return 1; } -int spi_transfer_bytes(spi_t dev, char *out, char *in, unsigned int length) -{ - int trans_bytes = 0; - - for (unsigned int i = 0; i < length; i++) { - char in_temp; - int trans_ret; - - if (out) { - trans_ret = spi_transfer_byte(dev, out[i], &in_temp); - } - else { - trans_ret = spi_transfer_byte(dev, 0, &in_temp); - } - - if (trans_ret < 0) { - return -1; - } - - if (in != NULL) { - in[i] = in_temp; - } - trans_bytes++; - } - - return trans_bytes++; -} - -int spi_transfer_reg(spi_t dev, uint8_t reg, char out, char *in) -{ - int trans_ret; - - trans_ret = spi_transfer_byte(dev, reg, in); - if (trans_ret < 0) { - return -1; - } - trans_ret = spi_transfer_byte(dev, out, in); - if (trans_ret < 0) { - return -1; - } - - return 1; -} - -int spi_transfer_regs(spi_t dev, uint8_t reg, char *out, char *in, unsigned int length) -{ - int trans_ret; - - trans_ret = spi_transfer_byte(dev, reg, in); - if (trans_ret < 0) { - return -1; - } - trans_ret = spi_transfer_bytes(dev, out, in, length); - if (trans_ret < 0) { - return -1; - } - - return trans_ret; -} - void spi_transmission_begin(spi_t dev, char reset_val) {