mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-09 06:10:49 +02:00
10 lines
162 B
C
10 lines
162 B
C
#ifndef CMDE_SPI_H
|
|
#define CMDE_SPI_H
|
|
|
|
#include "stm32f10x.h"
|
|
|
|
void SPI_INIT(void);
|
|
void SPI_SEND(void);
|
|
void SPI_RECEP(void);
|
|
|
|
#endif /* CMDE_SPI_H */
|