Hi Scott,
Regarding StdAfx.h: It would make more sense to include your kinematics .h file before GCodeInterpreter.h like the other kinematic headers. The idea is to define things in the order they are needed. If the GCodeInterpreter.h references your class it wouldn't be defined yet.
Regarding CoordMotion.cpp you forgot the beginning C in the class name.
Regarding Assigning the Linkage values: that would work assigning them in the TransformCADtoActuators function every time but just make the PC work a little harder. But better to move that to the constructor so it is only set once as they never change. Move them immediately under the line:
m_MotionParams.UseOnlyLinearSegments=true;
Regarding TransformCADtoActuators() function: I forgot to mention that C/C++ functions like sin and acos all operate in radians. So I think all you need to do is change 180 to PI. PI is probably already defined somewhere earlier, if not no worries the compiler will tell you. Also the final angles r0 r1 will be in radians. Multiply by (180.0/PI) to convert to degrees.
On a side note it is best practice to tell the compiler a number's type is floating point by adding a decimal point. For example 2.0 instead of 2 without the decimal. I don't think it matters in your cases because all your math mixes numbers with doubles and the compiler will automatically "promote" an integer to double whe there is a mix of integers and doubles. But it is still a good habit to get into. Otherwise you will eventually discover a nasty bug where for example 1/4 = 0 as the compiler will do integer division instead of floating point division. It hurts my eyes to see those integers
In the past I have had syntax errors in my math

. Do you know if there is a way to simulate X/Y values and step through the math to see if the values are what I would expect them to be?
Yes Visual Studio has amazing debugging capabilities. Compared to debugging Excel you should find it easy. So the simplest thing is to just run the program (KMotionCNC) and debug it by stepping through the math. Note you can't run Libraries themselves. Instead you must run a Program that uses the Libraries.
There is one complication. The TransformCADtoActuators() function is being called continuously with changing values as it is used to numerically reverse determine the CAD position from the Motor positions (sort of like trial and error). This saves you from having to come up with the math for determining the CAD position from the motor angles. So here is what I would do.
- Build KMotionCNC in Visual Studio in Debug configuration (Build Solution)
- Set KMotionCNC as Startup Project (right-click on project if not already)
- Debug | Start Debugging
- File Open your Kinematics2AxisRobot.cpp
- Set a breakpoint on first executable line in TransformCADtoActuators() (many ways to do this - a click in the margin is easiest)
- The breakpoint should be hit immediately, the program halts, and a yellow arrow is shown over the red breakpoint dot)
- hovering over variables should show the value
- select variables and right-click | add watch to display in a watch window.
- add variables x and y to a watch window so they can be altered
- using the watch window change the x y values to something you know the answer to like in your previous posts
- single step through the code checking the math as you go
- note you can go back to a previous line right-clicking | set next statement
I have some help over the weekend figuring out how to rebuild the libraries. Though it looks like it is as simple as pressing F7?
Yes but not sure why the hot key is F7 for you. It is something else for me (ctrl - shift - B). Maybe you selected something different than me when installing Visual Studio. It simplest to just use the menus anyway.
So with the non-linear motion. How will the trajectory planner work? There are no linear parameters for Cnts/inch, velocity, and Accel. I will be using 10:1 gearbox reductions for the drives with 1.8 degree steppers. Not sure how that part will work.
The actuator variables Acts[] are in raw steps. So you might use the "Cnts/inch" as steps per degree. So then if you compute r0 in degrees then multiply by that the result should work. Step per degree would also depend on microstepping. So assuming 16X microstepping then steps/degree might be:
16 / 1.8 x 10
I am also assuming that the other axis will remain linear? If I want to add a rotary A,B,or C, or linear Z,U,or V I will just set it up as I normally would?
Yes
Hang in there you are making progress
