add newline after queue when debugging position
This commit is contained in:
parent
2340808695
commit
db8902b265
4
clock.c
4
clock.c
|
|
@ -8,6 +8,7 @@
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "heater.h"
|
#include "heater.h"
|
||||||
|
#include "serial.h"
|
||||||
|
|
||||||
void clock_250ms() {
|
void clock_250ms() {
|
||||||
if (steptimeout > (30 * 4)) {
|
if (steptimeout > (30 * 4)) {
|
||||||
|
|
@ -26,6 +27,9 @@ void clock_250ms() {
|
||||||
|
|
||||||
// Queue
|
// Queue
|
||||||
print_queue();
|
print_queue();
|
||||||
|
|
||||||
|
// newline
|
||||||
|
serial_writechar('\n');
|
||||||
}
|
}
|
||||||
// temperature
|
// temperature
|
||||||
/* if (temp_get_target())
|
/* if (temp_get_target())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue