]> git.scottworley.com Git - tattlekey/blame_incremental - client/press.h
client: Bundle press_t[] & pheap_t* together as press_pile_t
[tattlekey] / client / press.h
... / ...
CommitLineData
1#ifndef SENDS_H
2#define SENDS_H
3
4#include "pico/cyw43_arch.h"
5#include "pico/util/pheap.h"
6
7typedef struct {
8 uint32_t timestamp;
9 u16_t seq;
10 u8_t send_count;
11} press_t;
12
13typedef struct {
14 press_t *presses;
15 pheap_t *sleeps_heap;
16} press_pile_t;
17
18press_pile_t *create_press_pile();
19
20void create_press(press_pile_t *pp, uint32_t timestamp, u16_t seq);
21
22/* When do we next need to send something (in seconds since boot)?
23 * Returns -1 if there's nothing pending. */
24int32_t next_scheduled_send(press_pile_t *pp);
25
26#endif