Commit 15293378 authored by Xavier Piroux's avatar Xavier Piroux Committed by Matthieu Cattin

SD uses USART1 instead of USART0

parent 60b52a75
......@@ -41,9 +41,9 @@
* @param txBuffer points to data to transmit
* @param bytesToSend bytes will be sent
*****************************************************************************/
void USART0_sendBuffer(char* txBuffer, int bytesToSend)
void USART1_sendBuffer(char* txBuffer, int bytesToSend)
{
USART_TypeDef *uart = USART0;
USART_TypeDef *uart = USART1;
int ii;
/* Sending the data */
......
......@@ -50,7 +50,7 @@
#define GPIO_POS2 2
void USART0_sendBuffer(char*, int);
void USART1_sendBuffer(char*, int);
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment