mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
16 lines
294 B
C
16 lines
294 B
C
#pragma once
|
|
#include "minunit.h"
|
|
|
|
/* Misc. counters */
|
|
int minunit_run = 0;
|
|
int minunit_assert = 0;
|
|
int minunit_fail = 0;
|
|
int minunit_status = 0;
|
|
|
|
/* Timers */
|
|
double minunit_real_timer = 0;
|
|
double minunit_proc_timer = 0;
|
|
|
|
/* Last message */
|
|
char minunit_last_message[MINUNIT_MESSAGE_LEN];
|