#linuxcnc-devel | Logs for 2015-04-01

Back
[00:06:38] -!- Nick001-shop has quit [Remote host closed the connection]
[00:09:57] <PCW> I tried turning off the power options and using the 1KHz tic but no difference I could see
[00:10:08] -!- wortley_ [wortley_!6cfd4262@gateway/web/freenode/ip.108.253.66.98] has joined #linuxcnc-devel
[00:11:03] <PCW> It would be nice if the wheezy install included a up-to-date vanilla kernel so its would at least boot
[00:11:04] <wortley_> Are the KERNEL SYMBOLS that I see by using nm on xxx.comp available to the functions within that xxx.comp file? The whole kernel? just linuxcnc?
[00:17:54] -!- Loetmichel has quit [Ping timeout: 264 seconds]
[00:36:13] <seb_kuzminsky> PCW: the kernel on the 2.6 & 2.7 install images both have the baytrail fix, iirc
[00:37:00] <seb_kuzminsky> wortley_: on rtai they're available to the whole kernel, including comps you load later (i think)
[00:48:51] <wortley_> I was pointed at using hal_data to allow my functions to find everything, but I tried adding a reference to it and the compiler barfed.
[00:49:28] -!- swingley has quit [Ping timeout: 252 seconds]
[00:49:44] <wortley_> I guess I need to add hal_priv.h to get at it?
[00:51:22] -!- FreezingCold has quit [Read error: Connection reset by peer]
[00:51:35] <wortley_> I just want the functions within my component (i.e. return_ptr_to_a_buffer) to be able to find the buffer that was declared in __comp_inst.
[01:01:20] <wortley_> seb_kuzminsky: Are my other symbols like __comp_first_inst somehow accessible by other functions within the component? I would prefer to not have to grab the mutex and crawl the tree just to find myself.
[01:04:23] <wortley_> Those two, __comp_first_inst, default_count, count are declared as global variables...
[01:07:14] <wortley_> and it appears that at least the main function "_" made by the component generator has access to it...
[01:38:22] -!- zeeshan has quit [Read error: Connection reset by peer]
[01:38:37] -!- zeeshan [zeeshan!~kvirc64@CPE0018e7cea342-CM5039555db2cc.cpe.net.cable.rogers.com] has joined #linuxcnc-devel
[01:40:56] -!- Tomashe has quit [Ping timeout: 256 seconds]
[01:50:46] -!- swingley has quit [Ping timeout: 272 seconds]
[01:51:04] amnesic_away is now known as amnesic
[01:51:08] -!- arekm has quit [Ping timeout: 256 seconds]
[01:54:26] <jepler> A function which is an argument to EXPORT_SYMBOL or EXPORT_SYMBOL_GPL is available in another component which is loaded later. I don't think that we deliberately do this anywhere for data symbols, only for functions, so data may not work.
[01:55:27] <jepler> additionally, symbol names like __comp_foo are intended for the internal use of halcompile, and might change from release to release.
[01:55:50] <wortley_> jepler: Would mean I would be limited to single instance of something that exports a function?
[01:56:47] <wortley_> jepler: ahh, yes. So using __comp_first_inst in a function (since I didn't make it) is probably risky.
[01:58:05] <wortley_> When I get all done, I guess I could turn the .comp into a .c (should this be accepted as part of linuxcnc some day).
[02:00:24] <jepler> well I'd hate to add a .c file which is 90% comp-generated and then 10% hand-edited, that is a sad event too
[02:01:10] <jepler> .. one option would be to improve comp until it can do what you need; another would be to just write in C
[02:01:23] <jepler> once you start stepping outside of what halcompile was intended to do, it quickly becomes painful
[02:02:30] <wortley_> I am happy to report that I DO have a working driver running a motor over SPIBUS and parport -- The rest of this is about how I can clean it up such that it could be consumed by the masses.
[02:02:58] <jepler> cool
[02:03:26] <jepler> (I am quite out of touch with what people are up to these days)
[02:03:29] <wortley_> There has definitely been some pain with using a .comp. I wish there was a "preinclude" directive that would allow me to use #define constants in my variable definitions...
[02:04:33] <wortley_> Cool and scary. I'm getting pretty close to handing over control of a 4HP spindle and NEMA42 steppers to ***my code***. Which is kinda creepy...
[02:05:39] <wortley_> The single axis bench tests have been going well enough to start thinking about hooking up the beast.
[02:06:54] <jepler> is there more information about your hardware interface online?
[02:08:12] -!- rob_h has quit [Ping timeout: 250 seconds]
[02:08:53] -!- Praesmeodymium has quit [Ping timeout: 252 seconds]
[02:12:47] <wortley_> Not in one place by me. I'm using L6480 EVAL boards from ST Micro time 4 to drive a Shizuoka AN-S Milling machine.
[02:14:00] <wortley_> The spi protocol is being spoke over generic IO provided via the parport driver.
[02:14:21] <jepler> bitbanged spi, or epp -> spp translator in a microcontroller or something?
[02:14:23] <wortley_> I have separate L6480 driver that sends/gets serial data from the spibus.comp driver that is hooked to the parport io pins.
[02:14:29] <wortley_> bitbanged spi.
[02:14:38] <wortley_> But fast enough to get 5.5bytes/ms.
[02:15:28] <jepler> interesting, the L6480 detects motor stalls?
[02:15:32] <wortley_> I will probably have each controller board on it's own dedicated bus with it's own io pins, but we'll see.
[02:15:47] <wortley_> It is supposed to, but i haven't dialed in the voltage levels that far yet.
[02:16:53] <wortley_> The demo board is pretty sweet though. I have driven 12Amps into my motors with just some air blowing over the boards. No heat sink!
[02:17:00] <jepler> does this use the hal parport component, or the hal_parport_* C APIs?
[02:17:11] <wortley_> hal_parport component
[02:17:26] <wortley_> I have a MAX7219 LED display working over the spibus too.
[02:17:39] <wortley_> It's on the linuxcnc user forum.
[02:17:54] <jepler> ah, I'm a mailing list guy, rarely browse the forum
[02:19:00] <wortley_> Until I get all of this buffer pointer kernel symbol business worked out, it shouldn't really be used by other people. Right now I am casting pointers to unsigneds and passing them over pins.
[02:19:07] <wortley_> It's gross, but it works.
[02:21:53] <jepler> so you use the "run" command to set a step frequency and read the ABS_POS register back to "close" the loop?
[02:21:56] <wortley_> But I have learned a lot (goal 1) and am close to having something usable (goal 2) and hopefully will be able to clean it up enough to give back (goal 3).
[02:22:23] <wortley_> Yes. And as a bonus, it actually works.
[02:22:30] <wortley_> :)
[02:22:52] <wortley_> It is kind of like having an absolute encoder.
[02:24:07] <jepler> the hostmot2 driver has some examples of how to make multiple components work together and send the kind of data that is not best transported by HAL pins
[02:24:14] <wortley_> I was mostly attracted to the part because the demo board was so beefy, and it has its own motion engine. Although Step/dir is pretty simple.
[02:24:43] <jepler> yeah though with step/dir you run into tradeoffs between maximum speed, microstepping, and base period really quickly
[02:24:54] <wortley_> Andy was kind enough to point me toward the uart.c in hostmot as a decent model.
[02:25:01] <jepler> ah so you've already talked to him. good.
[02:25:13] <jepler> he also has experience working at the boundaries of what comp can do
[02:26:08] <wortley_> He has provided me so good references and advice -- but since a lot of this is new, I'm struggling to digest it all.
[02:26:32] <jepler> my advice, for what it's worth, is that you're best off just writing in C. Then stuff like defining the structures you need, making sure you can refer to what you need where you need to do it, etc., is easy (it's just C, with EXPORT_SYMBOL for stuff that the later-lodaed component needs to be able to call)
[02:26:42] <jepler> anyway, I have to go. it was nice talking to youl
[02:26:44] <jepler> you.
[02:27:46] <wortley_> Thanks Jeff -- I plan to go that way eventually. Thus far I have been able to get away with letting comp do the tedious work. Later...
[02:42:26] amnesic is now known as amnesic_away
[02:45:22] -!- jerryitt has quit [Quit: Connection closed for inactivity]
[02:47:18] -!- AR_ has quit [Ping timeout: 264 seconds]
[02:48:10] -!- swingley has quit [Read error: Connection reset by peer]
[02:52:39] -!- swingley_ has quit [Ping timeout: 265 seconds]
[03:24:34] -!- wortley_ has quit [Ping timeout: 246 seconds]
[03:38:29] -!- sirdancealot has quit [Ping timeout: 248 seconds]
[03:46:18] -!- sumpfralle has quit [Quit: Leaving.]
[03:53:38] -!- swingley has quit [Ping timeout: 272 seconds]
[04:02:11] -!- crazy_imp has quit [Ping timeout: 256 seconds]
[04:07:16] -!- Roguish_ has quit [Quit: ChatZilla 0.9.91.1 [Firefox 36.0.4/20150320202338]]
[04:16:06] -!- furrywolf has quit [Ping timeout: 264 seconds]
[04:17:48] -!- Cromaglious__ has quit [Quit: Page closed]
[04:25:21] -!- unfy has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org]
[04:47:41] -!- patrickarlt has quit [Ping timeout: 265 seconds]
[04:47:51] -!- georgenz has quit [Ping timeout: 250 seconds]
[04:52:31] -!- HeXiLeD has quit [Ping timeout: 265 seconds]
[05:30:35] -!- karavanjo has quit [Ping timeout: 244 seconds]
[05:34:57] -!- karavanjo1 has quit [Ping timeout: 252 seconds]
[05:55:51] -!- karavanjo has quit [Ping timeout: 252 seconds]
[05:57:18] -!- ve7it has quit [Remote host closed the connection]
[05:59:25] -!- nofxx has quit [Changing host]
[06:03:48] -!- bobo_ has quit [Quit: Page closed]
[06:05:49] -!- kwallace1 has quit [Ping timeout: 264 seconds]
[06:13:32] -!- patricka_ has quit [Quit: Leaving...]
[06:19:23] -!- tjtr33 has quit [Quit: Leaving]
[06:21:11] -!- micges has quit [Quit: Ex-Chat]
[06:47:32] -!- eventor [eventor!~eventor@p5B255E3F.dip0.t-ipconnect.de] has joined #linuxcnc-devel
[06:49:31] -!- teepee_ [teepee_!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[06:50:48] -!- teepee has quit [Ping timeout: 276 seconds]
[06:50:48] teepee_ is now known as teepee
[07:24:44] -!- tjb1 has quit [Ping timeout: 252 seconds]
[07:28:23] -!- brlcad has quit [Ping timeout: 244 seconds]
[07:36:35] -!- Cromaglious has quit [Read error: Connection reset by peer]
[07:39:09] -!- ashcan has quit [Client Quit]
[07:56:48] -!- erve has quit [Ping timeout: 244 seconds]
[08:01:04] -!- Akex [Akex!uid58281@gateway/web/irccloud.com/x-istisejltyneuwff] has joined #linuxcnc-devel
[08:03:53] -!- b_b has quit [Changing host]
[08:32:34] -!- arekm has quit [Ping timeout: 250 seconds]
[08:36:27] -!- rob_h [rob_h!~robh@90.206.206.84] has joined #linuxcnc-devel
[08:40:59] -!- erve has quit [Read error: Connection reset by peer]
[08:44:18] -!- tjb11 has quit [Ping timeout: 252 seconds]
[08:44:24] -!- brlcad [brlcad!~sean@66-118-151-70.static.sagonet.net] has joined #linuxcnc-devel
[08:55:29] -!- arekm has quit [Remote host closed the connection]
[08:56:19] -!- arekm has quit [Changing host]
[08:57:59] -!- BellinganRoy has quit [Ping timeout: 256 seconds]
[09:05:40] -!- Tecan has quit [Quit: Live Long And Phosphor!]
[09:23:10] -!- BellinganRoy has quit [Ping timeout: 252 seconds]
[09:24:51] -!- pinkcody has quit [Ping timeout: 276 seconds]
[09:41:41] -!- dimas has quit [Ping timeout: 246 seconds]
[09:44:27] -!- HeXiLeD has quit [Ping timeout: 265 seconds]
[10:09:38] -!- FreezingCold has quit [Ping timeout: 250 seconds]
[10:27:42] -!- skunkworks has quit [Ping timeout: 252 seconds]
[10:39:30] -!- per_sonne_ has quit [Quit: Lingo: www.lingoirc.com]
[10:39:59] -!- b_b has quit [Remote host closed the connection]
[10:40:17] -!- b_b has quit [Changing host]
[10:52:13] -!- Brandan has quit [Ping timeout: 246 seconds]
[10:55:40] -!- eventor has quit [Read error: Connection reset by peer]
[10:55:46] -!- eventor [eventor!~eventor@p5B255E3F.dip0.t-ipconnect.de] has joined #linuxcnc-devel
[10:59:51] -!- phantoneD has quit [Ping timeout: 265 seconds]
[11:18:14] -!- dan2k3k4 has quit [Ping timeout: 272 seconds]
[11:20:07] -!- skunkworks [skunkworks!~skunkwork@68-115-41-210.static.eucl.wi.charter.com] has joined #linuxcnc-devel
[11:25:13] -!- skunkworks_ [skunkworks_!~chatzilla@68-115-41-210.static.eucl.wi.charter.com] has joined #linuxcnc-devel
[11:36:24] Loetmichel2 is now known as Loetmichel
[11:37:46] -!- md-2 has quit [Remote host closed the connection]
[11:42:45] amnesic_away is now known as amnesic
[11:54:20] -!- Valen has quit [Remote host closed the connection]
[11:59:22] -!- erve has quit [Remote host closed the connection]
[12:01:55] -!- quiqua has quit [Quit: quiqua]
[12:11:36] amnesic is now known as amnesic_away
[12:15:15] -!- dan2k3k4 has quit [Quit: Leaving]
[12:35:30] -!- arekm has quit [Quit: leaving]
[12:38:50] -!- nofxx has quit [Ping timeout: 256 seconds]
[12:42:29] -!- maximilian_h has quit [Ping timeout: 252 seconds]
[12:43:12] -!- maximilian_h [maximilian_h!~bonsai@dslb-178-002-164-012.178.002.pools.vodafone-ip.de] has joined #linuxcnc-devel
[12:53:52] -!- sirdancealot has quit [Ping timeout: 272 seconds]
[13:02:26] -!- skunkworks has quit [Ping timeout: 252 seconds]
[13:02:39] -!- balestrino has quit [Ping timeout: 252 seconds]
[13:14:21] -!- kyugyi [kyugyi!~bjkvgr@197.193.17.222] has joined #linuxcnc-devel
[13:14:26] -!- kyugyi has quit [Excess Flood]
[13:23:55] -!- vapula has quit [Ping timeout: 264 seconds]
[13:28:46] -!- b_b has quit [Changing host]
[13:31:33] -!- a_morale has quit [Ping timeout: 248 seconds]
[13:58:19] -!- kwallace [kwallace!~kwallace@smb-182.sonnet.com] has joined #linuxcnc-devel
[13:59:12] amnesic_away is now known as amnesic
[14:06:52] -!- Brunetty has quit [Quit: Follow me]
[14:08:40] amnesic is now known as amnesic_away
[14:08:41] -!- erve has quit []
[14:16:14] <jepler> check your calendar, gene
[14:26:15] -!- vapula has quit [Remote host closed the connection]
[14:28:01] -!- maximilian_h has quit [Ping timeout: 264 seconds]
[14:28:49] -!- maximilian_h [maximilian_h!~bonsai@dslb-088-066-232-225.088.066.pools.vodafone-ip.de] has joined #linuxcnc-devel
[14:31:20] amnesic_away is now known as amnesic
[14:33:42] <KGB-linuxcnc> 03Sebastian Kuzminsky 052.6 de51d6b 06linuxcnc 10docs/man/man3/hal_param_new.3hal 10docs/man/man3/hal_pin_new.3hal docs: fix hal_pin_new() and hal_param_new() manpages * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=de51d6b
[14:35:49] -!- teepee has quit [Ping timeout: 264 seconds]
[14:36:40] -!- teepee [teepee!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[15:07:01] <mozmck> cmorley: you around?
[15:54:51] <mozmck> I'm using a custom skin with Gscreen - actually started with the Gaxis skin, and my embedded panels are not getting their HAL pins created/ready before the postgui hal file is executed.
[15:55:32] -!- erve has quit [Remote host closed the connection]
[16:00:47] -!- amiri_ has quit [Read error: Connection reset by peer]
[16:01:46] -!- Brunetty has quit [Ping timeout: 255 seconds]
[16:02:19] -!- capricorn_1 has quit [Quit: Konversation terminated!]
[16:05:14] -!- wity has quit [Ping timeout: 245 seconds]
[16:20:05] -!- md-2 has quit [Quit: Leaving...]
[16:25:19] -!- Brunetty_ has quit [Quit: Follow me]
[16:39:40] -!- MrFahrenheit has quit [Ping timeout: 256 seconds]
[16:41:28] <seb_kuzminsky> i thought if you set the S-word, then repeatedly hit F9 it turns on and off the spindle at that speed, am i misremembering?
[16:41:40] <cradek> apparently
[16:42:20] -!- MrFahrenheit has quit [Changing host]
[16:47:34] -!- danylevskyi has quit [Ping timeout: 252 seconds]
[16:56:57] -!- b_b has quit [Remote host closed the connection]
[17:01:18] -!- gambakufu has quit [Ping timeout: 250 seconds]
[17:09:22] -!- Rickta59 has quit [Quit: Lost terminal]
[17:21:25] -!- rob_h has quit [Ping timeout: 264 seconds]
[17:23:13] -!- podarok has quit [Quit: Залишаю]
[17:26:22] -!- albertcoder has quit [Remote host closed the connection]
[17:28:00] -!- BellinganRoy has quit [Quit: Konversation terminated!]
[17:29:05] -!- Akex has quit [Quit: Connection closed for inactivity]
[17:50:17] -!- balestrino has quit [Ping timeout: 246 seconds]
[17:59:55] -!- skunksleep has quit [Read error: Connection reset by peer]
[18:00:49] -!- skunksleep [skunksleep!~AndChat14@str-broadband-ccmts-ws-26.dsl.airstreamcomm.net] has joined #linuxcnc-devel
[18:03:01] -!- ve7it [ve7it!~LawrenceG@S01060014d19d0b68.pk.shawcable.net] has joined #linuxcnc-devel
[18:04:26] -!- danylevskyi has quit [Quit: Leaving]
[18:17:08] -!- FreezingCold has quit [Ping timeout: 256 seconds]
[18:22:59] -!- rob_h [rob_h!~robh@90.206.206.84] has joined #linuxcnc-devel
[18:25:22] -!- theorb has quit [Ping timeout: 250 seconds]
[18:26:37] -!- amnesic has quit [Ping timeout: 244 seconds]
[18:32:03] -!- dirty_d has quit [Quit: Leaving]
[18:38:49] -!- per_sonne has quit [Quit: Be back later ...]
[18:40:42] amnesic is now known as amnesic_away
[18:45:18] -!- teepee has quit [Ping timeout: 265 seconds]
[18:46:00] -!- teepee [teepee!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[18:47:20] -!- rob_h has quit [Ping timeout: 246 seconds]
[18:48:07] -!- rob_h [rob_h!~robh@94.3.108.134] has joined #linuxcnc-devel
[18:51:24] -!- moorbo has quit [Read error: Connection reset by peer]
[19:09:04] -!- eFuchs_firefly has quit [Quit: ping timeout]
[19:12:05] -!- raymondhim has quit [Ping timeout: 244 seconds]
[19:12:37] -!- erve has quit [Remote host closed the connection]
[19:29:57] -!- FreezingCold has quit [Ping timeout: 248 seconds]
[19:33:53] -!- Connor has quit [Read error: Connection reset by peer]
[19:36:03] -!- gasbakid has quit [Ping timeout: 256 seconds]
[19:38:49] amnesic_away is now known as amnesic
[19:41:45] -!- pandeiro has quit [Read error: Connection reset by peer]
[19:42:02] -!- Akex [Akex!uid58281@gateway/web/irccloud.com/x-cwfmoaekmtnmambe] has joined #linuxcnc-devel
[19:42:39] -!- Connor [Connor!~Connor@24.214.127.194] has joined #linuxcnc-devel
[19:44:25] -!- per_sonne_ has quit [Ping timeout: 250 seconds]
[19:44:50] -!- Connor has quit [Read error: Connection reset by peer]
[19:46:49] -!- erve has quit [Ping timeout: 256 seconds]
[19:57:47] -!- Connor [Connor!~Connor@24.214.127.194] has joined #linuxcnc-devel
[20:08:04] -!- skunkworks_ has quit [Ping timeout: 250 seconds]
[20:09:01] -!- dirty_d has quit [Quit: Leaving]
[20:12:54] -!- Connor1 [Connor1!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[20:14:45] -!- Connor has quit [Ping timeout: 248 seconds]
[20:16:16] -!- SpeedEvil has quit [Quit: No Ping reply in 180 seconds.]
[20:16:42] -!- Connor1 has quit [Read error: Connection reset by peer]
[20:16:57] -!- Connor [Connor!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[20:18:44] -!- ink has quit [Client Quit]
[20:19:59] -!- SpeedEvil has quit [Excess Flood]
[20:21:13] -!- swingley has quit [Quit: Leaving...]
[20:27:18] -!- moorbo_ has quit [Read error: Connection reset by peer]
[20:32:59] -!- freinhard has quit [Quit: leaving]
[20:37:28] -!- Connor has quit [Ping timeout: 272 seconds]
[20:39:15] -!- Connor [Connor!~Connor@24.214.127.194] has joined #linuxcnc-devel
[20:46:58] -!- skorasaurus has quit [Read error: Connection reset by peer]
[20:47:23] -!- syyl has quit [Ping timeout: 246 seconds]
[20:50:30] -!- micges [micges!~micges@abpi127.neoplus.adsl.tpnet.pl] has joined #linuxcnc-devel
[21:01:28] -!- skunkworks [skunkworks!~chatzilla@str-broadband-ccmts-ws-26.dsl.airstreamcomm.net] has joined #linuxcnc-devel
[21:09:03] -!- FinboySlick has quit [Quit: Leaving.]
[21:16:58] -!- gasbakid_ has quit [Ping timeout: 250 seconds]
[21:17:40] -!- skorasaurus has quit [Ping timeout: 255 seconds]
[21:20:17] -!- Connor [Connor!~Connor@24.214.127.194] has parted #linuxcnc-devel
[21:20:36] -!- Connor [Connor!~Connor@24.214.127.194] has joined #linuxcnc-devel
[21:21:04] -!- Deejay has quit [Quit: bye]
[21:23:26] -!- gonzo_ has quit [Read error: Connection reset by peer]
[21:33:09] -!- per_sonne_ has quit [Ping timeout: 248 seconds]
[21:35:26] -!- Connor has quit [Ping timeout: 265 seconds]
[21:36:31] -!- SpeedEvil has quit [Quit: No Ping reply in 180 seconds.]
[21:36:32] -!- Connor [Connor!~Connor@24.214.127.194] has joined #linuxcnc-devel
[21:40:37] -!- Connor has quit [Read error: Connection reset by peer]
[21:41:27] -!- Connor [Connor!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[21:43:27] -!- Connor1 [Connor1!~Connor@24.214.127.194] has joined #linuxcnc-devel
[21:45:32] -!- Connor has quit [Ping timeout: 244 seconds]
[21:50:06] -!- SpeedEvil has quit [Quit: No Ping reply in 180 seconds.]
[21:58:18] -!- jvrousseau has quit [Quit: Textual IRC Client: www.textualapp.com]
[22:04:53] -!- Connor1 has quit [Quit: Leaving.]
[22:05:36] -!- Connor [Connor!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[22:13:41] -!- Connor has quit [Ping timeout: 248 seconds]
[22:19:06] -!- Akex has quit [Quit: Connection closed for inactivity]
[22:27:51] tjb111 is now known as tjb1
[22:28:46] -!- sumpfralle has quit [Ping timeout: 255 seconds]
[22:30:47] -!- Connor [Connor!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[22:38:34] -!- rob_h has quit [Ping timeout: 245 seconds]
[22:40:43] -!- patrickarlt has quit [Quit: Leaving...]
[22:42:22] -!- Connor has quit [Ping timeout: 244 seconds]
[22:47:18] -!- erve has quit [Ping timeout: 272 seconds]
[22:49:06] -!- adb has quit [Ping timeout: 252 seconds]
[22:49:08] -!- TekniQue has quit [Ping timeout: 256 seconds]
[22:52:05] -!- Connor [Connor!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[22:54:13] -!- acdha has quit [Ping timeout: 265 seconds]
[22:55:11] -!- Connor1 [Connor1!~Connor@24.214.127.194] has joined #linuxcnc-devel
[22:56:54] -!- Connor has quit [Read error: Connection reset by peer]
[22:57:43] -!- Connor [Connor!~Connor@c-50-156-251-60.hsd1.tn.comcast.net] has joined #linuxcnc-devel
[22:59:24] -!- Connor1 has quit [Ping timeout: 245 seconds]
[23:01:35] -!- micges has quit [Quit: Ex-Chat]
[23:16:57] -!- Camaban has quit [Quit: Leaving]
[23:20:53] -!- balestrino has quit [Ping timeout: 248 seconds]
[23:22:28] -!- per_sonne_ has quit [Ping timeout: 252 seconds]
[23:27:19] -!- dimas has quit [Ping timeout: 244 seconds]
[23:38:50] -!- teepee_ [teepee_!~teepee@unaffiliated/teepee] has joined #linuxcnc-devel
[23:42:12] -!- teepee has quit [Ping timeout: 276 seconds]
[23:42:12] teepee_ is now known as teepee
[23:42:51] -!- moorbo has quit [Remote host closed the connection]
[23:45:34] amnesic is now known as amnesic_away