#linuxcnc-devel | Logs for 2016-02-04

Back
[00:01:24] * skunkworks does too.. None of this cross country crap.. down hill only.
[00:05:22] -!- floppydisk-ph has quit [Ping timeout: 252 seconds]
[00:07:05] -!- tchaddad has quit [Remote host closed the connection]
[00:08:33] -!- asdfasd has quit [Ping timeout: 250 seconds]
[00:09:32] * JT-Shop used to do cross country way back when living in Alaska
[00:13:00] -!- gonzo_nb has quit [Remote host closed the connection]
[00:16:37] <andypugh> I like ski mountaineering.
[00:17:04] <andypugh> (Randonée / Alpine touring)
[00:17:29] -!- Akex_ has quit [Quit: Connection closed for inactivity]
[00:17:37] -!- tchaddad has quit [Remote host closed the connection]
[00:20:15] -!- andypugh has quit [Quit: andypugh]
[00:22:12] <jepler> tinkerer: odroid u3 had spi. I've driven a mesa 7i90 with it.
[00:22:30] <jepler> linuxcnc.org doesn't build cross-development toolchains, ugh the very thought chills me
[00:23:49] <jepler> tinkerer: board-specific zip files from mesanet.com are the most official place for hostmot2 board firmwares. we build firmwares for a subset of peter's boards and host them on linuxcnc.org, emphasis on the boards with volatile firmwares. debian package name hostmot2-firmware*
[00:29:17] <tinkerer> jepler: a little misunderstanding. I meant the place where the firmwares are stored for uploading to the boards.
[00:30:36] <tinkerer> ie: I use this string static char *firmware = ""; // if this is empty, no firmware upload will be performing (ie. for CPLD or Config Rom) RTAPI_MP_STRING(firmware, "Firmware Path");
[00:31:08] <jepler> oh
[00:31:17] <tinkerer> and a default path would be nice
[00:31:18] <jepler> that's specified in the hostmot2 manpage
[00:31:45] <jepler> search down for the section beginning
[00:31:47] <jepler> firmware [optional]
[00:32:34] <tinkerer> for the pluto board? :D
[00:32:54] <jepler> oh pluto board, that damn thing
[00:33:02] <jepler> that firmware is built in at compile time
[00:33:16] <tinkerer> yes i know
[00:35:26] <tinkerer> I mean a generalized place where all the firmwares are have to be stored like /lib/firmware... or so
[00:36:20] <jepler> rtapi_request_firmware / rtapi_release_firmware APIs are only minimally documented
[00:36:35] <jepler> but they operate much like the kernel APIs request_firmware / release_firmware
[00:36:41] <jepler> including the default path
[00:37:01] <jepler> pull request to improve the manual page appreciated
[00:39:52] <tinkerer> ok, but where are the firmwares copied with make install?
[00:40:21] <jepler> for pluto?
[00:40:59] <jepler> in linuxcnc.org's 2.7 or master branch?
[00:41:11] <tinkerer> no matter general
[00:41:31] <tinkerer> pick both ;)
[00:42:05] <jepler> If a particular driver uses rtapi_request_firmware / rtapi_release_firmware, then it will search in the path that those APIs define
[00:42:09] <jepler> which is /lib/firmware or so
[00:42:31] <tinkerer> ok, and in linuxcnc?
[00:42:37] <jepler> however, pluto does not use this API, it incorprates the firmware directly into the hal component .ko/.so file
[00:42:48] <tinkerer> yes i know this!
[00:42:50] <jepler> as far as I remember without grepping, only mesa uses this API
[00:43:05] <jepler> I am sorry that I am not understanding your question,.
[00:43:34] <tinkerer> I'am writing on a driver based on pluto
[00:44:03] <jepler> If you want to load a firmware, I encourage you to write your driver to use rtapi_request_firmware / rtapi_release_firmware
[00:44:06] <tinkerer> and on the pluto driver respect...
[00:44:16] <tinkerer> aha
[00:48:00] -!- rob_h has quit [Read error: Connection reset by peer]
[00:50:21] <tinkerer> it means that "make install" copies the firmwares to /lib/firmware
[00:50:30] <tinkerer> is this correct?
[00:50:51] <jepler> right now there is no firmware installed by "make install"
[00:51:34] <jepler> because pluto is built-in to the component, and mesa is installed from a different package (hostmot2-firmware)
[00:52:00] <jepler> but yes, "make install" should put the firmware file in its correct location where rtapi_request_firmware will find it
[00:52:26] <jepler> but there is an additional wrinkle for users with "run in place" systems, so some alternate method needs to be provided for them.
[00:52:51] -!- rob_h [rob_h!~robh@94.10.120.1] has joined #linuxcnc-devel
[00:54:33] <tinkerer> yes this would be my next question
[00:55:10] <jepler> fpga firmware images require proprietary software to build, and so placing them inside our source tree is a problem for a long-term goal we have, which is a source tree which complies with the Debian Free Software Guidelines, and might some day allow linuxcnc to be in the debian "main" archive.
[00:56:06] <jepler> Even though I made the mistake with pluto to put the firmware file directly in the linuxcnc source tree, I would prefer not to see that mistake repeated again. What we have done with hostmot2-firmware, to separate out software that is related to LinuxCNC but cannot meet DFSG, I think is a better way
[00:56:33] <jepler> (that software might eventually be able to be in debian's "non-free" section)
[00:56:43] <tinkerer> yes
[00:58:08] <tinkerer> but would this mean that the hostmot driver does not work after just a git clone?
[00:58:51] <seb_kuzminsky> i wonder why the armhf sim deb builders are disabled
[00:59:00] <seb_kuzminsky> i wonder if my git historyy will tell me?
[00:59:40] <jepler> seb_kuzminsky: I bet you didn't like waiting for it
[00:59:51] <seb_kuzminsky> comment out wheezy-armhf for now
[00:59:57] <seb_kuzminsky> wow thanks, guy
[00:59:59] <jepler> .. particularly the doc-building part
[01:00:01] <jepler> hi seb_kuzminsky
[01:00:06] <seb_kuzminsky> hi :-)
[01:00:13] <seb_kuzminsky> it's doing rip, so it already builds the docs
[01:00:15] <seb_kuzminsky> once
[01:00:55] <jepler> tinkerer: right, a user with a hostmot2 card with volatile firmware, such as the venerable 5i20, has to install the firmware, such as by installing the hostmot2-firmware package.
[01:01:08] <jepler> or by manually installing a file in a .zip from peter into /lib/firmware
[01:01:18] <tinkerer> aha ok
[01:01:24] <jepler> hostmot2 is at a level of maturity where these files change rarely so that's fine for the majority of users
[01:02:19] <tinkerer> this clarifying it
[01:02:35] -!- rob_h has quit [Ping timeout: 264 seconds]
[01:05:38] <tinkerer> the point is, fpga boards are very polymorph and it's a feature loading different firmwares/behaviors with the driver
[01:08:14] -!- chris_99 has quit [Quit: Leaving]
[01:08:32] <tinkerer> IMHO your approach with the pluto is a good idea
[01:09:42] <tinkerer> ok was ;)
[01:34:27] -!- tinkerer has quit [Remote host closed the connection]
[01:40:52] -!- Loetmichel has quit [Ping timeout: 256 seconds]
[01:41:20] -!- maurris has quit [Ping timeout: 245 seconds]
[01:42:11] -!- maurris has quit [Client Quit]
[02:09:59] -!- gregcnc has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
[02:10:18] -!- jthornton- has quit [Read error: Connection reset by peer]
[02:10:19] -!- jthornton has quit [Read error: Connection reset by peer]
[02:10:20] -!- JT-Shop has quit [Read error: Connection reset by peer]
[02:10:27] -!- jthornton [jthornton!~john@198.45.191.246] has joined #linuxcnc-devel
[02:10:30] -!- JT-Shop [JT-Shop!~john@198.45.191.246] has joined #linuxcnc-devel
[02:10:31] -!- jthornton- [jthornton-!~john@198.45.191.246] has joined #linuxcnc-devel
[02:27:52] -!- kalxas has quit [Quit: Goodbye]
[02:31:03] -!- mikeh_ has quit [Read error: Connection reset by peer]
[02:31:09] -!- patrickarlt has quit [Remote host closed the connection]
[02:51:16] -!- Roguish has quit [Quit: ChatZilla 0.9.92 [Firefox 44.0/20160123151951]]
[03:07:51] -!- tchaddad has quit []
[03:18:35] -!- gregcnc has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
[03:28:36] -!- skunksleep has quit [Ping timeout: 250 seconds]
[03:29:37] -!- skunksleep [skunksleep!~AndChat14@69.4.98.27] has joined #linuxcnc-devel
[03:42:39] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]
[03:44:43] -!- skunksleep has quit [Read error: Connection reset by peer]
[03:57:53] amnesic_away is now known as amnesic
[03:58:16] -!- d42 has quit [Excess Flood]
[03:58:54] -!- AR_ has quit [Ping timeout: 250 seconds]
[04:00:27] -!- justanotheruser has quit [Read error: Connection reset by peer]
[04:03:37] -!- justanotheruser has quit [Changing host]
[04:09:39] -!- rhavenj has quit [Read error: Connection reset by peer]
[04:11:57] <jepler> http://forum.odroid.com/viewtopic.php?f=135&t=18683
[04:12:00] <jepler> oooh
[04:12:12] -!- Jeebiss has quit [Ping timeout: 260 seconds]
[04:12:45] -!- jerryitt has quit [Ping timeout: 260 seconds]
[04:13:21] -!- ybon has quit [Ping timeout: 260 seconds]
[04:13:56] -!- Computer_barf has quit [Ping timeout: 260 seconds]
[04:14:03] <jepler> 64-bit ARM, and this time the (gigabit) MAC is in the SoC, not off in USB, and a nice price point ($40 without eMMC)
[04:14:30] -!- linuxcnc-build has quit [Ping timeout: 260 seconds]
[04:14:30] -!- Lowridah has quit [Ping timeout: 260 seconds]
[04:14:31] -!- tris has quit [Ping timeout: 260 seconds]
[04:15:34] <jepler> said to be using the 3.14 kernel, which has an RT patch
[04:17:53] <jepler> .. I think I want one!
[04:19:08] -!- englishman has quit [Ping timeout: 260 seconds]
[04:19:08] -!- Loetmichel2 has quit [Ping timeout: 260 seconds]
[04:19:14] -!- dr0w has quit [Ping timeout: 263 seconds]
[04:19:14] -!- McBride36 has quit [Ping timeout: 263 seconds]
[04:19:15] -!- alex_joni has quit [Ping timeout: 263 seconds]
[04:19:30] -!- alex_joni [alex_joni!~alex_joni@emc/board-of-directors/alexjoni] has joined #linuxcnc-devel
[04:19:30] -!- mode/#linuxcnc-devel [+v alex_joni] by ChanServ
[04:19:45] -!- likevinyl has quit [Ping timeout: 260 seconds]
[04:19:46] -!- linuxcnc-build [linuxcnc-build!~linuxcnc-@174-29-70-171.hlrn.qwest.net] has joined #linuxcnc-devel
[04:20:55] -!- sumpfralle has quit [Ping timeout: 245 seconds]
[04:20:56] McBride36 is now known as Guest51361
[04:25:20] <CaptHindsight> and with ARM Mali™-450 MP3 GPU
[04:26:15] <CaptHindsight> and hopefully no hiccups with hm2_eth
[04:30:17] -!- Komzpa has quit [Ping timeout: 250 seconds]
[04:33:28] Guest51361 is now known as McBird
[04:33:35] -!- McBird has quit [Changing host]
[04:34:29] McBird is now known as McBride6
[04:38:06] -!- Komzpa has quit [Ping timeout: 240 seconds]
[04:52:02] -!- maybekoo5 has quit [Ping timeout: 276 seconds]
[05:00:07] -!- knownasilya has quit [Quit: Connection closed for inactivity]
[05:00:56] -!- patrickarlt has quit [Remote host closed the connection]
[05:29:41] amnesic is now known as amnesic_away
[05:53:21] -!- aventtini6 has quit [Ping timeout: 240 seconds]
[06:14:58] -!- patrickarlt has quit [Ping timeout: 250 seconds]
[06:25:33] -!- ve7it has quit [Remote host closed the connection]
[06:25:40] -!- swarfer has quit [Quit: swarfer]
[06:51:26] -!- kwallace [kwallace!~kwallace@142.147.85.210] has parted #linuxcnc-devel
[07:04:36] -!- bluemaex has quit [Ping timeout: 248 seconds]
[07:13:27] -!- jerryitt has quit [Quit: Connection closed for inactivity]
[07:16:04] -!- patrickarlt has quit [Ping timeout: 252 seconds]
[07:17:59] -!- teepee_ [teepee_!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[07:19:55] -!- DammitCoetzee has quit [Ping timeout: 240 seconds]
[07:20:36] -!- teepee has quit [Ping timeout: 248 seconds]
[07:20:36] teepee_ is now known as teepee
[07:37:20] -!- dr0w has quit [Ping timeout: 250 seconds]
[07:45:39] -!- bobo has quit [Ping timeout: 252 seconds]
[08:10:41] -!- FloppyDisk has quit [Quit: Leaving]
[08:16:35] -!- patrickarlt has quit [Ping timeout: 240 seconds]
[08:18:20] -!- patricka_ has quit [Ping timeout: 260 seconds]
[08:41:08] -!- Komzpa has quit [Ping timeout: 252 seconds]
[08:45:28] -!- rob_h [rob_h!~robh@94.10.120.1] has joined #linuxcnc-devel
[08:45:36] -!- mase-tech has quit [Remote host closed the connection]
[08:50:19] -!- DaPeace has quit [Read error: Connection reset by peer]
[09:04:30] -!- pink_vampire has quit [Read error: Connection reset by peer]
[09:12:46] -!- Wolf_ has quit [Ping timeout: 240 seconds]
[09:18:35] -!- patrickarlt has quit [Ping timeout: 240 seconds]
[09:21:58] -!- pingufan has quit [Quit: Konversation terminated!]
[09:35:05] -!- jesseg has quit [Ping timeout: 245 seconds]
[09:38:49] -!- DaPeace1 has quit [Ping timeout: 250 seconds]
[09:54:21] -!- tinkerer [tinkerer!~tinkerer@mail.play-pla.net] has joined #linuxcnc-devel
[09:54:29] -!- Kucharsky [Kucharsky!~kvirc@hostg.touk.pl] has joined #linuxcnc-devel
[10:24:31] -!- DammitCoetzee has quit [Ping timeout: 245 seconds]
[10:31:55] -!- patrickarlt has quit [Ping timeout: 240 seconds]
[10:39:46] -!- chesty has quit [Ping timeout: 250 seconds]
[10:40:39] -!- _nexxus_ has quit [Ping timeout: 250 seconds]
[10:40:39] -!- varesa has quit [Ping timeout: 250 seconds]
[11:16:24] -!- Valen has quit [Remote host closed the connection]
[11:33:10] -!- patrickarlt has quit [Ping timeout: 260 seconds]
[11:36:11] -!- skunkworks has quit [Ping timeout: 264 seconds]
[11:40:21] amnesic_away is now known as amnesic
[12:00:09] -!- maybekoo5 has quit [Ping timeout: 240 seconds]
[12:11:04] -!- jthornton- has quit [Quit: Leaving]
[12:33:42] -!- patrickarlt has quit [Ping timeout: 250 seconds]
[12:41:10] -!- skunkworks [skunkworks!~skunkwork@68-115-41-210.static.eucl.wi.charter.com] has joined #linuxcnc-devel
[12:44:30] <skunkworks> I am sure it will get better - but it sure seems like steve is trying to hit a moving target.. http://www.machsupport.com/forum/index.php/topic,31834.0.html
[12:46:34] amnesic is now known as amnesic_away
[12:47:14] -!- Frank__2 has quit [Quit: Nettalk6 - www.ntalk.de]
[12:52:14] -!- mozmck1 [mozmck1!~moses@67.210.159.245] has joined #linuxcnc-devel
[12:53:56] -!- Akex_ has quit [Ping timeout: 240 seconds]
[12:53:57] -!- toastyde2th has quit [Ping timeout: 240 seconds]
[12:53:57] -!- mozmck has quit [Ping timeout: 240 seconds]
[12:53:57] -!- archivist has quit [Ping timeout: 240 seconds]
[12:53:57] -!- Jeebiss has quit [Ping timeout: 240 seconds]
[12:54:13] Akex__ is now known as Akex_
[12:55:15] -!- archivist [archivist!~archivist@host81-149-189-98.in-addr.btopenworld.com] has joined #linuxcnc-devel
[13:07:59] <KGB-linuxcnc> 03John Thornton 052.7 59e5b75 06linuxcnc 10docs/man/man9/hm2_eth.9 Docs: add supported boards * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=59e5b75
[13:11:48] -!- beikeland has quit [Ping timeout: 252 seconds]
[13:44:25] -!- Komzpa has quit [Ping timeout: 260 seconds]
[13:48:40] -!- rigid has quit [Max SendQ exceeded]
[13:49:04] -!- rigid has quit [Max SendQ exceeded]
[13:49:26] -!- rigid has quit [Max SendQ exceeded]
[13:49:58] -!- rigid has quit [Max SendQ exceeded]
[13:50:28] -!- rigid has quit [Max SendQ exceeded]
[13:51:05] -!- rigid has quit [Max SendQ exceeded]
[13:52:02] -!- rigid has quit [Max SendQ exceeded]
[13:52:34] -!- rigid has quit [Max SendQ exceeded]
[14:14:08] -!- mase-tech has quit [Client Quit]
[14:16:30] -!- sumpfralle has quit [Ping timeout: 260 seconds]
[14:29:14] * JT-Shop wonders where his replies to the mailing list went?
[14:33:03] <mozmck1> I've had some take days to show up
[14:33:21] <mozmck1> JT-Shop: did you try the my preempt-rt kernel?
[14:34:04] <mozmck1> I built 32-bit linuxcnc 2.7.3+ packages and put them in with the kernel.
[14:35:42] -!- patrickarlt has quit [Ping timeout: 252 seconds]
[14:36:59] <JT-Shop> hmmm, I think so... I know I used the linuxcnc 2.7.3 packages
[14:37:14] * JT-Shop goes down to the beer cave and see what he did
[14:40:16] <jthornton> I think I still have the stock kernel running, I'll reboot in a bit and switch
[14:42:38] <mozmck1> ok - I didn't know if you saw my linuxcnc packages or not. I uploaded them yesterday I think.
[14:43:03] <mozmck1> Should save you from having to build them yourself.
[14:44:14] -!- SEL [SEL!~SEL@net77-43-27-64.mclink.it] has joined #linuxcnc-devel
[14:44:14] <JT-Shop> yea, I downloaded everything
[14:46:21] -!- SEL has quit [Client Quit]
[14:55:37] amnesic_away is now known as amnesic
[15:02:21] amnesic is now known as amnesic_away
[15:09:14] -!- FiliP__ has quit [Quit: Page closed]
[15:34:46] -!- Roguish [Roguish!~chatzilla@c-50-143-183-159.hsd1.ca.comcast.net] has joined #linuxcnc-devel
[15:36:19] -!- patrickarlt has quit [Ping timeout: 250 seconds]
[15:51:07] -!- kb8wmc [kb8wmc!~chatzilla@64.25.194.29] has joined #linuxcnc-devel
[16:00:04] -!- maybekoo5 has quit [Ping timeout: 248 seconds]
[16:17:45] -!- vapula has quit [Quit: Leaving]
[16:19:35] -!- jesseg has quit [Ping timeout: 260 seconds]
[16:29:31] amnesic_away is now known as amnesic
[16:30:03] -!- pink_vampire has quit [Read error: Connection reset by peer]
[16:33:17] asheppard is now known as sheppard
[16:35:10] -!- kwallace [kwallace!~kwallace@142.147.85.210] has joined #linuxcnc-devel
[16:39:03] <cradek> > Seddddddsssdsssssssssdds
[16:39:11] <cradek> I think cmorley's cat responded to an email :-)
[16:48:41] amnesic is now known as amnesic_away
[17:13:35] -!- jduhls has quit [Ping timeout: 240 seconds]
[17:17:11] -!- rigid has quit [Quit: NO WINE, NO WIFE, NO CARRIER]
[17:18:16] -!- rigid has quit [Max SendQ exceeded]
[17:18:58] -!- rigid has quit [Max SendQ exceeded]
[17:19:19] -!- rigid has quit [Max SendQ exceeded]
[17:19:49] -!- rigid has quit [Max SendQ exceeded]
[17:20:19] -!- rigid has quit [Max SendQ exceeded]
[17:35:24] -!- ivansanchez has quit []
[17:39:57] -!- Demiurge has quit [Quit: Demiurge]
[17:49:39] -!- md-2 has quit [Quit: Leaving...]
[17:51:36] -!- tchaddad has quit [Remote host closed the connection]
[18:01:10] -!- tchaddad has quit [Remote host closed the connection]
[18:02:57] amnesic_away is now known as amnesic
[18:05:02] <pcw_home> Even the cat thought people were getting a bit too excited about control architecture choices
[18:05:30] -!- Kucharsky has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
[18:07:10] -!- andypugh [andypugh!~andypugh@cpc14-basl11-2-0-cust1010.20-1.cable.virginm.net] has joined #linuxcnc-devel
[18:07:59] -!- chris_99 has quit [Quit: Leaving]
[18:19:52] amnesic is now known as amnesic_away
[18:19:59] -!- cetabio has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
[18:28:45] amnesic_away is now known as amnesic
[18:34:42] amnesic is now known as amnesic_away
[18:56:16] -!- mase-tech has quit [Quit: Leaving]
[18:56:52] -!- mikeh_ has quit [Read error: Connection reset by peer]
[19:02:57] -!- swarfer has quit [Client Quit]
[19:31:03] -!- tchaddad has quit [Remote host closed the connection]
[19:34:58] -!- tchaddad has quit [Read error: Connection reset by peer]
[19:58:04] -!- spooq has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
[20:03:48] -!- malcom2073 has quit [Quit: No Ping reply in 180 seconds.]
[20:05:59] -!- FloppyDisk has quit [Quit: Leaving]
[20:15:20] -!- GJdan has quit [Remote host closed the connection]
[20:17:55] -!- PetefromTn_ [PetefromTn_!~IceChat9@75-136-59-160.dhcp.jcsn.tn.charter.com] has joined #linuxcnc-devel
[20:19:54] -!- malcom2073 [malcom2073!~quassel@mikesshop.net] has joined #linuxcnc-devel
[20:38:47] -!- DammitCoetzee has quit [Ping timeout: 250 seconds]
[20:40:57] -!- McBride6 has quit [Ping timeout: 250 seconds]
[20:41:23] -!- asdfasd has quit [Ping timeout: 250 seconds]
[20:42:15] -!- DaViruz has quit [Ping timeout: 250 seconds]
[20:44:25] -!- jerryitt has quit [Ping timeout: 250 seconds]
[20:46:35] -!- maurris has quit [*.net *.split]
[20:46:35] -!- xrr has quit [*.net *.split]
[20:46:35] -!- Sarvihepo has quit [*.net *.split]
[20:46:35] -!- GJdan has quit [*.net *.split]
[20:46:35] -!- chris_99 has quit [*.net *.split]
[20:46:35] -!- FinboySlick has quit [*.net *.split]
[20:46:35] -!- joem_ has quit [*.net *.split]
[20:46:35] -!- putnik has quit [*.net *.split]
[20:46:35] -!- A_Nub has quit [*.net *.split]
[20:46:35] -!- rkj has quit [*.net *.split]
[20:46:35] -!- liedman has quit [*.net *.split]
[20:46:35] -!- pink_vampire has quit [*.net *.split]
[20:46:35] -!- archivist has quit [*.net *.split]
[20:46:35] -!- bluemaex has quit [*.net *.split]
[20:46:35] -!- linuxcnc-build has quit [*.net *.split]
[20:46:35] -!- Loetmichel has quit [*.net *.split]
[20:46:35] -!- jfindley has quit [*.net *.split]
[20:46:35] -!- jepler has quit [*.net *.split]
[20:46:35] -!- t0shnip_ has quit [*.net *.split]
[20:46:35] -!- bilboquet_ has quit [*.net *.split]
[20:46:35] -!- kriskropd has quit [*.net *.split]
[20:46:35] -!- tcurdt has quit [*.net *.split]
[20:46:35] -!- terinjokes has quit [*.net *.split]
[20:46:35] -!- calvinmetcalf has quit [*.net *.split]
[20:46:35] -!- lair82_ has quit [*.net *.split]
[20:46:35] -!- Sync has quit [*.net *.split]
[20:46:35] -!- oyvindje_ has quit [*.net *.split]
[20:46:35] -!- SkramX has quit [*.net *.split]
[20:46:35] -!- Tom_itx has quit [*.net *.split]
[20:46:35] -!- MarkusBec has quit [*.net *.split]
[20:46:35] -!- sanjayb has quit [*.net *.split]
[20:46:35] -!- sttts has quit [*.net *.split]
[20:46:36] -!- dfgg has quit [*.net *.split]
[20:46:36] -!- ReadError has quit [*.net *.split]
[20:46:36] -!- zeeshan|2 has quit [*.net *.split]
[20:46:36] -!- Kremmen has quit [*.net *.split]
[20:46:36] -!- johtso has quit [*.net *.split]
[20:46:36] -!- amatecha has quit [*.net *.split]
[20:46:36] -!- fiesh_ has quit [*.net *.split]
[20:46:36] -!- enleth has quit [*.net *.split]
[20:46:36] -!- Hawku has quit [*.net *.split]
[20:46:36] -!- mikeh_ has quit [*.net *.split]
[20:46:36] -!- andypugh has quit [*.net *.split]
[20:46:36] -!- chesty has quit [*.net *.split]
[20:46:36] -!- likevinyl has quit [*.net *.split]
[20:46:36] -!- rhavenj has quit [*.net *.split]
[20:46:36] -!- radish has quit [*.net *.split]
[20:46:36] -!- the_wench has quit [*.net *.split]
[20:46:36] -!- steves_logging has quit [*.net *.split]
[20:46:36] -!- pcw_home has quit [*.net *.split]
[20:46:36] -!- nos has quit [*.net *.split]
[20:46:36] -!- six has quit [*.net *.split]
[20:46:36] -!- mal`` has quit [*.net *.split]
[20:46:36] -!- renesis has quit [*.net *.split]
[20:46:36] -!- toxx has quit [*.net *.split]
[20:46:36] -!- trentster has quit [*.net *.split]
[20:46:36] -!- Ralith has quit [*.net *.split]
[20:46:36] -!- t12 has quit [*.net *.split]
[20:46:36] -!- Kevin` has quit [*.net *.split]
[20:46:36] -!- KimK has quit [*.net *.split]
[20:46:36] -!- Giac0m0 has quit [*.net *.split]
[20:46:36] -!- hendrik has quit [*.net *.split]
[20:46:36] -!- fenn has quit [*.net *.split]
[20:46:36] -!- roh has quit [*.net *.split]
[20:46:36] -!- malcom2073 has quit [*.net *.split]
[20:46:36] -!- PetefromTn_ has quit [*.net *.split]
[20:46:36] -!- Komzpa has quit [*.net *.split]
[20:46:36] -!- kwallace has quit [*.net *.split]
[20:46:36] -!- jesseg_ has quit [*.net *.split]
[20:46:36] -!- d42 has quit [*.net *.split]
[20:46:36] -!- tobias47n9e_ has quit [*.net *.split]
[20:46:36] -!- os1r1s has quit [*.net *.split]
[20:46:36] -!- LeelooMinai has quit [*.net *.split]
[20:46:36] -!- Remog has quit [*.net *.split]
[20:46:36] -!- KGB-wlo has quit [*.net *.split]
[20:46:36] -!- Patang has quit [*.net *.split]
[20:46:36] -!- arekm has quit [*.net *.split]
[20:46:36] -!- Katharsis has quit [*.net *.split]
[20:46:36] -!- Reventlov has quit [*.net *.split]
[20:46:36] -!- Lasper has quit [*.net *.split]
[20:46:36] -!- Gaston|Home has quit [*.net *.split]
[20:46:36] -!- q3k has quit [*.net *.split]
[20:46:36] -!- _longines has quit [*.net *.split]
[20:46:36] -!- tumdedum has quit [*.net *.split]
[20:46:36] -!- Khetzal has quit [*.net *.split]
[20:46:36] -!- dagjomar has quit [*.net *.split]
[20:46:36] -!- Roivai_ has quit [*.net *.split]
[20:46:36] -!- skunkworks has quit [*.net *.split]
[20:46:36] -!- tinkerer has quit [*.net *.split]
[20:46:36] -!- rob_h has quit [*.net *.split]
[20:46:36] -!- raymondhim has quit [*.net *.split]
[20:46:36] -!- Tecan has quit [*.net *.split]
[20:46:46] -!- redlegion has quit [*.net *.split]
[20:46:46] -!- RagingComputer has quit [*.net *.split]
[20:46:46] -!- witnit has quit [*.net *.split]
[20:46:46] -!- Erant has quit [*.net *.split]
[20:46:46] -!- cradek has quit [*.net *.split]
[20:46:46] -!- seb_kuzminsky has quit [*.net *.split]
[20:46:46] -!- humble_sea_bass has quit [*.net *.split]
[20:46:46] -!- TekniQue has quit [*.net *.split]
[20:46:46] -!- CaptHindsight has quit [*.net *.split]
[20:46:46] -!- MrSunshine has quit [*.net *.split]
[20:46:46] -!- theorbtwo has quit [*.net *.split]
[20:46:46] -!- MattyMatt2 has quit [*.net *.split]
[20:46:46] -!- ssi_ has quit [*.net *.split]
[20:46:46] -!- ibaca has quit [*.net *.split]
[20:46:46] -!- archivist_herron has quit [*.net *.split]
[20:46:46] -!- cmorley has quit [*.net *.split]
[20:46:46] -!- Jymmm has quit [*.net *.split]
[20:46:46] -!- Timbo has quit [*.net *.split]
[20:46:46] -!- rene-dev has quit [*.net *.split]
[20:46:46] -!- cers has quit [*.net *.split]
[20:46:46] -!- orangey has quit [*.net *.split]
[20:46:46] -!- AmsterdamJoe has quit [*.net *.split]
[20:46:46] -!- roycroft has quit [*.net *.split]
[20:46:46] -!- HSD has quit [*.net *.split]
[20:46:46] -!- leptonix has quit [*.net *.split]
[20:46:46] -!- racicot has quit [*.net *.split]
[20:46:46] -!- floppydisk-ph has quit [*.net *.split]
[20:46:46] -!- tiwake has quit [*.net *.split]
[20:46:46] -!- jduhls has quit [*.net *.split]
[20:46:46] -!- membiblio has quit [*.net *.split]
[20:46:46] -!- gregcnc has quit [*.net *.split]
[20:46:46] -!- toastyde1th has quit [*.net *.split]
[20:46:47] -!- englishman has quit [*.net *.split]
[20:46:47] -!- justanotheruser has quit [*.net *.split]
[20:46:47] -!- lexAngeles_ has quit [*.net *.split]
[20:46:47] -!- pjm has quit [*.net *.split]
[20:46:47] -!- djinni` has quit [*.net *.split]
[20:46:47] -!- mik_ has quit [*.net *.split]
[20:46:47] -!- Kucharsky has quit [*.net *.split]
[20:46:47] -!- mozmck1 has quit [*.net *.split]
[20:46:47] -!- phragment_ has quit [*.net *.split]
[20:46:47] -!- XXCoder has quit [*.net *.split]
[20:46:47] -!- KGB-linuxcnc has quit [*.net *.split]
[20:46:47] -!- Jeebiss has quit [*.net *.split]
[20:46:47] -!- dr0w has quit [*.net *.split]
[20:46:47] -!- ar has quit [*.net *.split]
[20:46:47] -!- PCW has quit [*.net *.split]
[20:46:47] -!- jst_ has quit [*.net *.split]
[20:46:47] -!- eFuchs has quit [*.net *.split]
[20:46:47] -!- valeech has quit [*.net *.split]
[20:46:47] -!- P1ersson has quit [*.net *.split]
[20:46:47] -!- Magnifikus has quit [*.net *.split]
[20:46:47] -!- msantana has quit [*.net *.split]
[20:46:47] -!- AphelionZ has quit [*.net *.split]
[20:47:02] -!- logger[mah] has quit [*.net *.split]
[20:47:02] -!- tjb1 has quit [*.net *.split]
[20:47:02] -!- diginet has quit [*.net *.split]
[20:47:02] -!- Blumax has quit [*.net *.split]
[20:47:02] -!- Topy44 has quit [*.net *.split]
[20:47:02] -!- nickoe has quit [*.net *.split]
[20:47:02] -!- s1dev has quit [*.net *.split]
[20:47:02] -!- tchaddad has quit [*.net *.split]
[20:47:02] -!- kalxas has quit [*.net *.split]
[20:47:02] -!- _nexxus_ has quit [*.net *.split]
[20:47:02] -!- Lowridah has quit [*.net *.split]
[20:47:02] -!- jthornton has quit [*.net *.split]
[20:47:02] -!- aude has quit [*.net *.split]
[20:47:02] -!- a_morale has quit [*.net *.split]
[20:47:02] -!- r3mstw_ has quit [*.net *.split]
[20:47:02] -!- Vq has quit [*.net *.split]
[20:47:02] -!- kengu has quit [*.net *.split]
[20:47:02] -!- anomynous has quit [*.net *.split]
[20:47:02] -!- evil_ren has quit [*.net *.split]
[20:47:02] -!- amnesic_away has quit [*.net *.split]
[20:47:02] -!- uwe_ has quit [*.net *.split]
[20:47:02] -!- _methods has quit [*.net *.split]
[20:47:02] -!- patrickarlt has quit [*.net *.split]
[20:47:02] -!- teepee has quit [*.net *.split]
[20:47:02] -!- Computer_barf has quit [*.net *.split]
[20:47:02] -!- JT-Shop has quit [*.net *.split]
[20:47:02] -!- Meduza has quit [*.net *.split]
[20:47:02] -!- hm2-buildmaster has quit [*.net *.split]
[20:47:02] -!- kingarma1illo has quit [*.net *.split]
[20:47:02] -!- gonzo_ has quit [*.net *.split]
[20:47:02] -!- Nutter has quit [*.net *.split]
[20:47:02] -!- Simonious has quit [*.net *.split]
[20:47:02] -!- uwe_mobile has quit [*.net *.split]
[20:47:03] -!- TMA has quit [*.net *.split]
[20:47:03] -!- zlog has quit [*.net *.split]
[20:47:03] -!- Deejay has quit [*.net *.split]
[20:47:03] -!- alex_joni has quit [*.net *.split]
[20:47:03] -!- ChuangTzu has quit [*.net *.split]
[20:47:03] -!- Connor has quit [*.net *.split]
[20:47:03] -!- SpeedEvil has quit [*.net *.split]
[20:47:03] -!- amiri has quit [*.net *.split]
[20:47:03] -!- jasen_ has quit [*.net *.split]
[20:47:03] -!- beikeland has quit [*.net *.split]
[20:47:03] -!- bobo has quit [*.net *.split]
[20:47:03] -!- sheppard has quit [*.net *.split]
[20:47:03] -!- JesusAlos has quit [*.net *.split]
[20:47:03] -!- varesa has quit [*.net *.split]
[20:47:03] -!- DaPeace has quit [*.net *.split]
[20:47:03] -!- cpresser has quit [*.net *.split]
[20:47:03] -!- laurent\ has quit [*.net *.split]
[20:47:03] -!- OhmEye has quit [*.net *.split]
[20:47:03] -!- chupacabra has quit [*.net *.split]
[20:47:03] -!- kb8wmc has quit [*.net *.split]
[20:47:03] -!- Valen has quit [*.net *.split]
[20:47:03] -!- Roguish has quit [*.net *.split]
[20:47:03] -!- beawesomeinstead has quit [*.net *.split]
[20:47:03] -!- mitch_idle has quit [*.net *.split]
[20:47:03] -!- firephoto has quit [*.net *.split]
[20:47:03] -!- awallin has quit [*.net *.split]
[20:54:46] -!- logger[psha] [logger[psha]!~loggerpsh@195.135.238.205] has joined #linuxcnc-devel
[20:57:40] -!- kanzure has quit [Changing host]
[21:03:31] -!- skunkworks has quit [Read error: Connection reset by peer]
[21:08:37] -!- LeelooMinai [LeelooMinai!~leeloo@184.175.46.197] has joined #linuxcnc-devel
[21:21:21] -!- ve7it [ve7it!~LawrenceG@S01060014d19d0b68.pk.shawcable.net] has joined #linuxcnc-devel
[21:27:42] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]
[21:37:01] -!- tobias47n9e__ has quit [Remote host closed the connection]
[21:41:25] -!- tjb1 has quit [Read error: Connection reset by peer]
[21:44:25] -!- tjb1 has quit [Read error: Connection reset by peer]
[21:45:26] -!- jerryitt has quit [Ping timeout: 240 seconds]
[21:46:44] -!- aventtini6 has quit [Ping timeout: 248 seconds]
[21:49:20] -!- FinboySlick has quit [Quit: Leaving.]
[21:52:04] -!- jasen__ has quit [Client Quit]
[21:55:22] -!- Deejay has quit [Quit: bye]
[21:55:26] -!- Meduza has quit [Quit: No Ping reply in 180 seconds.]
[21:56:11] -!- likevinyl has quit [Quit: likevinyl]
[21:58:56] -!- membiblio has quit [Remote host closed the connection]
[21:59:30] -!- Meduza has quit [Client Quit]
[22:02:29] -!- kalxas has quit [Quit: Goodbye]
[22:14:01] -!- mozmck1 has quit [Quit: Leaving.]
[22:15:01] -!- mozmck [mozmck!~moses@67.210.159.245] has joined #linuxcnc-devel
[22:17:47] -!- Tecan has quit [Quit: Live Long And Phosphor!]
[22:29:37] -!- jduhls has quit [Remote host closed the connection]
[22:33:58] -!- floppydisk-ph has quit [Ping timeout: 252 seconds]
[22:34:14] -!- teepee_ [teepee_!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[22:36:55] -!- teepee has quit [Ping timeout: 240 seconds]
[22:36:55] teepee_ is now known as teepee
[22:39:31] -!- gregcnc has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
[23:03:42] -!- skunkworks [skunkworks!~chatzilla@str-broadband-ccmts-ws-26.dsl.airstreamcomm.net] has joined #linuxcnc-devel
[23:06:19] -linuxcnc-github:#linuxcnc-devel- [13linuxcnc] 15nicokid opened pull request #33: Stepconf porting to gtk3 (06master...06master) 02https://github.com/LinuxCNC/linuxcnc/pull/33
[23:10:05] -!- teepee has quit [Ping timeout: 245 seconds]
[23:10:10] -!- Kucharsky has quit [Ping timeout: 240 seconds]
[23:11:45] -!- teepee [teepee!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[23:13:57] -!- tchaddad has quit [Remote host closed the connection]
[23:18:32] -!- Kucharsky has quit [Ping timeout: 256 seconds]
[23:28:04] -!- kengu has quit [Ping timeout: 250 seconds]
[23:28:30] -!- uwe_ has quit [Ping timeout: 250 seconds]
[23:34:06] -!- mozmck has quit [Read error: Connection reset by peer]
[23:34:50] amnesic_away is now known as amnesic
[23:36:10] -!- LeelooMinai has quit [Ping timeout: 240 seconds]
[23:39:35] -!- jasen_ has quit [Quit: Page closed]
[23:49:22] -!- LeelooMinai [LeelooMinai!~leeloo@184.175.46.197] has joined #linuxcnc-devel
[23:49:48] -!- pinkvampire has quit [Ping timeout: 252 seconds]
[23:51:20] -!- mozmck [mozmck!~moses@67.210.159.245] has joined #linuxcnc-devel