19 lines
314 B
C
19 lines
314 B
C
/*
|
|
* arduino_com.h
|
|
*
|
|
* Created on: 26 okt. 2016
|
|
* Author: Philip
|
|
*/
|
|
|
|
#ifndef DRIVERS_ARDUINO_COM_H_
|
|
#define DRIVERS_ARDUINO_COM_H_
|
|
|
|
#include "drivers/usart.h"
|
|
|
|
#define ARDUINO_BAUD 115200
|
|
#define ARDUINO_DMA_SIZE 15
|
|
|
|
void arduinoCom_init(USART_TypeDef* usart_inst);
|
|
|
|
#endif /* DRIVERS_ARDUINO_COM_H_ */
|