aboutsummaryrefslogtreecommitdiff
path: root/c/arduino/arq.h
blob: 592b0d476d2a72a8c370b525f0af2bdfc4930fae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef ARQ_H
#define ARQ_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdbool.h>
#include <inttypes.h>

#include "framing.h"


typedef enum {
  RECEIVED = 0,
  SEND_SUCCESS = 1,
  NO_ACK = 3,
  BAD_ACK = 4,
  SIZE_ERROR = 5,
  BUSY = 6
} message_event;

typedef void (*send_frame_function)(int16_t size, uint8_t* data);
typedef void (*message_event_function)(message_event e, int16_t size, const uint8_t* const message);
typedef void (*void_function)();

typedef struct {
  uint8_t last_sent_buffer[MAX_FRAME_SIZE];
  int16_t last_sent_size;
  uint8_t last_received_seq;
  uint8_t resends;
  bool awaiting_ack;
  
  send_frame_function sender;
  message_event_function event_handler;
  void_function start_timer;
  void_function stop_timer;
  
} arq;

void init_arq(arq* a);
void receive_frame(arq* a, int16_t size, uint8_t* data);
void timeout(arq* a);
void send_message(arq* a, int16_t size, const uint8_t * const message);



#ifdef __cplusplus
} // extern "C"
#endif

#endif /* ARQ_H */