mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-15 14:20:51 +08:00
f8c33af1da
Adjust armsrc/Makefile and client/Makefile to include the -DWITH_FPC flag to compile with FPC enabled.
12 lines
243 B
C
12 lines
243 B
C
#ifndef __USART_H
|
|
#define __USART_H
|
|
|
|
#include <stddef.h>
|
|
#include "proxmark3.h"
|
|
|
|
void usart_init(void);
|
|
void usart_close(void);
|
|
|
|
int16_t usart_readbuffer(uint8_t *data, size_t len);
|
|
int16_t usart_writebuffer(uint8_t *data, size_t len);
|
|
#endif
|