Search found 14 matches

by dominfo
Wed Nov 27, 2024 1:48 pm
Forum: User PC Applications and Libraries .Net
Topic: .Net library missing functionalities
Replies: 1
Views: 48

.Net library missing functionalities

Hello Tom, [1] Please can you add the following Property for the next release: KM_Interpreter_SetupParams.DoRapidAsFeeds I verified and you already implemented the needed interops in KMotion_dotNet_Interop.cpp Just the .Net property using those is missing ;) My problem is that it seems that the Hard...
by dominfo
Fri Nov 22, 2024 2:06 pm
Forum: User PC Applications and Libraries .Net
Topic: V5.3.6: Error in .Net : KM_IO.cs
Replies: 1
Views: 52

V5.3.6: Error in .Net : KM_IO.cs

Hello Tom I identified a bug when setting a value to an analog output. /// <summary> /// Sets the output level of an analog output /// </summary> /// <param name="value">-2048...2047</param> public void SetAnalogValue(int value) { if (_IOType != IO_TYPE.ANALOG_OUT) { throw new DMException(this, new ...
by dominfo
Thu Nov 16, 2023 9:04 am
Forum: User PC Applications and Libraries .Net
Topic: Gcode issue in trajectory planner
Replies: 5
Views: 3451

Re: Gcode issue in trajectory planner

Hello Tom

Sorry for late replies.
Yes other Gcode runs with the 64 bit version if not using a programming style like "polygon.ngc" ie the O103 subprogram on my example.


Regards
Frederic
by dominfo
Tue Nov 14, 2023 8:35 am
Forum: User PC Applications and Libraries .Net
Topic: Gcode issue in trajectory planner
Replies: 5
Views: 3451

Re: Gcode issue in trajectory planner

Hello Tom I confirm that it works with KMotionCNC 64 bits with same trajectory planner settings, same with the GCode interface of KMotion in 64 bits. Is it something related to the Kmotion_dotnet 64 bits ? When compiling my .net app towards the Kmotion_dotnet dll in 32 bits, I don't have the issue. ...
by dominfo
Mon Nov 13, 2023 10:24 am
Forum: User PC Applications and Libraries .Net
Topic: Gcode issue in trajectory planner
Replies: 5
Views: 3451

Gcode issue in trajectory planner

Hello Tom I have a Gcode which is triggering an error from KMotion, just after being started by my .Net app: => Invalid buffer times in Trajectory Planner The program is inspired from polygon.ngc (a topic we discussed before) what could be the reason of this error ? Regards Frederic **** Edit **** I...
by dominfo
Fri Nov 03, 2023 5:00 pm
Forum: User PC Applications and Libraries .Net
Topic: .Net library bugs
Replies: 1
Views: 2509

.Net library bugs

Hello Tom I received this week my full package (Kogna + Kanalog + Konnect). I found 2 bugs in the .Net library Bug1 KM.CoordMotion.SetAxisDefinitions(0, 0, -1, -1, -1, -1) => Kogna sends a message that it expects an "=" sign in "DEFINE CS 0 0 -1 -1 -1 -1" KM.WriteLine("DefineCS = 0 0 -1 -1 -1 -1") =...
by dominfo
Thu Oct 05, 2023 10:00 am
Forum: User PC Applications and Libraries .Net
Topic: Using big array of data in a Gcode program
Replies: 6
Views: 3821

Re: Using big array of data in a Gcode program

Hello Tom

I understand now your answer. I misunderstood the fact that the GcodeInterpreter is in the PC and not in KFLOP.
=> it makes no sense to push all datas to KFLOP, because those will be treated by the GcodeInterpreter in the PC.

Thanks again for you feedback

Frederic
by dominfo
Mon Oct 02, 2023 6:40 pm
Forum: User PC Applications and Libraries .Net
Topic: Using big array of data in a Gcode program
Replies: 6
Views: 3821

Re: Using big array of data in a Gcode program

Hi Tom, So is my proposal a correct solution then ? I found some useful help to send from .Net this big amount of data => PC VCS Examples\SimpleFormsCS\Form1.cs int L = 256; // put up to 256 per line (with ';' every 8) if (KM.GetBoardType() == BOARD_TYPE.KFLOP) L = 8; // KFLOP does 8 per line // fil...
by dominfo
Mon Oct 02, 2023 6:11 pm
Forum: User PC Applications and Libraries .Net
Topic: Using big array of data in a Gcode program
Replies: 6
Views: 3821

Re: Using big array of data in a Gcode program

Hi Tom

My array is about 20000 integers.
We don't have 20000 Gcode variables available in the GcodeInterpreter, am I right ?

Frederic
by dominfo
Mon Oct 02, 2023 2:15 pm
Forum: User PC Applications and Libraries .Net
Topic: Using big array of data in a Gcode program
Replies: 6
Views: 3821

Using big array of data in a Gcode program

Hello Tom In my application I need to use a generic Gcode program with Variables which should take values from a big array of data (20000 integers) during runtime. I investigate on using the gather buffer. step1/ load the 20000 integer values in the gather => From a .Net application, how can I uploa...