413 lines
9.7 KiB
C
413 lines
9.7 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <ctype.h>
|
|
#include <getopt.h>
|
|
|
|
// If no time scale specified, use 1/10th real-time for simulator
|
|
#define DEFAULT_TIME_SCALE 10
|
|
#include "config_wrapper.h"
|
|
#include "simulator.h"
|
|
#include "data_recorder.h"
|
|
|
|
void cpu_init(void) {
|
|
}
|
|
|
|
uint8_t TIMSK1;
|
|
uint16_t
|
|
TCCR0A,
|
|
TCCR0B,
|
|
TCCR1A,
|
|
TCCR1B,
|
|
TCCR2A,
|
|
TCCR2B,
|
|
OCR0B,
|
|
OCR1A,
|
|
OCR1B,
|
|
OCR2A,
|
|
OCR2B,
|
|
TIMSK0,
|
|
TIMSK2;
|
|
|
|
volatile uint8_t
|
|
DIO1_WPORT,
|
|
DIO2_WPORT,
|
|
DIO3_WPORT,
|
|
DIO4_WPORT;
|
|
|
|
#define AXES 4
|
|
enum {
|
|
TRACE_POS = 0, /* 0..AXES-1 */
|
|
TRACE_PINS = AXES,
|
|
};
|
|
|
|
int verbose = 1; ///< 0=quiet, 1=normal, 2=noisy, 3=debug, etc.
|
|
int trace_gcode = 0; ///< show gcode on the console
|
|
int trace_pos = 0; ///< show print head position on the console
|
|
|
|
const char * shortopts = "qgpvt:o::T::";
|
|
struct option opts[] = {
|
|
{ "quiet", no_argument, &verbose , 0 },
|
|
{ "verbose", no_argument, NULL, 'v' },
|
|
{ "gcode", no_argument, NULL, 'g' },
|
|
{ "pos", no_argument, NULL, 'p' },
|
|
{ "time-scale", required_argument, NULL, 't' },
|
|
{ "tracefile", optional_argument, NULL, 'o' },
|
|
{ "report-temptable", optional_argument, NULL, 'T' },
|
|
{ 0, 0, 0, 0 }
|
|
};
|
|
|
|
static void usage(const char *name) {
|
|
printf("Usage: %s [options] [gcode_file || uart_device_name]\n", name);
|
|
printf("\n");
|
|
printf(" -q || --quiet show less output\n");
|
|
printf(" -v || --verbose show more output\n");
|
|
printf(" -g || --gcode show gcode on console as it is processed\n");
|
|
printf(" -p || --pos show head position on console\n");
|
|
printf(" -t || --time-scale=n set time-scale; 0=warp-speed, 1=real-time, 2=half-time, etc.\n");
|
|
printf(" -o || --tracefile[=filename] write simulator pin trace to 'outfile' (default filename=datalog.out)\n");
|
|
printf("\n"
|
|
" -T || --report-temptable=n Report calculated temperatures and exit.\n"
|
|
"\n"
|
|
" In Detail, this calculates temperatures for all possible ADC values using\n"
|
|
" the compiled-in temperature tables and reports the resulting conversion.\n"
|
|
" Does no other run-time simulation; exits after reporting the conversion\n"
|
|
" results. Output is suitable for gnuplot, for example like this:\n"
|
|
"\n"
|
|
" gnuplot --persist -e \"plot '< ./sim -T0' u 1:2 with lines,\n"
|
|
" '< ./sim -T1' u 1:2 with lines\"\n"
|
|
"\n");
|
|
exit(1);
|
|
}
|
|
|
|
int g_argc;
|
|
char** g_argv;
|
|
void sim_start(int argc, char** argv) {
|
|
int c;
|
|
int index;
|
|
uint8_t time_scale = DEFAULT_TIME_SCALE;
|
|
|
|
while ((c = getopt_long (argc, argv, shortopts, opts, &index)) != -1)
|
|
switch (c) {
|
|
case 'q':
|
|
verbose = 0;
|
|
break;
|
|
case 'g':
|
|
trace_gcode = 1;
|
|
break;
|
|
case 'p':
|
|
trace_pos = 1;
|
|
break;
|
|
case 'v':
|
|
verbose += 1;
|
|
break;
|
|
case 't':
|
|
time_scale = (uint8_t) atoi(optarg);
|
|
break;
|
|
case 'o':
|
|
recorder_init(optarg ? optarg : "datalog.out");
|
|
break;
|
|
case 'T':
|
|
sim_report_temptables(optarg ? atoi(optarg) : -1);
|
|
exit(0);
|
|
default:
|
|
exit(1);
|
|
}
|
|
|
|
// Record the command line arguments to the datalog, if active
|
|
record_raw("# commandline: ");
|
|
for (index = 0; index < argc; index++) {
|
|
record_raw(argv[index]);
|
|
record_raw(" ") ;
|
|
}
|
|
record_raw("\n");
|
|
|
|
// Store remaining arguments list for serial sim
|
|
g_argc = argc - optind + 1;
|
|
g_argv = argv + optind - 1;
|
|
|
|
if (argc < 2) usage(argv[0]);
|
|
|
|
// Initialize timer
|
|
sim_timer_init(time_scale);
|
|
|
|
// Record pin names in datalog
|
|
#define NAME_PIN_AXES(x) \
|
|
add_trace_var(#x "_X" , TRACE_##x + 0); \
|
|
add_trace_var(#x "_Y" , TRACE_##x + 1); \
|
|
add_trace_var(#x "_Z" , TRACE_##x + 2); \
|
|
add_trace_var(#x "_E" , TRACE_##x + 3);
|
|
NAME_PIN_AXES(POS);
|
|
|
|
#define NAME_PIN(x) add_trace_var(#x , TRACE_PINS + x);
|
|
NAME_PIN(X_STEP_PIN);
|
|
NAME_PIN(X_DIR_PIN);
|
|
NAME_PIN(X_MIN_PIN);
|
|
NAME_PIN(X_ENABLE_PIN);
|
|
NAME_PIN(Y_STEP_PIN);
|
|
NAME_PIN(Y_DIR_PIN);
|
|
NAME_PIN(Y_MIN_PIN);
|
|
NAME_PIN(Y_ENABLE_PIN);
|
|
NAME_PIN(Z_STEP_PIN);
|
|
NAME_PIN(Z_DIR_PIN);
|
|
NAME_PIN(Z_MIN_PIN);
|
|
NAME_PIN(Z_ENABLE_PIN);
|
|
NAME_PIN(E_STEP_PIN);
|
|
NAME_PIN(E_DIR_PIN);
|
|
NAME_PIN(E_ENABLE_PIN);
|
|
|
|
NAME_PIN(STEPPER_ENABLE_PIN);
|
|
|
|
// Rarely used; uncomment here if you want to see them in the datalog.
|
|
//NAME_PIN(X_MAX_PIN);
|
|
//NAME_PIN(Y_MAX_PIN);
|
|
//NAME_PIN(Z_MAX_PIN);
|
|
//NAME_PIN(PS_ON_PIN);
|
|
//NAME_PIN(PS_MOSFET_PIN);
|
|
}
|
|
|
|
/* -- debugging ------------------------------------------------------------ */
|
|
|
|
static void fgreen(void) { fputs("\033[0;32m" , stdout); }
|
|
static void fred(void) { fputs("\033[0;31m" , stdout); }
|
|
static void fcyan(void) { fputs("\033[0;36m" , stdout); }
|
|
static void fyellow(void){ fputs("\033[0;33;1m" , stdout); }
|
|
static void fbreset(void) { fputs("\033[m" , stdout); }
|
|
|
|
static void bred(void) { fputs("\033[0;41m" , stdout); }
|
|
|
|
static void vsim_info_cont(const char fmt[], va_list ap) {
|
|
if (verbose < 1) return;
|
|
fgreen();
|
|
vprintf(fmt, ap);
|
|
fbreset();
|
|
}
|
|
|
|
static int sameline = 0;
|
|
static void clearline(void) {
|
|
if (sameline)
|
|
fputc('\n', stdout);
|
|
sameline = 0;
|
|
}
|
|
|
|
static void sim_info_cont(const char fmt[], ...) {
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
vsim_info_cont(fmt, ap);
|
|
va_end(ap);
|
|
sameline = 1;
|
|
}
|
|
|
|
void sim_info(const char fmt[], ...) {
|
|
va_list ap;
|
|
clearline();
|
|
va_start(ap, fmt);
|
|
vsim_info_cont(fmt, ap);
|
|
va_end(ap);
|
|
if (verbose < 1) return;
|
|
fputc('\n', stdout);
|
|
}
|
|
|
|
void sim_debug(const char fmt[], ...) {
|
|
va_list ap;
|
|
if (verbose < 3) return;
|
|
clearline();
|
|
fcyan();
|
|
va_start(ap, fmt);
|
|
vprintf(fmt, ap);
|
|
va_end(ap);
|
|
fputc('\n', stdout);
|
|
fbreset();
|
|
}
|
|
|
|
void sim_tick(char ch) {
|
|
if (verbose < 2) return;
|
|
fcyan();
|
|
fprintf(stdout, "%c", ch);
|
|
fbreset();
|
|
fflush(stdout);
|
|
}
|
|
|
|
static char gcode_buffer[300];
|
|
static int gcode_buffer_index;
|
|
void sim_gcode_ch(char ch) {
|
|
// Got CR, LF or buffer full
|
|
if ( gcode_buffer_index == sizeof(gcode_buffer)-1 ||
|
|
ch == '\r' || ch == '\n' || ch == 0 ) {
|
|
|
|
// Terminate string, reset buffer, emit gcode
|
|
if (gcode_buffer_index) {
|
|
gcode_buffer[gcode_buffer_index] = 0;
|
|
gcode_buffer_index = 0;
|
|
|
|
if (trace_gcode) {
|
|
clearline();
|
|
fyellow();
|
|
printf("%s\n", gcode_buffer);
|
|
fbreset();
|
|
fflush(stdout);
|
|
}
|
|
|
|
// Send gcode to data_recorder
|
|
record_comment(gcode_buffer);
|
|
}
|
|
|
|
if (ch == '\r' || ch == '\n' || ch == 0)
|
|
return;
|
|
}
|
|
|
|
// Acumulate char from stream
|
|
gcode_buffer[gcode_buffer_index++] = ch;
|
|
}
|
|
|
|
void sim_gcode(const char msg[]) {
|
|
for ( ; *msg ; msg++ ) sim_gcode_ch(*msg);
|
|
sim_gcode_ch(0);
|
|
}
|
|
|
|
void sim_error(const char msg[]) {
|
|
clearline();
|
|
fred();
|
|
printf("ERROR: %s\n", msg);
|
|
fputc('\n', stdout);
|
|
fbreset();
|
|
exit(-1);
|
|
}
|
|
|
|
void sim_assert(bool cond, const char msg[]) {
|
|
if (!cond) {
|
|
sim_error(msg);
|
|
}
|
|
}
|
|
|
|
|
|
/* -- interrupts ----------------------------------------------------------- */
|
|
|
|
volatile bool sim_interrupts = false;
|
|
|
|
void sei(void) {
|
|
sim_interrupts = true;
|
|
}
|
|
|
|
void cli(void) {
|
|
sim_interrupts = false;
|
|
}
|
|
|
|
/** Maximum time (ns) between steps which we still consider "movement"
|
|
* Must be less than 0x20000000, MAXINT/2 */
|
|
#define MAX_IDLE_TIME_NS (2*1000*1000*1000)
|
|
#define NS_PER_SEC (1000*1000*1000) // Token for "1 billion"
|
|
|
|
/* -- PIN I/O ------------------------------------------------------------ */
|
|
|
|
#define out true
|
|
#define in false
|
|
|
|
enum { X_AXIS, Y_AXIS, Z_AXIS, E_AXIS , AXIS_MAX , AXIS_NONE };
|
|
static int pos[AXIS_MAX]; ///< Current position in steps
|
|
|
|
static bool direction[PIN_NB];
|
|
static bool state[PIN_NB];
|
|
|
|
static void print_pos(void) {
|
|
char * axis = "xyze";
|
|
int i;
|
|
if (trace_pos) {
|
|
for ( i = X_AXIS ; i < AXIS_MAX ; i++ ) {
|
|
sim_info_cont("%c:%5d ", axis[i], pos[i]);
|
|
}
|
|
if (verbose > 1)
|
|
clearline();
|
|
else
|
|
sim_info_cont(" \r");
|
|
}
|
|
}
|
|
|
|
bool _READ(pin_t pin) {
|
|
sim_assert(pin < PIN_NB, "READ: Pin number out of range");
|
|
// Add any necessary reactive pin-handlers here.
|
|
return state[pin];
|
|
}
|
|
|
|
void _WRITE(pin_t pin, bool s) {
|
|
bool old_state = state[pin];
|
|
uint64_t nseconds = sim_runtime_ns();
|
|
sim_assert(pin < PIN_NB, "WRITE: Pin number out of range");
|
|
|
|
if (direction[pin] == out) {
|
|
state[pin] = s;
|
|
}
|
|
|
|
if (old_state != s) {
|
|
record_pin(TRACE_PINS + pin, s, nseconds);
|
|
#ifdef TRACE_ALL_PINS
|
|
fgreen();
|
|
for (int i = 0; i < PIN_NB; i++) {
|
|
if (state[i]) bred(); else bblack();
|
|
fputc('A' + i, stdout);
|
|
}
|
|
fbreset();
|
|
printf("\n");
|
|
#else
|
|
bred();
|
|
if (s)
|
|
sim_tick('A' + pin);
|
|
else
|
|
sim_tick('a' + pin);
|
|
fbreset();
|
|
#endif
|
|
}
|
|
|
|
if (s && !old_state) { /* rising edge */
|
|
int axis = AXIS_NONE;
|
|
int dir;
|
|
switch (pin) {
|
|
case X_STEP_PIN:
|
|
dir = state[X_DIR_PIN] ? 1 : -1;
|
|
#ifdef X_INVERT_DIR
|
|
dir = -dir;
|
|
#endif
|
|
axis = X_AXIS;
|
|
break;
|
|
case Y_STEP_PIN:
|
|
dir = state[Y_DIR_PIN] ? 1 : -1;
|
|
#ifdef Y_INVERT_DIR
|
|
dir = -dir;
|
|
#endif
|
|
axis = Y_AXIS;
|
|
break;
|
|
case Z_STEP_PIN:
|
|
dir = state[Z_DIR_PIN] ? 1 : -1;
|
|
#ifdef Z_INVERT_DIR
|
|
dir = -dir;
|
|
#endif
|
|
axis = Z_AXIS;
|
|
break;
|
|
case E_STEP_PIN:
|
|
dir = state[E_DIR_PIN] ? 1 : -1;
|
|
#ifdef E_INVERT_DIR
|
|
dir = -dir;
|
|
#endif
|
|
axis = E_AXIS;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
if ( axis != AXIS_NONE ) {
|
|
pos[axis] += dir;
|
|
record_pin(TRACE_POS + axis, pos[axis], nseconds);
|
|
print_pos();
|
|
}
|
|
}
|
|
}
|
|
|
|
void _SET_OUTPUT(pin_t pin) {
|
|
sim_assert(pin < PIN_NB, "Pin number out of range");
|
|
direction[pin] = out;
|
|
}
|
|
|
|
void _SET_INPUT(pin_t pin) {
|
|
sim_assert(pin < PIN_NB, "Pin number out of range");
|
|
direction[pin] = in;
|
|
}
|