# MARS8 v1.0 build Pi Aug 28 2017 16:49:46 # test mode disabled # kl41_lcd_init : -1 # date : 2017-09-28 17:14:53 Help for commands G? - go to target position GR? - go relative PWM? - direct axis PWM output HH? - hard home request for axis SPD? - speed request for axis SPDT? - speed request with timeout CLEAR? - releases clear position of axis STOP? - stop motion of requested axis RELEASE? - releases axis closed loop control SETAP? - set new actual position AP? - actual position ST? - axis status bits encoded in number #define PXMS_ENI_b 0 /* enable input (IRC) update */ #define PXMS_ENR_b 1 /* enable controller (regulator) execution and output update */ #define PXMS_ENG_b 2 /* enable requested value (position) generator */ #define PXMS_ERR_b 3 /* axis in error state */ #define PXMS_BSY_b 4 /* axis busy */ #define PXMS_DBG_b 5 /* enable debugging */ #define PXMS_CMV_b 6 /* in coordinated group */ #define PXMS_CQF_b 7 /* command queue full */ /* PMSM brushless motors only */ #define PXMS_PHA_b 8 /* phase alligned */ #define PXMS_PTI_b 9 /* update index pointing to the phase table (ptindx) */ #define PXMS_ENO_b 10 /* enable output update only (without the controller); */ #define PXMS_PRA_b 11 /* realign phase-table base from HAL sensor */ R? - send R?! or FAIL?! at axis finish REGP? - controller proportional gain REGI? - controller integral gain REGD? - controller derivative gain REGS1? - controller S1 REGS2? - controller S2 REGMD? - maximal allowed position error REGMS? - maximal speed REGACC? - maximal acceleration REGME? - maximal PWM energy or voltage for axis REGCFG? - hard home and profile configuration #define PXMS_CFG_HDIR_b 3 /* initial direction */ #define PXMS_CFG_HRI_b 4 /* use revolution index from HP HEDS */ #define PXMS_CFG_HMC_b 5 /* find mark center */ #define PXMS_CFG_HLS_b 6 /* use limit switch */ #define PXMS_CFG_HPS_b 7 /* polarity of switch */ #define PXMS_CFG_SMTH_b 8 /* smooth speed at changes and stop */ #define PXMS_CFG_MD2E_b 10 /* difference abs(pxms_ap-pxms_rp)>pxms_md => error */ #define PXMS_CFG_CYCL_b 11 /* axis is cyclic one => overflow is intended */ #define PXMS_CFG_I2PT_b 12 /* use index mark to adjust phase table alignment */ REGTYPE? - unused REGDBG? - sets debug flag REGDBGPRE - store reference course REGDBGHIS - read history course REGDBGGNR - controller response to HIST course PURGE - clear error flags and release failded axes CLEAR - ? STOP - stop all motions RELEASE - releases all axes closed loop control ST - system status bits encoded in number STBSYBITS - busy bits of all axes in one number STAMP - host communication stamp R - send R! or FAIL! at finish ERRSTOP - stop all axes at error IDLEREL - release controllers after ? seconds REGGOFLG - global modifications of G? execution COORDMV - initiate coordinated movement to point f1,f2,... COORDMVT - coord. movement with time to point mintime,f1,f2,... COORDRELMVT - coord. relative movement with time to point mintime,f1,f2,... COORDSPLINET - coord. spline movement with time to point mintime,order,a11,a12,...,a21,.. COORDGRP - group axes for COORDMV, for ex. C,D,F COORDDISCONT - max relative discontinuity between segs COORDAP - report actual position, format msec_time,seg_sqn,seg_par,p1,p2,... COORDAPS - report actual position and speed, format msec_time,seg_sqn,seg_par,p1,p2,...,s1,s2,... COORDRP - report requested position, format msec_time,seg_sqn,seg_par,p1,p2,... COORDEP - report planed end position, format msec_time,next_sqn,seg_par,p1,p2,... CMDTIMEMASK - mask to reduce reported time COORDSQNMASK - mask to reduce reported time COORDPARBITS - bits reported as parametr unit REGPWRFLG - power control flags REGPWRON - power control flags REGSFRQ - set new sampling frequency ADC#* - read AD converter value DIGI# - digital input x DIGO# - digital output x DIGM# - digital output x modify DIGI - digital input DIGO - digital output DIGM - digital output modify TRIG#* - trigger s,m,{do|n,mask,xor} CMP#* - comparator f,m,p,{do|n,mask,xor} CMPREPO#* - comparator position repeat offset CMPQUE? - comparator f,p,r,{do|n,mask,xor} CMPQUELIST? - list contents of given queue CMPQUEFLUSH? - flush contents of given queue CMPQUEFROMTRIG? - fill from trig f,t,dm{,o,n,mask,xor}... CMPQUEFROMTRIGFLUSH - flush all from trig connections CMPQUEFROMTRIGCHKSEQ - set control bit sequence for from trig connections ECHO - enable echoing of received character RS232BAUD - communication baud rate VER - software version REBOOT - reset and reboot ANAXSETUP? - setup given axis to the analog mode axst - controlers status cr - ? cg - ? usdtest - ? dprint - enable debug messages to print, use + - to add remove, list types ? spmax - ? cmd1 - ? date - ? math - ? coordtst - ? syscpuhz - ? perftest - ? dhry - ? can - CAN subcommands, try can ? checktstme - pin TSTME ? errorshow - show captured errors flashid - check flash id at addr flashprog - flash prog value at addr flasherase - check flash at addr erase flashtest - test flash gdbbreak - break and wait on RS232 for GDB rungzipapp - load gzipped application and run it help - prints help for commands #define CMDERR_BADCMD 2 #define CMDERR_OPCHAR 10 #define CMDERR_WRPERM 11 #define CMDERR_RDPERM 12 #define CMDERR_GARBAG 13 #define CMDERR_BADSEP 14 #define CMDERR_BADCFG 15 #define CMDERR_NOMEM 16 #define CMDERR_BADSUF 17 #define CMDERR_BADPAR 20 #define CMDERR_VALOOR 21 #define CMDERR_BADREG 40 #define CMDERR_BSYREG 41 #define CMDERR_BADDIO 50 #define CMDERR_NODEV 60 #define CMDERR_TIMEOUT 61 #define CMDERR_EIO 62