Compare commits

...

2 commits

Author SHA1 Message Date
Solomon Peachy 008e16ec0a mitsud90: Feature enhancements:
* Report if FW version on the M1 is out of date
 * Report cutter & print count count on the M1
 * Report print count in standard stats on W5000 and M1
 * Check memory status in the "wait for ide" loop to enable pipelining
 * Better handle job-specified wait/delay-to-start time
 * Documentation consolidation/update
2024-01-19 11:27:14 -05:00
Solomon Peachy aa45db7e64 common: Supress WARNINGs in quiet mode 2024-01-14 20:54:09 -05:00
3 changed files with 419 additions and 330 deletions

View file

@ -29,7 +29,7 @@
#include <signal.h>
#include <strings.h> /* For strncasecmp */
#define BACKEND_VERSION "0.129"
#define BACKEND_VERSION "0.130"
#ifndef CORRTABLE_PATH
#ifdef PACKAGE_DATA_DIR

View file

@ -56,7 +56,7 @@
#define DEBUG( ... ) do { if (!quiet) fprintf(logger, "DEBUG: " __VA_ARGS__ ); } while(0)
#define DEBUG2( ... ) do { if (!quiet) fprintf(logger, __VA_ARGS__ ); } while(0)
#define INFO( ... ) do { if (!quiet) fprintf(logger, "INFO: " __VA_ARGS__ ); } while(0)
#define WARNING( ... ) do { fprintf(logger, "WARNING: " __VA_ARGS__ ); } while(0)
#define WARNING( ... ) do { if (!quiet) fprintf(logger, "WARNING: " __VA_ARGS__ ); } while(0)
#define ERROR( ... ) do { fprintf(logger, "ERROR: " __VA_ARGS__ ); sleep(1); } while (0)
#define PPD( ... ) do { fprintf(logger, "PPD: " __VA_ARGS__ ); } while (0)

File diff suppressed because it is too large Load diff