forked from Traumflug/Teacup_Firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dda_queue.h
45 lines (32 loc) · 831 Bytes
/
dda_queue.h
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
#ifndef _DDA_QUEUE
#define _DDA_QUEUE
#include "dda.h"
#include "timer.h"
#define HEATER_WAIT_TIMEOUT 1000 MS
/*
variables
*/
// this is the ringbuffer that holds the current and pending moves.
extern uint8_t mb_head;
extern uint8_t mb_tail;
extern DDA movebuffer[MOVEBUFFER_SIZE];
/*
methods
*/
// queue status methods
uint8_t queue_full(void);
uint8_t queue_empty(void);
// take one step
void queue_step(void);
// add a new target to the queue
// t == NULL means add a wait for target temp to the queue
void enqueue(TARGET *t);
// called from step timer when current move is complete
void next_move(void) __attribute__ ((hot));
// print queue status
void print_queue(void);
// flush the queue for eg; emergency stop
void queue_flush(void);
// wait for queue to empty
void queue_wait(void);
#endif /* _DDA_QUEUE */