You are not logged in.

#1 2017-06-26 14:11:53

jmbringenio
Member
Registered: 2016-12-20
Posts: 8

Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

hi boys, my printer has stopped working properly cause the z axis doesnt move when homing, but if i move with grbl it seems to work fine. if i use my old raspi3 i get suppresing duplicate logs message when start printing and printer doesnt work. with other raspi3 (newer) i get "undefined feed rate" error (remember it works properly with grbl). Wtf with my dammit configuration???

log:
Level    Layer    Time    Module    Details
Notice    1    2017-06-26 14:08:48.416986    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:08:48.416647    Terminal    Received Data From RAMPS: error: Undefined feed rate
Debug    1    2017-06-26 14:08:48.409066    Gcode    Transfering Data G1 Z-100.00
Debug    1    2017-06-20 16:17:49.743312    WiFi    Connected to evoPRINT3D
Notice    1    2017-06-20 16:17:44.763972    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-20 16:17:44.763748    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-20 16:17:44.671281    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-20 16:17:44.670954    Terminal    Received Data From RAMPS: error: Setting disabled
Info    1    2017-06-20 16:17:44.670577    Logging    Suppressing duplicate logs
Notice    1    2017-06-20 16:17:44.670331    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-20 16:17:44.670048    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-20 16:17:44.653087    Terminal    Received Data From RAMPS: ok
Info    1    2017-06-20 16:17:44.648891    RAMPS Sync    Waiting for done message from RAMPS
Debug    1    2017-06-20 16:17:44.648744    Gcode    Transfering Data $X ; Unlock GRBL just in case
G91 ; Put positioning in relative mode
$H ; Home GRBL
G4 P0.1; SolidRay movement sync
Notice    1    2017-06-20 16:17:41.253922    Terminal    Received Data From RAMPS: Grbl 0.9j ['$' for help]
Notice    1    2017-06-20 16:17:41.25371    Terminal    Received Data From RAMPS:
Warning    1    2017-06-20 16:17:39.77473    WIFI    Connecting to evoPRINT3D
Debug    1    2017-06-20 16:17:39.735746    WiFi    Status Monitoring
Warning    1    2017-06-20 16:17:39.733737    WIFI    WIFI interface wlan0 detected
Debug    1    2017-06-20 16:17:39.647531    Shutter    Shutter Close
Notice    1    2017-06-20 16:17:39.647515    Terminal    Terminal Reader Activated
Debug    1    2017-06-20 16:17:39.647466    Hardware    Stepper motor enabled
Notice    1    2017-06-20 16:17:39.618746    Hardware    Initializing build # 1535 - generic

config:
# For more options and information see
# http://www.raspberrypi.org/documentatio … fig-txt.md
# Some settings may impact device functionality. See link above for details

# uncomment if you get no picture on HDMI for a default "safe" mode
#hdmi_safe=1

# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
# disable_overscan=1

# uncomment the following to adjust overscan. Use positive numbers if console
# goes off screen, and negative if there is too much border
#overscan_left=16
#overscan_right=16
#overscan_top=16
#overscan_bottom=16

# uncomment to force a console size. By default it will be display's size minus
# overscan.
#framebuffer_width=1280
#framebuffer_height=720

# uncomment if hdmi display is not detected and composite is being output
#hdmi_force_hotplug=1

# uncomment to force a specific HDMI mode (this will force VGA)
#hdmi_group=1
#hdmi_mode=1

# uncomment to force a HDMI mode rather than DVI. This can make audio work in
# DMT (computer monitor) modes
#hdmi_drive=2

# uncomment to increase signal to HDMI, if you have interference, blanking, or
# no display
#config_hdmi_boost=4
hdmi_pixel_encoding=2

# uncomment for composite PAL
#sdtv_mode=2

#uncomment to overclock the arm. 700 MHz is the default.
#arm_freq=800

start_x=1
gpu_mem=128
#core_freq=250
#sdram_freq=400
#over_voltage=0

#Smaller framebuffer
#framebuffer_depth=8
#framebuffer_ignore_alpha=1
#framebuffer_width=1920
#framebuffer_height=1080
disable_camera_led=1
dtparam=i2c1=on
dtparam=i2c_arm=on
disable_overscan= 1

Offline

#2 2017-06-26 14:15:29

Shahin
Administrator
Registered: 2016-02-17
Posts: 3,541

Re: Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

You should add feedrate in front of movements for better compatibility.
G1 F200 Z1

Offline

#3 2017-06-26 14:19:48

jmbringenio
Member
Registered: 2016-12-20
Posts: 8

Re: Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

yes, i can do that when sending gcode into terminal, but when homing i dont know how to do it. i want to copy my setup here:

Bootup Gcode
$X ; Unlock GRBL just in case
G91 ; Put positioning in relative mode
$H ; Home GRBL
G4 P0.1; SolidRay movement sync
[[WaitForDoneMessage]] ; Wait until movement completed

Start of Print Gcode
$X
G90
G4 P0.1
[[WaitForDoneMessage]]
G92 Z0
[[PositionSet 0]]

resume print gcode
$X
G90
G92 Z[[CurrentPosition]]
G1 Z[[LayerPosition]] F100
G4 P0.1
[[WaitForDoneMessage]]

print stop gcode
$X ; Unlock GRBL just in case we hit the bottom endstop
G01 Z+1 F100 ; Move away from the end stop so GRBL doesn't freak out
$H ; Home the Z axis to bring the print up out of the resin
G4 P0.1; SolidRay movement sync
[[WaitForDoneMessage]] ; Wait until movement completed

Offline

#4 2017-06-26 14:21:31

jmbringenio
Member
Registered: 2016-12-20
Posts: 8

Re: Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

when i set feedrate in terminal z-axis moves properly, this is the log:

Level    Layer    Time    Module    Details
Info    1    2017-06-26 14:16:44.070503    Logging    Suppressing duplicate logs
Notice    1    2017-06-26 14:16:44.07016    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:16:44.06991    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:16:44.069633    Terminal    Received Data From RAMPS: ok
Debug    1    2017-06-26 14:16:44.062523    Gcode    Transfering Data G1 F200 Z50

in the first message print gets stuck when starts printing...

Offline

#5 2017-06-26 14:29:03

jmbringenio
Member
Registered: 2016-12-20
Posts: 8

Re: Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

here the complete log when i start printing (printer does nothing)

Level    Layer    Time    Module    Details
Notice    1    2017-06-26 14:25:13.073086    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:25:13.072809    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:25:11.799182    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:25:11.798648    Terminal    Received Data From RAMPS: error: Not idle
Info    1    2017-06-26 14:25:11.77909    Logging    Suppressing duplicate logs
Notice    1    2017-06-26 14:25:11.775268    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:25:11.77493    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:25:11.774681    Terminal    Received Data From RAMPS: ok
Info    1    2017-06-26 14:25:11.771947    RAMPS Sync    Waiting for done message from RAMPS
Debug    1    2017-06-26 14:25:11.771761    Gcode    Transfering Data $X ; Unlock GRBL just in case we hit the bottom endstop
G01 Z+1 F100 ; Move away from the end stop so GRBL doesn't freak out
$H ; Home the Z axis to bring the print up out of the resin
G4 P0.1; SolidRay movement sync
Notice    1    2017-06-26 14:25:11.770818    Terminal    Received Data From RAMPS: ok
Warning    1    2017-06-26 14:25:11.770546    Printing    Stop Command Received
Debug    1    2017-06-26 14:25:11.77022    Shutter    Shutter Close
Debug    1    2017-06-26 14:25:11.770113    Image    Clear screen
Notice    1    2017-06-26 14:25:11.768951    Gcode    Position set to 0
Debug    1    2017-06-26 14:25:11.768698    Gcode    Transfering Data ; Wait until movement completed
Debug    1    2017-06-26 14:25:11.768448    Gcode    Transfering Data
G92 Z0
Info    1    2017-06-26 14:25:11.768332    RAMPS Sync    Ready for the next RAMPS movement
Info    1    2017-06-26 14:25:11.768231    RAMPS Sync    Ready for the next RAMPS movement
Info    1    2017-06-26 14:25:11.767858    RAMPS Sync    Done message from RAMPS has been received
Info    1    2017-06-26 14:24:40.77206    Logging    Suppressing duplicate logs
Notice    1    2017-06-26 14:24:40.771808    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:24:40.771567    Terminal    Received Data From RAMPS: ok
Notice    1    2017-06-26 14:24:40.771315    Terminal    Received Data From RAMPS: ok
Info    1    2017-06-26 14:24:40.766979    RAMPS Sync    Waiting for done message from RAMPS
Debug    1    2017-06-26 14:24:40.766863    Gcode    Transfering Data $X
G90
G4 P0.1

Offline

#6 2017-06-26 14:37:59

jmbringenio
Member
Registered: 2016-12-20
Posts: 8

Re: Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

can anyone provide his machine setup and resin profile settings .json?

Offline

#7 2017-06-26 16:48:01

Shahin
Administrator
Registered: 2016-02-17
Posts: 3,541

Re: Z-AXIS NOT MOVE - STUCK ON SUPRESSING DUPLICATE LOGS

You need to use patched firmware (marlin/grbl) for [[WaitForDoneMessage]].

Offline

Board footer

Powered by FluxBB