10 lines
139 B
C
10 lines
139 B
C
#ifndef RETARGET_H
|
|
#define RETARGET_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void Retarget_Init(uint32_t baudrate);
|
|
void Retarget_PutChar(char ch);
|
|
|
|
#endif
|