#linuxcnc-devel | Logs for 2018-11-04
Back
[00:22:39] -!- hazzy has quit [Quit: hazzy]
[00:22:48] -!- hazzy1 has joined #linuxcnc-devel
[00:25:08] hazzy1 is now known as hazzy
[00:32:44] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15c-morley pushed 1 new commit to 062.7: 02https://github.com/LinuxCNC/linuxcnc/commit/dead6ee71cadc19c94082fddb5db6a44b3923efc
[00:32:44] -linuxcnc-github:#linuxcnc-devel- 13linuxcnc/062.7 14dead6ee 15Chris Morley: pncconf -fix PID maxerror based on machine units...
[00:34:17] <CMorley> I tried to merge 2.7 into master but the tp.c changes were not clear to me. I can help with most of the rest (pncconf one I can totally help with)
[00:35:42] -!- hazzy has quit [Ping timeout: 252 seconds]
[00:41:46] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15phillc54 opened issue #524: reverse-run-master2 acceleration issue 02https://github.com/LinuxCNC/linuxcnc/issues/524
[01:26:26] -!- MarkusBec has quit [Ping timeout: 246 seconds]
[01:42:55] -!- MarkusBec has joined #linuxcnc-devel
[01:55:47] -!- MarkusBec has quit [Ping timeout: 240 seconds]
[01:57:37] -!- MarkusBec has joined #linuxcnc-devel
[01:16:21] -!- c-log has quit [Ping timeout: 244 seconds]
[01:17:53] -!- c-log has joined #linuxcnc-devel
[01:39:59] -!- ve7it has quit [Remote host closed the connection]
[05:19:45] -!- JT-Shop has quit [Read error: Connection reset by peer]
[05:22:45] -!- JT-Fshop has quit [Ping timeout: 252 seconds]
[05:23:16] -!- jthornton has quit [Ping timeout: 268 seconds]
[05:23:22] -!- JT-Fshop has joined #linuxcnc-devel
[05:23:56] -!- jthornton has joined #linuxcnc-devel
[05:24:07] -!- JT-Shop has joined #linuxcnc-devel
[05:27:48] -!- jthornton has quit [Read error: Connection reset by peer]
[05:27:49] -!- JT-Shop has quit [Read error: Connection reset by peer]
[05:27:49] -!- JT-Fshop has quit [Read error: Connection reset by peer]
[05:28:13] -!- JT-Fshop has joined #linuxcnc-devel
[05:28:18] -!- JT-Shop has joined #linuxcnc-devel
[05:28:33] -!- jthornton has joined #linuxcnc-devel
[11:36:27] -!- ve7it has joined #linuxcnc-devel
[11:44:02] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15jepler pushed 5 new commits to 06master: 02https://github.com/LinuxCNC/linuxcnc/compare/715a485e32bd...c876f2ae9145
[11:44:02] -linuxcnc-github:#linuxcnc-devel- 13linuxcnc/06master 14a3a3b21 15Jeff Epler: demux: The out array max size should have been 32
[11:44:02] -linuxcnc-github:#linuxcnc-devel- 13linuxcnc/06master 143ee96a7 15Jeff Epler: demux: the default personality should be nonzero
[11:44:02] -linuxcnc-github:#linuxcnc-devel- 13linuxcnc/06master 141bd846d 15Jeff Epler: demux: Fix order-of-operations bug...
[11:44:36] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15jepler closed pull request #518: halcompile: Add checks to generated code for array overflows (06master...06halcompile-overflow-check) 02https://github.com/LinuxCNC/linuxcnc/pull/518
[11:46:56] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15jepler commented on issue #516: @SebKuzminsky I'm going to merge the "public API" bits to master given the actual incompatibility between 2.7 and master (see #522's buildbot build failures) and we can decide if there any part of this that does make sense to cherry pick back to 2.7 at a later time. 02https://github.com/LinuxCNC/linuxcnc/pull/516#issuecomment-435685411
[11:47:21] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15jepler commented on issue #522: For reasions previously discussed, this PR isn't suitable for 2.7 in its current form. 02https://github.com/LinuxCNC/linuxcnc/pull/522#issuecomment-435685448
[11:54:08] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15jepler commented on issue #495: Rebased to resolve merge conflicts with emcrsh due to multispindle changes. 02https://github.com/LinuxCNC/linuxcnc/pull/495#issuecomment-435685987
[12:29:20] <jepler> well this is baffling
[12:29:50] <jepler> emcTaskPlanCommand((char *) &emcStatus->task.
[12:29:53] <jepler> command);
[12:30:05] <jepler> int emcTaskPlanCommand(char *cmd)
[12:30:08] <jepler> strcpy(cmd, interp.command(buf, LINELEN));
[12:30:25] <jepler> as far as I can tell, the types involved are totally wrong, but the (char*) cast hides it
[12:35:51] <jepler> but after removing the cast, the error message is still confusing me
[12:36:08] <jepler> emc/task/emctaskmain.cc|535 col 20| error: cannot convert ‘char (*)[255]’ to ‘char*’ for argument ‘1’ to ‘int emcTaskPlanCommand(char*)'
[12:37:10] <jepler> but I expect the type of that expression to be EMC_TASK_STAT*, not
[12:37:11] <jepler> cdecl> explain char(*x)[255]
[12:37:11] <jepler> declare x as pointer to array 255 of char
[12:38:27] <jepler> ooohhhh tricked by indentation
[12:38:32] <jepler> now all is clear :-/
[12:38:44] <jepler> I read the "." as a "," just due to how the code was laid out
[13:45:53] -!- Roguish has joined #linuxcnc-devel
[14:22:29] <linuxcnc-build> build #3833 of 1403.rip-wheezy-amd64 is complete: Failure [4failed compile runtests] Build details are at http://buildbot.linuxcnc.org blamelist: Jeff Epler <jepler@unpythonic.net>, Jeff Epler <jepler@gmail.com>
[15:36:31] <linuxcnc-build> build #5693 of 0000.checkin is complete: Failure [4failed] Build details are at http://buildbot.linuxcnc.org blamelist: Jeff Epler <jepler@unpythonic.net>, Jeff Epler <jepler@gmail.com>
[18:10:58] -!- hazzy has joined #linuxcnc-devel
[19:39:10] -!- Tom_itx has joined #linuxcnc-devel
[19:48:57] -!- Tom_itx has quit [Quit: Leaving]
[20:35:19] -!- c-log has quit [Ping timeout: 268 seconds]
[20:37:45] -!- c-log has joined #linuxcnc-devel
[21:07:35] -!- JT-Shop has quit [Remote host closed the connection]
[21:08:38] -!- JT-Shop has joined #linuxcnc-devel
[23:22:35] -!- Roguish has quit [Quit: ChatZilla 0.9.92-rdmsoft [XULRunner 35.0.1/20150122214805]]