mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-15 14:20:51 +08:00
24eaac8681
chg: FPC com speed limited to 115200 when compiled with FPC chg: USART remake (@drandreas)
12 lines
239 B
C
12 lines
239 B
C
#ifndef __USART_H
|
|
#define __USART_H
|
|
|
|
#include <stddef.h>
|
|
#include "proxmark3.h"
|
|
|
|
void usart_init(void);
|
|
void usart_close(void);
|
|
|
|
int usart_readbuffer(uint8_t *data, size_t len);
|
|
int16_t usart_writebuffer(uint8_t *data, size_t len);
|
|
#endif
|