21 lines
353 B
C
21 lines
353 B
C
#ifndef AT91_UDP_H_
|
|
#define AT91_UDP_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void ep_transfer_send(uint32_t ep,
|
|
char *data,
|
|
uint32_t length,
|
|
void (*complete_cb)(void));
|
|
|
|
void ep_transfer_receive(uint32_t ep,
|
|
char *data,
|
|
uint32_t length,
|
|
void (*complete_cb)(void));
|
|
|
|
void ep_send_stall(uint32_t ep);
|
|
|
|
void at91_udp_init(void);
|
|
|
|
#endif /*AT91_UDP_H_*/
|