10 lines
207 B
C
10 lines
207 B
C
|
#ifndef _RFTRANSFER_H
|
||
|
#define _RFTRANSFER_H
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void rftransfer_send(uint16_t size, uint8_t *data);
|
||
|
uint16_t rftransfer_receive(uint8_t *buffer, uint16_t maxlen, uint16_t timeout);
|
||
|
|
||
|
|
||
|
#endif
|