Back
[00:00:21] <andypugh> Ah, doesn’t that work any more?
[00:00:46] <andypugh> The code does very much assume 32 bits....
[00:00:49] <jepler> those are linux kernel types
[00:01:17] <jepler> in 2.7 and master, the C99 standard types [u]int32_t are what you should write
[00:01:18] <andypugh> So I didn’t want to use the comp “unsigned”
[00:01:32] <andypugh> OK, I will change that.
[00:01:51] <jepler> not sure if that works on 2.6 and earlier
[00:02:16] <jepler> for rtai
[00:03:11] <andypugh> Well, I don’t think that this comp will be in 2.6 so that probaly doesn’t matter.
[00:03:24] <jepler> pin out bit out-# [32:(personality & 0xF)] = 0 "Sequence outputs";
[00:03:24] <jepler> pin out bit out-#-not [32:(personality & 0xFF)] = 1 "Sequence outputs inverted";
[00:03:36] <jepler> at least one of these is likely to be wrong
[00:03:56] <jepler> the 32 part makes me think maybe they should both be & 0x1f (31)
[00:04:52] <jepler> also see man rtapi_module_param for a description of the MODULE_LICENSE strings liked by the kernel.
[00:05:03] <jepler> their convention, which is confusing, is
[00:05:03] <jepler> "GPL" GNU Public License v2 or later
[00:05:03] <jepler> "GPL v2"
[00:05:03] <jepler> GNU Public License v2
[00:05:27] <jepler> I *think* that "GPL v2+", since it's not a string literally recognized by the kernel, causes a kernel license taint
[00:06:04] <andypugh> FF is OK because there is an 8-shift and a check for > 31
[00:06:31] <andypugh> But F was wrong and I simply hadn’t tested more than 16 pins.
[00:06:59] <jepler> anyway, that wraps it up for my substantive comments.
[00:07:09] <jepler> less substantive and possibly nitpicky comments follow.
[00:07:29] <jepler> you use both 'break' and 'return' to bail out of the case statement
[00:07:37] <jepler> personally, I'd flow all the documentation source to 72 columns or so
[00:08:12] <jepler> (though others think a LF should occur after each logically complete unit of documentation, such as sentence, and to a degree I can get behind that .. I just have trouble practicing it)
[00:08:48] <andypugh> I am (largely) flowing at 80 columns
[00:09:08] -!- rob_h has quit [Ping timeout: 272 seconds]
[00:10:55] <andypugh> But I can do 72. I just don’t like the way that, for example, a twice-indented “rtapi_print_msg(RTAPI_MSG_ERR, ….” is basically line-wrapped before it gets to say anything…
[00:11:40] <jepler> oh it's no big deal
[00:12:09] <andypugh> I was using “break” until I noticed that some were inside loops, and I wanted to exit the comp, not the loop.
[00:12:43] <andypugh> The I switched to return but didn’t go back and change the existing breaks.
[00:12:49] -!- Loetmichel has quit [Ping timeout: 256 seconds]
[00:13:57] <andypugh> I think that they should all be returns, but I wasn’t sure at the beginning if anything would be happening after the switch.
[00:16:20] <jepler> I notice it has a time of around 350 when idle and 770 when running one sequence. that's lower than stepgen.make-pulses with one stepgen, so it seems fine
[00:16:40] <jepler> particularly since this seems intended for servo-thread activities
[00:17:01] <andypugh> If I made the timeout into a HAL pin it could be an arbitrary-pattern step generator :-)
[00:17:57] <jepler> though there are some peaks/spikes, I can't tell if they're just my machine not being realtime or if they correspond to when the outputs are changing or something
[00:18:09] <andypugh> I was wondering if I should make it base-threadable. The only FP bit is the timeout, and that is already stored as int in the data structure.
[00:19:08] <jepler> seems like not
[00:19:20] <jepler> if so you'd need to change your timeouts to be us or ns
[00:19:21] <andypugh> In fact, I will make it all-int just to save CPU
[00:19:32] <jepler> I think that's a fine idea
[00:20:02] <jepler> afk, hope my feedback was helpful
[00:20:21] <andypugh> nS timeouts would make the W and D “commands” very long
[00:20:46] <jepler> yes they would
[00:20:56] -!- gene78 has quit [Read error: No route to host]
[00:21:04] <andypugh> I _could_ modify the parser to understand S, ms, nS
[00:21:25] <jepler> tn1000 vs tu1000 vs tm1000 ?
[00:22:00] <jepler> you might note in the docs that it is (presumably) rounded up to the next multiple of the thread rate
[00:22:38] <andypugh> I was thinking T1000mS but of course I can’t do that because I carelessly used S already
[00:23:25] <andypugh> I will make it default to seconds with modifiers for m/n/u
[00:25:53] <andypugh> You can’t hold many nS in an s32 can you?
[00:26:18] <andypugh> Or, rather, you can but they don’t add up to many seconds
[00:45:26] <jepler> no
[00:46:20] <cradek> Intel(R) Pentium(R) Dual CPU E2160 @ 1.80GHz
[00:46:31] <cradek> maybe this wasn't the best choice for kernel-building
[00:55:31] <andypugh> I have decided to store microseconds and accept that nS timeouts will be innacurate
[00:57:19] <andypugh> (I _did_ think about storing the units-used as a bit-code in the higher-order bits and doing the same for the distinction between a delay and a timeout. And now I have typed that is seems like a better idea. But for tomorrow)
[01:00:11] <skunkworks> cradek: for jesse?
[01:01:07] <jepler> skunkworks: a newer kernel to maybe get support for a certain pci parport, I think
[01:04:00] <skunkworks> ah
[01:04:02] <skunkworks> ok
[01:05:57] <cradek> yeah for this silly card
[01:08:00] <cradek> it's doomed to failure but for some reason I can't resist trying
[01:08:37] <cradek> it'd be nice to know if a simple patch adds support
[01:09:30] <jepler> I was flabbergasted to see from this canonical (ubuntu) patch that their kernel takes 41 minutes to build *on a machine with 56 threads*! He offered a patch to get it down to 36.
https://lkml.org/lkml/2015/4/24/617
[01:10:08] <jepler> crazy thing is, from the numbers he gives, he gets only about 800% CPU utilization, a far cry from the 5400% you'd like to see!
[01:10:11] <skunkworks> trying to get the pluto running again?
[01:10:46] -!- skunksleep [skunksleep!~AndChat14@69.4.98.27] has joined #linuxcnc-devel
[01:10:54] <cradek> jepler: ugh.
[01:11:35] <cradek> skunkworks: yeah, it works fine, but I'd like a newer box running it, and for some reason my heart is set on using a cool tiny machine I got from goodwill
[01:11:49] <cradek> ... with only traditional pci slots and no built-in parallel port
[01:14:44] <jepler> and without rebuilding the electronics to get rid of the pluto, though I think it's unknown if the port doesn't work with pluto, or doesn't work with epp at all
[01:15:36] -!- andypugh has quit [Quit: andypugh]
[01:21:21] <cradek> yep exactly
[01:24:06] <Tom_itx> spi port?
[01:24:33] <Tom_itx> i thought one of you had a 7i90 running off spi
[01:24:50] <jepler> Tom_itx: that'd be me
[01:25:08] <Tom_itx> does that work ok?
[01:25:19] <Tom_itx> i recently got a 7i90
[01:25:34] <jepler> yes, though I had to modify the spi kernel driver before it had good realtime performance, and the modifications are going to be different for every linux-supported spi interface
[01:25:35] <Tom_itx> using it with parport right now
[01:25:45] <jepler> but once I worked on the driver, it would run for days at 2kHz
[01:25:52] <jepler> if you're on a PC, stick with epp.
[01:25:59] <Tom_itx> i plan to
[01:26:14] <Tom_itx> i got it to replace a 7i43 i popped
[01:26:25] <jepler> https://github.com/jepler/u3-7i90
[01:27:47] <Tom_itx> too bad spi isn't a standard interface
[01:29:08] <jepler> too bad more ARM boards don't have non-USB ethernet
[01:29:15] -!- Akex_ has quit [Quit: Connection closed for inactivity]
[01:29:24] <jepler> honestly, having worked on both spi and ethernet during the 2.7 cycle, I'm more excited about ethernet
[01:29:47] <jepler> for one thing, you just don't worry much about signal integrity on a modest-length ethernet cable, but that was a headache with spi
[01:30:01] <jepler> for another, many pci nics turn out to have quite decent performance with preempt-rt
[01:33:08] <mozmck> jepler, I can build the ubuntu kernel to deb packages in less time than that on my 8-core AMD. I think about 25 minutes
[01:34:45] <jepler> mozmck: that sounds more like it
[01:35:34] <mozmck> hmm, make deb-pkg is the kernel way of building debs - not ubuntu
[01:36:34] <mozmck> My dual cpu xeon machine takes about 1 minute more with 16 threads, but they are 2.26 Ghz and the AMD is 4 Ghz
[01:38:25] <mozmck> oh, hmm, the message says he made it "parallelize debug module installation" If I turn on debug it takes about 70 minutes with make deb-pkg on the 16 thread machine.
[01:42:39] -!- patrickarlt has quit [Quit: Leaving...]
[01:50:11] <Tom_itx> in 2.7 i can remove the references to watchdog in my configs?
[01:50:48] <Tom_itx> the addf and setp lines..
[01:52:28] -!- moorbo has quit [Remote host closed the connection]
[01:52:35] <Tom_itx> as well as the probe_parport line
[02:05:09] <jepler> Tom_itx: yes I think so
[02:10:33] <Tom_itx> i know early on there were parameters for the TP, is that still the case in 2.7?
[02:14:19] <seb_kuzminsky> Tom_itx:
http://linuxcnc.org/docs/2.7/html/getting-started/index.html#_updating_your_config
[02:15:44] <Tom_itx> i was looking at that
[02:19:24] <seb_kuzminsky> ok cool
[02:19:33] <seb_kuzminsky> if there's something missing let me know and i'll add it
[02:19:37] <seb_kuzminsky> thanks for testing 2.7 btw
[02:19:43] <Tom_itx> i just didn't see anything on the TP there
[02:20:00] <Tom_itx> i haven't tested yet so don't thank me too much :)
[02:20:12] <seb_kuzminsky> the TP shouldn't need any messing with, so it's not mentioned there
[02:20:17] <seb_kuzminsky> heh
[02:20:23] <Tom_itx> still helping the mrs recooperate from surgery so it may be a couple weeks
[02:20:30] <Tom_itx> ok
[02:20:54] <Tom_itx> not much play time here right now
[02:21:07] <seb_kuzminsky> if you *want* to mess with the TP, there are some [TRAJ] knobs to twiddle:
http://linuxcnc.org/docs/2.7/html/config/ini_config.html#sub:TRAJ-section
[02:21:39] <seb_kuzminsky> best wishes on her speedy recovery
[02:21:54] <Tom_itx> yeah i can't recall what i had in the config but i knew there were a few settings
[02:21:59] <Tom_itx> thanks
[02:25:46] <Tom_itx> yeah i have those in the ini commented out
[02:25:47] <Tom_itx> for now
[02:26:45] <skunksleep> 5 min apart.... Lasting for a minute.
[02:27:14] <Tom_itx> ?
[02:27:22] <Tom_itx> ahh
[02:27:27] <Tom_itx> 2nd one?
[02:27:39] <Tom_itx> you're gonna have a long night
[02:28:43] <seb_kuzminsky> https://www.youtube.com/watch?v=r6inaBWSEdk
[02:29:12] <Tom_itx> seb_kuzminsky, no biggie but the settings explanations should match the default values
[02:29:26] <Tom_itx> or i'm sure somebody along the way will get confoozed
[02:30:16] <Tom_itx> ARC_BLEND_RAMP_FREQ is the only one i see really
[02:34:28] <Tom_itx> hmm i see no reason not to upgrade and try it
[02:34:40] <skunksleep> :)
[02:35:03] <Tom_itx> i can install it but it'll be a bit before i'm able to test it again
[02:35:50] <Tom_itx> btw, congrats skunksleep
[02:36:06] <seb_kuzminsky> yeah congrats! you thought you were low on sleep *before* this!
[02:36:37] <cradek> skunksleep: ooh, hope everything comes out ok
[02:36:53] <seb_kuzminsky> these are the ones i made (a few years ago):
http://highlab.com/family/2012.12.13-2/P1010002.jpg
[02:38:44] <skunksleep> So far so good. Heading to the hospital soon..
[02:47:23] <CaptHindsight> skunksleep: "sleep" since you only dream of sleep now while you're awake?
[02:49:43] <Tom_itx> heh
[02:49:52] <Tom_itx> ok 2.7 updates made
[02:50:12] -!- PetefromTn_ [PetefromTn_!~IceChat9@75-136-60-251.dhcp.jcsn.tn.charter.com] has parted #linuxcnc-devel
[02:54:19] -!- AR_ has quit [Ping timeout: 256 seconds]
[02:54:44] -!- c_morley has quit [Quit: Leaving.]
[02:56:13] -!- _ink has quit [Remote host closed the connection]
[02:58:52] <skunksleep> seb_kuzminsky: awesome!
[03:05:30] -!- jerryitt has quit [Quit: Connection closed for inactivity]
[03:05:39] -!- sumpfralle has quit [Ping timeout: 256 seconds]
[03:07:06] -!- sumpfralle1 has quit [Read error: Connection reset by peer]
[03:25:11] -!- norias has quit [Read error: Connection reset by peer]
[03:59:43] -!- FreezingCold has quit [Ping timeout: 250 seconds]
[04:01:25] -!- koo6 has quit [Ping timeout: 248 seconds]
[04:02:17] -!- Tecan has quit [Quit: Live Long And Phosphor!]
[04:11:48] -!- norias has quit [Ping timeout: 256 seconds]
[04:19:12] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]
[04:38:48] -!- furrywolf has quit [Ping timeout: 265 seconds]
[04:41:35] -!- kwallace [kwallace!~kwallace@smb-176.sonnet.com] has parted #linuxcnc-devel
[04:45:17] -!- Roguish has quit [Quit: ChatZilla 0.9.91.1 [Firefox 37.0.2/20150415140819]]
[05:10:16] -!- Tom_shop [Tom_shop!~Tl@unaffiliated/toml/x-013812] has joined #linuxcnc-devel
[05:11:36] -!- Tom_itx has quit [Ping timeout: 240 seconds]
[05:23:23] -!- JohnyK [JohnyK!~wity@jurajp.ynet.sk] has joined #linuxcnc-devel
[05:50:25] -!- The_Ball has quit [Ping timeout: 244 seconds]
[06:02:49] -!- Demiurge has quit [Read error: Connection reset by peer]
[06:04:37] -!- FreezingCold has quit [Ping timeout: 264 seconds]
[06:12:14] -!- ve7it has quit [Remote host closed the connection]
[06:12:22] -!- XXCoder has quit [Read error: Connection reset by peer]
[06:13:39] -!- f1oat4 [f1oat4!~f1oat@AMontsouris-553-1-21-66.w92-151.abo.wanadoo.fr] has joined #linuxcnc-devel
[06:14:17] -!- GargantuaSauce has quit [Quit: No Ping reply in 180 seconds.]
[06:15:44] -!- bkboggy has quit [Quit: Leaving]
[06:19:37] -!- skunkworks has quit [Ping timeout: 264 seconds]
[06:25:02] -!- skunksleep has quit [Ping timeout: 244 seconds]
[06:31:39] -!- Praesmeodymium has quit [Ping timeout: 252 seconds]
[06:31:53] Praesmeodymium|2 is now known as Praesmeodymium
[06:36:07] -!- micges has quit [Ping timeout: 255 seconds]
[06:48:38] -!- Deejay has quit [Changing host]
[07:01:48] -!- tomashe2 has quit [Ping timeout: 256 seconds]
[07:06:04] -!- Miner_48er has quit [Quit: Leaving]
[07:13:33] -!- rob_h [rob_h!~robh@176.248.182.202] has joined #linuxcnc-devel
[07:28:37] -!- HSD_afk has quit [Ping timeout: 264 seconds]
[07:31:47] -!- eventor [eventor!~eventor@p5B254F2F.dip0.t-ipconnect.de] has joined #linuxcnc-devel
[07:52:57] -!- pingufan has quit [Quit: Konversation terminated!]
[08:03:58] -!- jthornton has quit [Read error: Connection reset by peer]
[08:05:03] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[08:10:26] -!- nofxx has quit [Ping timeout: 250 seconds]
[08:21:36] -!- tjb1 has quit [Read error: Connection reset by peer]
[08:24:29] -!- gonzo__ has quit [Ping timeout: 250 seconds]
[08:25:06] -!- phantoxeD has quit [Ping timeout: 256 seconds]
[08:25:47] -!- Reventlov has quit [Ping timeout: 250 seconds]
[08:28:48] -!- skunksleep [skunksleep!~AndChat14@207.229.236.209] has joined #linuxcnc-devel
[08:31:00] Tom_shop is now known as Tom_itx
[08:36:36] -!- eventor has quit [Ping timeout: 240 seconds]
[08:38:05] -!- b_b has quit [Changing host]
[08:59:01] -!- karavanjo has quit [Quit: karavanjo]
[09:03:11] -!- tumdedum has quit [Ping timeout: 265 seconds]
[09:03:38] -!- tumdedum has quit [Changing host]
[09:06:41] -!- Akex_ [Akex_!uid58281@gateway/web/irccloud.com/x-sloilurbageoowie] has joined #linuxcnc-devel
[09:12:08] -!- tinkerer [tinkerer!~tinkerer@mail.play-pla.net] has joined #linuxcnc-devel
[09:12:55] -!- Valen has quit [Remote host closed the connection]
[09:43:29] -!- karavanjo has quit [Read error: Connection reset by peer]
[10:02:03] -!- syyl_ws has quit [Quit: Verlassend]
[10:25:58] -!- mhaberler has quit [Quit: mhaberler]
[10:32:21] -!- JT-Shop has quit [Read error: Connection reset by peer]
[10:34:39] -!- BlaDe^ has quit [Disconnected by services]
[10:34:54] -!- john__ [john__!~john@184.21.239.59] has joined #linuxcnc-devel
[10:44:13] -!- MauBot has quit [Remote host closed the connection]
[11:05:20] -!- syyl has quit [Quit: Verlassend]
[11:12:14] -!- crazy_imp has quit [Ping timeout: 265 seconds]
[11:12:14] -!- karavanjo has quit [Ping timeout: 272 seconds]
[11:16:31] -!- mal`` has quit [Ping timeout: 248 seconds]
[11:18:40] -!- mal`` [mal``!~mal``@2607:5300:100:200::160d] has joined #linuxcnc-devel
[12:12:28] amnesic_away is now known as amnesic
[12:19:53] -!- Tecan has quit [Changing host]
[12:24:02] amnesic is now known as amnesic_away
[12:27:32] <jepler> > Folks, seeing the words "designed to be safer, more consistent, and less error prone replacement" in a manpage does *NOT* mean "OK, quit reading it - no need to go further, not even to the end of the paragraph".
[12:33:48] amnesic_away is now known as amnesic
[13:00:28] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:00:36] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:00:48] -!- jthornton has quit [Read error: Connection reset by peer]
[13:01:03] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:01:03] -!- john__ has quit [Read error: Connection reset by peer]
[13:01:13] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[13:01:15] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:01:25] -!- jthornton has quit [Read error: Connection reset by peer]
[13:01:40] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:01:46] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:01:48] -!- grummund has quit [Ping timeout: 272 seconds]
[13:01:51] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[13:01:56] -!- BlaDe^_ has quit [Ping timeout: 240 seconds]
[13:02:08] -!- jthornton has quit [Read error: Connection reset by peer]
[13:02:11] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:02:17] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:02:26] -!- asdfasd has quit [Ping timeout: 272 seconds]
[13:02:32] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[13:02:46] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:02:57] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:03:27] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:03:31] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:03:56] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:04:00] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:04:29] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:04:34] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:05:00] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:05:04] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:05:13] <alex_joni> jepler: then maybe that needs to go to the end of the manpage
[13:05:35] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:05:45] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:06:14] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:06:25] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:06:52] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:07:02] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:07:31] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:07:37] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:08:07] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:08:13] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:08:43] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:08:48] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:09:05] -!- jthornton has quit [Read error: Connection reset by peer]
[13:09:17] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:09:21] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:09:31] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[13:09:47] -!- jthornton has quit [Read error: Connection reset by peer]
[13:09:50] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:09:56] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:10:16] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[13:10:23] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:10:28] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:10:56] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:11:01] -!- JT-Shop has quit [Read error: Connection reset by peer]
[13:11:28] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[13:19:40] amnesic is now known as amnesic_away
[13:29:38] -!- BellinganRoy has quit [Quit: Konversation terminated!]
[13:45:14] -!- karavanjo1 has quit [Read error: Connection reset by peer]
[14:26:53] <mozmck> hmm, debian jessie gives 2 kernel options on boot, but won't install if you select the 686-pae option :)
[14:27:39] <mozmck> this is the 32-bit image
[14:29:43] -!- jvrousseau has quit [Read error: Connection reset by peer]
[14:29:45] -!- pcw_home has quit [Remote host closed the connection]
[14:32:36] -!- Tomashe has quit [Ping timeout: 240 seconds]
[14:33:36] -!- lexano has quit [Ping timeout: 240 seconds]
[14:33:51] -!- pjm has quit [Read error: Connection reset by peer]
[14:40:34] -!- rob_h has quit [Ping timeout: 252 seconds]
[14:43:44] -!- jthornton has quit [Read error: Connection reset by peer]
[14:44:12] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:44:28] -!- jthornton has quit [Read error: Connection reset by peer]
[14:44:39] -!- karavanjo has quit [Read error: Connection reset by peer]
[14:44:56] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:45:09] -!- jthornton has quit [Read error: Connection reset by peer]
[14:45:39] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:45:54] -!- jthornton has quit [Read error: Connection reset by peer]
[14:46:19] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:46:31] amnesic_away is now known as amnesic
[14:46:35] -!- jthornton has quit [Read error: Connection reset by peer]
[14:47:01] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:47:50] -!- kwallace [kwallace!~kwallace@smb-181.sonnet.com] has joined #linuxcnc-devel
[14:56:45] -!- jthornton has quit [Read error: Connection reset by peer]
[14:57:13] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:57:22] -!- kwallace2 [kwallace2!~kwallace@smb-218.sonnet.com] has joined #linuxcnc-devel
[14:57:29] -!- jthornton has quit [Read error: Connection reset by peer]
[14:57:58] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:58:12] -!- jthornton has quit [Read error: Connection reset by peer]
[14:58:41] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:58:57] -!- jthornton has quit [Read error: Connection reset by peer]
[14:59:23] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[14:59:37] -!- jthornton has quit [Read error: Connection reset by peer]
[14:59:59] -!- kwallace has quit [Ping timeout: 264 seconds]
[15:00:05] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:00:21] -!- jthornton has quit [Read error: Connection reset by peer]
[15:00:48] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:01:04] -!- jthornton has quit [Read error: Connection reset by peer]
[15:01:30] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:01:44] -!- jthornton has quit [Read error: Connection reset by peer]
[15:02:09] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:02:25] -!- jthornton has quit [Read error: Connection reset by peer]
[15:02:50] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:03:06] -!- jthornton has quit [Read error: Connection reset by peer]
[15:03:33] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:06:29] -!- skunksleep has quit [Ping timeout: 245 seconds]
[15:11:47] -!- jthornton has quit [Read error: Connection reset by peer]
[15:12:14] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:12:18] -!- podarok has quit [Remote host closed the connection]
[15:12:30] -!- jthornton has quit [Read error: Connection reset by peer]
[15:12:59] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:13:32] -!- karavanjo has quit [Ping timeout: 272 seconds]
[15:16:51] -!- PetefromTn_ [PetefromTn_!~IceChat9@75-136-60-251.dhcp.jcsn.tn.charter.com] has joined #linuxcnc-devel
[15:23:55] -!- Mr_Sheesh has quit [Ping timeout: 244 seconds]
[15:28:31] -!- moorbo has quit [Remote host closed the connection]
[15:31:47] -!- jthornton has quit [Read error: Connection reset by peer]
[15:32:13] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:35:26] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:35:54] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:35:58] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:36:26] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:36:33] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:37:01] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:37:11] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:37:37] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:37:47] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:38:17] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:38:23] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:38:52] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:38:58] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:39:25] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:39:31] -!- JT-Shop has quit [Read error: Connection reset by peer]
[15:40:01] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[15:42:09] -!- Loetmichel has quit [Read error: Connection reset by peer]
[15:42:40] -!- quiqua has quit [Quit: quiqua]
[15:43:43] -!- hendrik has quit [Ping timeout: 256 seconds]
[15:43:52] -!- moorbo has quit [Remote host closed the connection]
[15:44:13] hendrik is now known as Guest98360
[15:44:16] -!- Reventlov has quit [Ping timeout: 256 seconds]
[15:45:50] -!- jthornton has quit [Read error: Connection reset by peer]
[15:46:15] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:46:30] -!- jthornton has quit [Read error: Connection reset by peer]
[15:46:56] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:47:09] -!- jthornton has quit [Read error: Connection reset by peer]
[15:47:36] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:47:50] -!- jthornton has quit [Read error: Connection reset by peer]
[15:48:16] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:48:31] -!- jthornton has quit [Read error: Connection reset by peer]
[15:49:00] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:49:15] -!- jthornton has quit [Read error: Connection reset by peer]
[15:49:41] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:49:57] -!- jthornton has quit [Read error: Connection reset by peer]
[15:50:26] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:50:40] -!- jthornton has quit [Read error: Connection reset by peer]
[15:51:09] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:51:26] -!- jthornton has quit [Read error: Connection reset by peer]
[15:51:51] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:52:07] -!- jthornton has quit [Read error: Connection reset by peer]
[15:52:37] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:52:53] -!- jthornton has quit [Read error: Connection reset by peer]
[15:53:23] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:53:40] -!- jthornton has quit [Read error: Connection reset by peer]
[15:54:09] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:54:23] -!- jthornton has quit [Read error: Connection reset by peer]
[15:54:52] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:55:09] -!- jthornton has quit [Read error: Connection reset by peer]
[15:55:38] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:55:53] -!- jthornton has quit [Read error: Connection reset by peer]
[15:56:20] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:56:36] -!- karavanjo1 has quit [Ping timeout: 272 seconds]
[15:56:36] -!- jthornton has quit [Read error: Connection reset by peer]
[15:57:06] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[15:57:18] -!- jthornton has quit [Read error: Connection reset by peer]
[15:57:46] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[16:02:52] tomashe2 is now known as tomashe
[16:04:25] -!- micges [micges!~micges@dav19.neoplus.adsl.tpnet.pl] has joined #linuxcnc-devel
[16:12:13] -!- dirty_d has quit [Quit: Leaving]
[16:28:37] -!- skunksleep [skunksleep!~AndChat14@207.229.236.209] has joined #linuxcnc-devel
[16:32:34] -!- eventor [eventor!~eventor@p5B254F2F.dip0.t-ipconnect.de] has joined #linuxcnc-devel
[16:41:22] <seb_kuzminsky> skunksleep!
[16:41:33] <seb_kuzminsky> how's things?
[16:42:27] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:42:55] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:43:02] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:43:29] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:43:33] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:44:01] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:44:08] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:44:36] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:44:40] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:45:06] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:45:17] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:45:42] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:45:53] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:46:18] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:46:24] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:46:52] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:46:58] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:47:19] -!- karavanjo has quit [Read error: Connection reset by peer]
[16:47:27] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:47:33] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:47:58] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:48:03] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:48:27] -!- jthornton has quit [Read error: Connection reset by peer]
[16:48:31] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:48:39] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:48:56] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[16:49:07] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:49:11] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:49:12] -!- jthornton has quit [Read error: Connection reset by peer]
[16:49:37] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:49:37] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[16:49:43] -!- Connor has quit [Quit: Leaving.]
[16:49:43] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:49:51] -!- jthornton has quit [Read error: Connection reset by peer]
[16:50:05] -!- Connor [Connor!~Connor@24.214.127.194] has joined #linuxcnc-devel
[16:50:12] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:50:20] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[16:50:24] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:50:48] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:50:55] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:51:21] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:51:26] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:51:54] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:52:00] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:52:27] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:52:31] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:53:01] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:53:08] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:53:38] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:53:44] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:54:10] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:54:18] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:54:43] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[16:54:51] -!- JT-Shop has quit [Read error: Connection reset by peer]
[16:55:15] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[17:04:25] <skunksleep> seb_kuzminsky: water broke. (Got an epidermal so sleeping now)
[17:05:10] <seb_kuzminsky> sounds good
[17:05:18] <seb_kuzminsky> what does stella think of all this?
[17:07:15] <skunksleep> epidural
[17:08:58] <mozmck> oh! hope all goes well skunksleep.
[17:11:21] -!- ir2ivps8_ has quit [Ping timeout: 265 seconds]
[17:16:08] -!- ve7it [ve7it!~LawrenceG@S01060014d19d0b68.pk.shawcable.net] has joined #linuxcnc-devel
[17:16:55] -!- BellinganRoy has quit [Quit: Konversation terminated!]
[17:30:18] -!- micges has quit [Ping timeout: 250 seconds]
[17:33:38] <PetefromTn_> Wow Congrats skunkie!
[17:34:38] -!- karavanjo has quit [Ping timeout: 244 seconds]
[17:37:49] -!- mozmck has quit [Read error: Connection reset by peer]
[17:40:03] -!- mhaberler has quit [Quit: mhaberler]
[17:44:13] -!- teepee has quit [Ping timeout: 265 seconds]
[17:47:13] -!- teepee [teepee!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[17:48:04] <skunksleep> S
[17:48:12] <skunksleep> Thanks!
[17:54:16] -!- mozmck [mozmck!~moses@67.210.159.245] has joined #linuxcnc-devel
[17:58:36] -!- ir2ivps8_ has quit [Ping timeout: 240 seconds]
[18:15:07] -!- Nick001-shop has quit [Ping timeout: 250 seconds]
[18:19:29] -!- amiri has quit [Read error: Connection reset by peer]
[18:20:29] -!- karavanjo1 has quit [Read error: Connection reset by peer]
[18:52:03] -!- patrickarlt has quit [Remote host closed the connection]
[18:55:36] Guest98360 is now known as hendrik
[18:56:06] hendrik is now known as Guest89762
[19:01:08] Guest89762 is now known as hendrik
[19:09:40] -!- araiza444 has quit [Ping timeout: 246 seconds]
[19:15:22] -!- micges [micges!~micges@dbi121.neoplus.adsl.tpnet.pl] has joined #linuxcnc-devel
[19:15:50] -!- Miner_48er has quit [Quit: Leaving]
[19:25:48] amnesic is now known as amnesic_away
[19:46:29] -!- jesseg has quit [Ping timeout: 248 seconds]
[19:49:08] -!- Simonious has quit [Quit: Changing server]
[19:50:52] -!- moorbo has quit []
[20:09:48] -!- jthornton has quit [Read error: Connection reset by peer]
[20:10:13] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[20:10:29] -!- jthornton has quit [Write error: Connection reset by peer]
[20:10:57] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[20:19:51] -!- jthornton has quit [Read error: Connection reset by peer]
[20:20:18] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[20:21:38] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]
[20:25:31] <skunksleep> Sullivan Elwood 8lb7oz
[20:27:02] <micges> skunksleep: great, congrats!
[20:31:30] <Tom_itx> congrats skunksleep... now maybe in 18 yrs you can get some sleep
[20:37:55] <seb_kuzminsky> awesome :-)
[20:45:16] -!- karavanjo has quit [Ping timeout: 255 seconds]
[20:51:18] -!- b_b has quit [Remote host closed the connection]
[20:54:08] -!- rob_h [rob_h!~robh@176.248.182.202] has joined #linuxcnc-devel
[20:57:05] -!- exitcode1 has quit [Quit: quit]
[21:06:26] <jepler> skunksleep: congrats
[21:08:56] -!- Deejay has quit [Quit: bye]
[21:20:14] -!- cnc1 has quit [Quit: ChatZilla 0.9.91.1 [Firefox 37.0.2/20150415140819]]
[21:20:15] -!- Computer_barf has quit [Ping timeout: 276 seconds]
[21:21:11] <seb_kuzminsky> i'm gonna release 2.7.0, unless someone tells me about a bug they want to fix first
[21:21:46] <Tom_itx> we'll tell you right after you release it
[21:22:04] <seb_kuzminsky> heh yeah
[21:22:24] <mozmck> skunksleep: congratulations!
[21:22:57] <mozmck> seb_kuzminsky: let's merge ja right quick first ;)
[21:23:13] -!- tinkerer has quit [Quit: Leaving.]
[21:23:48] <seb_kuzminsky> oh you
[21:24:34] <mozmck> I haven't really had a chance to really use it yet. So many other things get in the way.
[21:25:01] -!- ingsoc has quit [Quit: Leaving.]
[21:25:59] <seb_kuzminsky> maybe for 2.8
[21:27:11] <seb_kuzminsky> speaking of which, maybe somebody else wants to be release manager for 2.8?
[21:28:35] <micges> I did few retrofits on 2.7, didn't noticed nothing buggy
[21:28:49] -!- Computer_barf has quit [Ping timeout: 250 seconds]
[21:29:22] <seb_kuzminsky> yeah, i have a couple of machines running 2.7 and it's really fine
[21:29:26] <micges> even ja6 branch works quite well
[21:30:49] <seb_kuzminsky> do you have any lathes running ja?
[21:31:07] <seb_kuzminsky> i have reports of bugs when there are non-consecutive axes (like lathes' XZ)
[21:31:38] <micges> seb_kuzminsky: hostmot2 dpll support for encoder should be added but I won't do this this week
[21:32:01] <micges> no no lathes so far
[21:32:14] <seb_kuzminsky> can you save it for 2.8 or do we need to hold up 2.7 for that?
[21:33:41] -!- cers has quit [Ping timeout: 248 seconds]
[21:35:08] <micges> I think we should hold one more week, got two machines to setup so I'll check 2.7 again and we have long weekend this week so I'll add dpll stuff
[21:36:24] <seb_kuzminsky> alright cool
[21:39:14] -!- furrywolf has quit [Read error: No route to host]
[21:44:53] -!- toastydeath has quit [Ping timeout: 248 seconds]
[21:49:06] -!- PCW [PCW!~chatzilla@99.88.10.65] has joined #linuxcnc-devel
[21:53:11] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:53:39] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:53:45] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:53:59] -!- tjtr33 has quit [Quit: Leaving]
[21:54:11] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:54:17] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:54:45] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:54:52] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:55:18] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:55:24] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:55:50] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:55:54] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:56:23] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:56:34] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:56:58] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:57:04] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:57:30] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:57:35] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:58:01] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:58:10] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:58:36] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:58:41] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:59:06] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:59:07] -!- andypugh [andypugh!~andy2@cpc14-basl11-2-0-cust1010.20-1.cable.virginm.net] has joined #linuxcnc-devel
[21:59:14] -!- JT-Shop has quit [Read error: Connection reset by peer]
[21:59:40] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[21:59:47] -!- JT-Shop has quit [Read error: Connection reset by peer]
[22:00:14] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[22:00:20] -!- JT-Shop has quit [Read error: Connection reset by peer]
[22:00:47] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[22:00:51] <andypugh> That was confusing. It seems that %lld and %lli in kernel space print 1701669204 regardless of the s64 being passed.
[22:00:51] -!- jthornton has quit [Read error: Connection reset by peer]
[22:00:53] -!- pandeiro has quit [Remote host closed the connection]
[22:01:18] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[22:05:38] -!- crazy_imp has quit [Ping timeout: 256 seconds]
[22:06:41] <jepler> that is an exceedingly odd result
[22:06:49] <jepler> via rtapi_print_msg ?
[22:07:31] <jepler> NAME
[22:07:32] <jepler> rtapi_snprintf, rtapi_vsnprintf - Perform snprintf-like string formatting
[22:07:39] <jepler> > In particular: formatting of long long values is not supported.
[22:08:31] <jepler> must be some terrible reason for that limitation
[22:09:20] <andypugh> Ah well :-)
[22:09:32] <andypugh> The number is baffling though.
[22:22:00] -!- adb has quit [Ping timeout: 276 seconds]
[22:22:48] -!- JohnyK has quit [Ping timeout: 250 seconds]
[22:36:14] -!- karavanjo1 has quit [Read error: Connection reset by peer]
[22:42:18] -!- moorbo has quit [Ping timeout: 250 seconds]
[22:44:09] -!- acdha has quit [Quit: Textual IRC Client: www.textualapp.com]
[22:47:05] -!- gonzo_nb has quit [Remote host closed the connection]
[23:01:38] -!- moorbo has quit [Remote host closed the connection]
[23:04:28] -!- tocka has quit [Quit: tocka]
[23:07:01] -!- mhaberler has quit [Quit: mhaberler]
[23:11:23] -!- f1oat4 has quit [Ping timeout: 264 seconds]
[23:18:45] -!- eventor has quit [Ping timeout: 248 seconds]
[23:29:33] -!- andypugh has quit [Quit: andypugh]
[23:43:15] -!- sumpfralle has quit [Ping timeout: 256 seconds]
[23:45:26] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:45:55] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:46:01] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:46:28] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:46:33] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:46:59] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:47:04] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:47:28] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:47:39] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:48:04] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:48:15] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:48:41] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:48:46] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:49:14] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:49:20] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:49:48] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:49:55] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:50:21] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:50:28] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:50:53] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:50:58] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:51:23] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:51:34] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:52:01] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:52:12] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:52:38] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:52:43] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:53:11] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:53:21] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:53:46] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:53:53] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:54:21] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:54:28] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:54:55] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:54:56] -!- rob_h has quit [Ping timeout: 240 seconds]
[23:55:00] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:55:26] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:55:37] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:55:48] -!- jthornton has quit [Read error: Connection reset by peer]
[23:56:04] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:56:08] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:56:17] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[23:56:31] -!- jthornton has quit [Read error: Connection reset by peer]
[23:56:36] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:56:43] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:57:00] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[23:57:10] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:57:15] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:57:17] -!- jthornton has quit [Read error: Connection reset by peer]
[23:57:40] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:57:44] -!- jthornton [jthornton!~john@184.21.239.59] has joined #linuxcnc-devel
[23:57:52] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:58:19] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:58:25] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:58:50] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:58:56] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:59:25] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel
[23:59:30] -!- JT-Shop has quit [Read error: Connection reset by peer]
[23:59:57] -!- JT-Shop [JT-Shop!~john@184.21.239.59] has joined #linuxcnc-devel