Search found 2118 matches

by TomKerekes
Fri Mar 24, 2023 7:06 pm
Forum: C Programs
Topic: RS232 Communication Problem
Replies: 5
Views: 42

Re: RS232 Communication Problem

Were you able to change the transmitting device's Baud rate? Both sides need to be set at the same rate. Please indent your code consistently and add comments explaing what you are doing. That's only a common courtesy if you are asking others to check your code for you. KFLOP User Threads are basica...
by TomKerekes
Thu Mar 23, 2023 10:42 pm
Forum: User Machines
Topic: Vehicle Position Log
Replies: 5
Views: 17

Re: Vehicle Position Log

Hi Scott,

See also here and here.

Did you see the SimpleConsole example?
by TomKerekes
Wed Mar 22, 2023 4:04 pm
Forum: User Machines
Topic: 5 axis CNC Router/3d printer
Replies: 80
Views: 2897

Re: 5 axis CNC Router/3d printer

Hi George, my machine runs all axis in the upper gantry. I don't have a moving bed so I think that is what is causing things to go reverse. Good point From what I can understand from the change you recommend that will reverse the RTCP B rotation. Is this correct? Well no. That shouldn't have any eff...
by TomKerekes
Wed Mar 22, 2023 12:26 am
Forum: Configuration Issues
Topic: Master/Slave not working correctly, all other axis OK
Replies: 2
Views: 10

Re: Master/Slave not working correctly, all other axis OK

Hi Jerry,

What code are you using for homing? What messages appear on the Console?

But normally Master/Slave axes are homed independently and simultaneously with limits disabled so the orthogonality can be adjusted. See the HomeSlaved.c example.
by TomKerekes
Wed Mar 22, 2023 12:07 am
Forum: User Machines
Topic: 5 axis CNC Router/3d printer
Replies: 80
Views: 2897

Re: 5 axis CNC Router/3d printer

Hi George, I'd guess that you could add a negative sign in the Kinematics. Such as change: Rotate3(0, 0, 0, m_MotionParams.TCP_X, m_MotionParams.TCP_Y, (m_MotionParams.TCP_Z + PivotToChuckLength), 0, b, c, &TCP_Rotated_x, &TCP_Rotated_y, &TCP_Rotated_z); to: Rotate3(0, 0, 0, m_MotionParams.TCP_X, m_...
by TomKerekes
Tue Mar 21, 2023 9:30 pm
Forum: User Machines
Topic: Vehicle Position Log
Replies: 5
Views: 17

Re: Vehicle Position Log

Hi Scott, I think you might have problems synchronizing the PC and KFLOP. If one is writing and the other is reading the same file at the same time things can get corrupted. I think this would also use a lot of command bandwidth to create, write, and close a file every 0.1 seconds. I think a better ...
by TomKerekes
Mon Mar 20, 2023 7:54 pm
Forum: User Machines
Topic: Vehicle Position Log
Replies: 5
Views: 17

Re: Vehicle Position Log

Hi Scott,

That should be possible. You would need to supply much more detail. Do you know how to program?
by TomKerekes
Mon Mar 20, 2023 2:49 pm
Forum: C Programs
Topic: RS232 Communication Problem
Replies: 5
Views: 42

Re: RS232 Communication Problem

Hi ardagunay,

As I said 115,200 baud won’t work.

Post your programs with a description not images of your programs.

Indent your programs to make them readable.
by TomKerekes
Sat Mar 18, 2023 9:45 pm
Forum: KMotionCNC, G Code Files, Offsets, Post Process
Topic: Installation error with windows 7
Replies: 1
Views: 20

Re: Installation error with windows 7

Hi Mark,

W7 should work. But I would move to W10 or W11.

Actually you shouldn’t need .NET to run KMotion.exe or KMotionCNC.exe.

What error do you get?
by TomKerekes
Thu Mar 16, 2023 7:47 pm
Forum: User Machines
Topic: 5 axis CNC Router/3d printer
Replies: 80
Views: 2897

Re: 5 axis CNC Router/3d printer

Hi George,

Like this.