minimacplus/firmware/components/tme/network/ethertalk.h
2018-02-04 15:03:38 +08:00

12 lines
278 B
C

#ifndef ETHERTALK_H
#define ETHERTALK_H
void ethertalk_send_probe(uint8_t dest);
int ethertalk_send_long_ddp(uint8_t *data, int size);
int ethertalk_send_short_ddp(uint8_t *data, int size, uint8_t srcnode, uint8_t dstnode);
void ethertalkInit();
void ethertalkTick();
#endif