Search found 2540 matches

by TomKerekes
Wed Mar 20, 2024 5:13 pm
Forum: C Programs
Topic: C program streams
Replies: 13
Views: 208

Re: C program streams

Hi Taras,

The function ScreenScript should be defined in KflopToKMotionCNCFunctions.h. Is it?

What Version of KMotion are you using?
by TomKerekes
Wed Mar 20, 2024 1:44 am
Forum: Hardware Interface Issues
Topic: Kogna ethernet connection with DHCP
Replies: 6
Views: 158

Re: Kogna ethernet connection with DHCP

Hi Gerald, We created a simplified DHCP Server in Kogna that starts up if Kogna fails locating a DHCP Server. Its very simple and assigns itself fixed address of 192.168.113.100 Other devices are assigned addresses 192.168.113.101 - 192.168.113.108 based on order of Discover requests. With a direct ...
by TomKerekes
Tue Mar 19, 2024 5:51 pm
Forum: User PC Applications and Libraries .Net
Topic: Reading ADC from C
Replies: 4
Views: 55

Re: Reading ADC from C

Hi Katie, The C Function in KFLOP: DROLabel(1000, 162, s); Puts a character string at offset 1000 into KFLOP's Gather Buffer. Then sets KFLOP Persist variable 162 to 1000 to indicate a string is available. KMotionCNC polls KFLOP persist variable 162 for a non-zero value and if non-zero uses the valu...
by TomKerekes
Tue Mar 19, 2024 5:31 pm
Forum: C Programs
Topic: C program streams
Replies: 13
Views: 208

Re: C program streams

Hi Taras,

Sorry I don't understand the question.
by TomKerekes
Mon Mar 18, 2024 11:59 pm
Forum: User PC Applications and Libraries .Net
Topic: G-codes/offsets/tools with .Net
Replies: 153
Views: 33925

Re: G-codes/offsets/tools with .Net

Hi Moray,

Sounds like good news for you, bad news for us :)

Is there a reason you don't just make it public?
by TomKerekes
Mon Mar 18, 2024 6:39 pm
Forum: Configuration Issues
Topic: Soft limits
Replies: 1
Views: 47

Re: Soft limits

Hi Alexander’s,

Please see this Thread.
by TomKerekes
Fri Mar 15, 2024 6:53 am
Forum: C Programs
Topic: idk why lathe changes
Replies: 37
Views: 538

Re: idk why lathe changes

Congrats you are persistent.
by TomKerekes
Thu Mar 14, 2024 6:19 pm
Forum: C Programs
Topic: C program streams
Replies: 13
Views: 208

Re: C program streams

Hi Taras, The parameters have different purposes depending on the Action. They are commonly not all used. For the Execute Action the 2nd numeric parameter is the KFLOP persist Variable for any data. The 3nd numeric parameter is a parameter to be placed in the KFLOP persist variable. This can be usef...
by TomKerekes
Thu Mar 14, 2024 6:00 am
Forum: C Programs
Topic: C program streams
Replies: 13
Views: 208

Re: C program streams

Yes. But the first parameter is the Action Type. You probably want 4 for Execute without waiting. The 2nd parameter is the Thread.
by TomKerekes
Wed Mar 13, 2024 1:34 am
Forum: C Programs
Topic: Kogna debug suggestions
Replies: 41
Views: 397

Re: Kogna debug suggestions

Regarding CCS: as long as different programs are not overlayed in the same Thread then you should be able set breakpoints and watch points in your code. It supports a number of "hardware" breakpoints. if you load the symbols for the program (even before it is loaded) and set a breakpoint then if the...