#linuxcnc-devel | Logs for 2012-11-12

Back
[00:03:15] <alex_joni> andypugh: there is no private/public in c, but I'm sure you know that
[00:03:42] <andypugh> I am not sure I do know that.
[00:04:01] <alex_joni> well, at least not in a C++ way
[00:04:15] <alex_joni> but if FileB has access to a function definition
[00:04:21] <alex_joni> then the compiler is happy
[00:04:28] <alex_joni> no matter where the function is
[00:04:39] <andypugh> Yes. I am looking at it from another angle.
[00:04:40] <alex_joni> it's later at linking time when things go together
[00:05:12] <alex_joni> then probably I didn't get what you asked
[00:05:39] <andypugh> If I am looking at some code, trying to figure out the calling chain, can I tell if a particular function is callable from other files.
[00:06:06] <andypugh> I think the answer is "not without grepping all the 20 header files"
[00:06:25] <andypugh> And even then I can only tell if it could be, not if it is.
[00:07:21] <andypugh> I then have to search for the function name string in other files, and then check which header files they include, to be sure that they are calling the _same_ function called by that name?
[00:10:23] <andypugh> I guess I can start somewhere else, and see if the function name appears anywhere else in the same project, then worry about whether it is the same function, or just a function with the same name.
[00:10:24] <alex_joni> or use gdb
[00:10:55] <alex_joni> I don't think it's sane people who reuse function names in the same project ;)
[00:11:27] <andypugh> Yes, but this is LinuxCNC, they might not even have known that the function was used somewhere else.
[00:12:01] <alex_joni> heh
[00:12:17] <andypugh> I can't claim to have searched the code base to see if a function name was unused before choosing one.
[00:12:39] <alex_joni> right
[00:12:45] <alex_joni> so what are you looking for now?
[00:13:25] -!- logger[mah] has quit [Remote host closed the connection]
[00:13:33] -!- logger[mah] [logger[mah]!~loggermah@ns1.mah.priv.at] has joined #linuxcnc-devel
[00:13:58] -!- Valen has quit [Quit: Leaving.]
[00:14:53] <andypugh> Well, I was looking for load_tool, and I think I am now fairly sure that is a private function to ioControl.cc. But I was hoping not to spend quite as long on reload_tool_number and read_tool_inputs. I was, in fact, hoping to trace the calling chain into the next file tonight.
[00:15:38] <andypugh> I am trying to understand how tool geometry information flows through LinuxCNC, you see.
[00:15:55] <alex_joni> right
[00:16:54] <andypugh> Supposedly the tool table travels inside an NML message, but I haven't found where that happens.
[00:17:25] <alex_joni> let me see if I can find that quickly
[00:18:36] <andypugh> I decided to start at the functions that read the tool table file, and work forwards from there.
[00:19:13] <andypugh> Perhaps I would be better starting in (say) Axis backplot code and tracking backwards.
[00:19:34] <andypugh> I was trying to build a complete map of all code touched by the tool table.
[00:19:51] <alex_joni> there's a emctool.h
[00:20:41] <alex_joni> which defines a CANON_TOOL_TABLE struct
[00:20:53] <alex_joni> that struct is used in EMC_TOOL_STAT message
[00:20:57] <alex_joni> which gets passed around
[00:21:15] <alex_joni> http://git.linuxcnc.org/gitweb?p=linuxcnc.git;a=blob;f=src/emc/nml_intf/emc_nml.hh;h=d3aa69fd1ad8260805c920726574e9f16154d616;hb=HEAD#l1585
[00:22:12] <alex_joni> you would then want to grep for EMC_TOOL_STAT and you'll probably get a hit in ioControl.cc, in emctask/emctaskmain, in canon and probably in the GUIs
[00:23:01] -!- skunkworks has quit [Remote host closed the connection]
[00:25:59] <andypugh> hmm, looks like I need to study C++ too then, as I have no idea what the "operator" command does.
[00:26:13] -!- gambakufu has quit [Ping timeout: 265 seconds]
[00:26:19] <alex_joni> that's used usually to overload an operator
[00:26:27] <alex_joni> so you can do a = b +c
[00:26:30] -!- asdfasd has quit [Ping timeout: 264 seconds]
[00:26:34] <alex_joni> even if a,b and c are not numbers
[00:27:09] <andypugh> So EMC_TOOL_STAT operator =(EMC_TOOL_STAT s) does what?
[00:27:12] <alex_joni> if you're talking about line 1581
[00:27:22] <alex_joni> defines the = operator for EMC_TOOL_STAT
[00:27:35] <andypugh> Ah, OK.
[00:27:49] <alex_joni> and says it takes an argument of type EMC_TOOL_STAT
[00:28:00] <alex_joni> so you can have EMC_TOOL_STAT p,q;
[00:28:03] <alex_joni> then p=q;
[00:28:21] <alex_joni> the actual code is in a .cc file
[00:29:09] <andypugh> Ah, yes, that is why it was making no sense (well, one reason at least). That's a header file. :-)
[00:29:38] <alex_joni> the code should be in emc.cc
[00:29:47] <alex_joni> but most likely not for the = part
[00:29:55] <alex_joni> that can come from one of the parent classes
[00:30:03] <alex_joni> as EMC_TOOL_STAT is derived from another class
[00:30:15] <andypugh> I think I may have bitten off significantly more than I can chew.
[00:31:12] <andypugh> I think that somone else (or nobody) is going to have to do this.
[00:31:14] -!- archivist has quit [Ping timeout: 240 seconds]
[00:31:43] -!- rob__H has quit [Ping timeout: 260 seconds]
[00:31:47] <andypugh> An actual programmer, for example.
[00:32:21] -!- the_wench has quit [Ping timeout: 248 seconds]
[00:34:24] <alex_joni> I can lend you my copy of Stroustrup ;)
[00:35:20] <andypugh> I can't even find which files #include emc_nml.hh. It looks like I would need to learn regexes just to find that out. (no files contain "#include emc_nml")
[00:36:26] <andypugh> (because I forgot the " mark, but that just makes my point).
[00:36:31] <alex_joni> just grep for emc_nml
[00:36:34] <alex_joni> should be enough
[00:36:38] <andypugh> And if anyone put an extra space in, then I am stuck
[00:36:47] <alex_joni> or emc_nml.hh
[00:38:09] <andypugh> I dont think it makes sense for me to do it when it is so hard for me, and probably so easy for someone else.
[00:38:18] <alex_joni> right
[00:40:13] <andypugh> How do proper coders trace these links though? Surely they aren't continually doing textual searches back and forth? Doesn't the linker make some sort of tree?
[00:41:13] <alex_joni> when I used to work on this, I searched when I had to find something
[00:41:27] <alex_joni> but usually these things make sense ;)
[00:41:42] <alex_joni> and they are kinda consistent
[00:41:54] <andypugh> Well, yes, the reason I wanted to do this is that the tool table does not make any sense
[00:43:43] <andypugh> files such as dummyemcstat which has the comment "keep linker happy" make me think that things could be more logically arranged.
[00:44:00] <alex_joni> heh
[00:51:26] -!- factor has quit [Read error: Connection reset by peer]
[00:51:51] <alex_joni> did you take a look at doxygen docs?
[00:52:01] <alex_joni> we used to build them a long time ago
[00:52:14] <alex_joni> they generated a more interactive map of the c++ code
[00:54:42] <andypugh> Would I need to build them somehow?
[00:55:02] <alex_joni> I think you can just install doxygen and run it in the top src/ dri
[00:56:20] <andypugh> Hmm, looks like it might be worth a try
[00:57:29] -!- alpha1125 has quit [Read error: Connection reset by peer]
[00:58:48] <alex_joni> can't locate a copy
[00:59:09] <andypugh> I am downloading the MacOS binary at this very moment.
[01:02:52] <andypugh> And it is now churning away at the source. This looks promising.
[01:03:40] -!- syyl_ has quit [Quit: Leaving]
[01:03:47] -!- adb has quit [Ping timeout: 245 seconds]
[01:04:26] <andypugh> Ah, it really wanted GrahpViz to achieve what I asked..
[01:06:08] <alex_joni> yes
[01:06:30] <alex_joni> hmm.. I just found an old copy of emc compiled for windows :)
[01:06:33] <andypugh> But it looks like it can do what I wanted.
[01:06:55] <alex_joni> I found some old doxygen docs for emc1 if you want
[01:07:06] <andypugh> The HTML output looks like being a big help, even without Grapviz
[01:07:38] <andypugh> It looks like i can easily make LinuxCNC ones, which are likely to be more useful
[01:12:20] <alex_joni> great
[01:12:22] <alex_joni> [13:29] <jmkasunich> as far as I'm concerned, 2.0 kernels can be abandoned
[01:12:25] <alex_joni> [13:30] <alex_joni> I'm using a SuSE 9.0 install right now
[01:12:28] <alex_joni> [13:30] <jmkasunich> but 2.2, 2.4, and eventually 2.6 must be supported
[01:12:33] <alex_joni> heh, that really was a _long_ time ago
[01:13:24] <andypugh> http://imagebin.org/235498
[01:14:02] <andypugh> I think that is the tool I was looking for.
[01:15:06] -!- asdfasd has quit [Ping timeout: 240 seconds]
[01:16:17] <andypugh> Is the output prettier than the EMC1 docs you have?
[01:16:39] <alex_joni> it's a more modern doxygen release
[01:16:49] <alex_joni> but its pretty much the same functionality
[01:16:56] <alex_joni> install graphviz, and it'll be much nicer
[01:17:16] <andypugh> I just did, and it's having another run
[01:18:54] <alex_joni> http://imagebin.org/235501
[01:22:45] -!- kwallace1 [kwallace1!~kwallace@smb-28.sonnet.com] has joined #linuxcnc-devel
[01:22:59] <andypugh> Despite me installing Graphviz, it isn't finding it.
[01:23:50] <andypugh> Trying the built-in diagram generator
[01:40:44] -!- tjb1 has quit [Quit: tjb1]
[01:44:47] -!- markvandenborre has quit [Ping timeout: 256 seconds]
[01:47:26] -!- gambakufu has quit [Ping timeout: 246 seconds]
[01:47:58] <andypugh> OK, I guess I might not give up quite yet. But now it is time to sleep.
[01:50:21] -!- ybon has quit [Quit: WeeChat 0.3.8]
[01:51:15] -!- andypugh has quit [Quit: andypugh]
[01:54:19] -!- paideia has quit [Ping timeout: 260 seconds]
[02:05:41] -!- Keknom has quit [Quit: Leaving.]
[02:09:18] -!- i_tarzan has quit [Ping timeout: 276 seconds]
[02:21:40] -!- servos4ever has quit [Quit: ChatZilla 0.9.85 [SeaMonkey 2.0.11/20101206162726]]
[02:23:10] -!- defaultro has quit [Ping timeout: 252 seconds]
[02:44:17] -!- sumpfralle has quit [Ping timeout: 246 seconds]
[03:09:14] -!- JT-Shop-2 [JT-Shop-2!~John@184.63.140.99] has joined #linuxcnc-devel
[03:09:15] -!- JT-Shop has quit [Read error: Connection reset by peer]
[03:09:15] -!- jthornton has quit [Read error: Connection reset by peer]
[03:09:21] -!- jthornton_ [jthornton_!~john@184.63.140.99] has joined #linuxcnc-devel
[04:01:31] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[04:18:12] -!- toastydeath has quit [Read error: Connection timed out]
[04:55:18] -!- asdfasd has quit [Ping timeout: 264 seconds]
[05:09:34] -!- postaL has quit [Ping timeout: 240 seconds]
[05:14:07] -!- FinboySlick has quit [Quit: Leaving.]
[05:30:22] -!- ve7it has quit [Remote host closed the connection]
[05:31:57] -!- ve7it [ve7it!~LawrenceG@S0106001c10b7770f.pk.shawcable.net] has joined #linuxcnc-devel
[05:35:48] -!- Nick001 has quit [Ping timeout: 248 seconds]
[05:41:53] -!- ve7it has quit [Remote host closed the connection]
[06:03:09] -!- Fox_Muldr has quit [Ping timeout: 260 seconds]
[06:30:02] -!- tjb1 has quit [Ping timeout: 246 seconds]
[06:30:02] tjb1_ is now known as tjb1
[06:31:37] -!- dhoovie has quit [Ping timeout: 246 seconds]
[06:46:08] -!- theos has quit [Read error: Operation timed out]
[06:51:22] -!- tjb1 has quit [Quit: tjb1]
[06:56:38] -!- kwallace1 [kwallace1!~kwallace@smb-28.sonnet.com] has parted #linuxcnc-devel
[07:24:06] -!- vladimirek [vladimirek!~vladimire@95.105.250.72] has joined #linuxcnc-devel
[07:30:10] -!- Newtonianb has quit []
[07:57:15] -!- vladimirek has quit [Remote host closed the connection]
[07:59:14] -!- herron has quit [Ping timeout: 240 seconds]
[08:11:58] -!- psha[work] [psha[work]!~psha@195.135.238.205] has joined #linuxcnc-devel
[08:24:24] -!- emel has quit [Excess Flood]
[08:42:41] <KGB-linuxcnc> 03chrisinnanaimo 05master 8244581 06emc2 10configs/sim/gscreen_custom/gscreen.glade 10src/emc/usr_intf/gscreen/gscreen.glade 10src/emc/usr_intf/gscreen/gscreen.py * gscreen -add ability to set the starting spindle rpm in manual mode
[08:42:41] <KGB-linuxcnc> 03chrisinnanaimo 05master 9e1ff89 06emc2 10src/emc/usr_intf/gscreen/gscreen.py * gscreen -allow the handler to override internal signals
[08:42:46] <KGB-linuxcnc> 03chrisinnanaimo 05master cfe9a82 06emc2 10configs/sim/gscreen_custom/ 10gscreen.glade 10gscreen_handler.py * gscreen config -add more customization example code
[08:42:58] -!- Connor has quit [Quit: Leaving.]
[09:09:31] -!- racycle has quit [Quit: racycle]
[09:10:41] -!- adb [adb!~IonMoldom@178-211-235-11.dhcp.voenergies.net] has joined #linuxcnc-devel
[09:10:47] -!- grummund has quit [Ping timeout: 252 seconds]
[09:24:42] -!- Loetmichel has quit [Ping timeout: 264 seconds]
[09:25:52] -!- djheinzNO has quit [Ping timeout: 245 seconds]
[09:31:47] -!- rob_h [rob_h!~rob_h@027c18ae.bb.sky.com] has joined #linuxcnc-devel
[09:36:43] -!- Cylly has quit []
[09:37:29] -!- wavesounds has quit [Remote host closed the connection]
[09:42:35] -!- mhaberler [mhaberler!~mhaberler@macbook.stiwoll.mah.priv.at] has joined #linuxcnc-devel
[10:30:07] -!- mattions has quit [Ping timeout: 246 seconds]
[10:41:44] -!- pingufan has quit [Quit: Konversation terminated!]
[10:57:36] -!- sumpfralle has quit [Read error: Operation timed out]
[11:10:45] -!- phantoxe has quit [Read error: Connection reset by peer]
[11:53:25] -!- Nick001 has quit [Ping timeout: 246 seconds]
[12:00:33] jthornton_ is now known as jthornton
[12:01:51] -!- dhoovie|2 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
[12:17:54] -!- cncbasher has quit [Quit: time to make some more scrap]
[12:19:26] -!- lhapaipai has quit [Client Quit]
[12:26:40] -!- holst has quit [Quit: Leaving]
[12:29:54] -!- herron has quit [Ping timeout: 240 seconds]
[12:39:39] -!- factor has quit [Read error: Connection reset by peer]
[12:40:39] -!- KimK_laptop has quit [Ping timeout: 260 seconds]
[12:45:54] -!- Simooon has quit [Ping timeout: 240 seconds]
[13:02:56] -!- theorbtwo has quit [Ping timeout: 246 seconds]
[13:16:44] -!- vladimirek [vladimirek!~vladimire@95.105.250.72] has joined #linuxcnc-devel
[13:36:31] -!- Valen has quit [Quit: Leaving.]
[13:50:20] -!- markvandenborre has quit [Changing host]
[13:51:14] -!- chillly has quit [Quit: Leaving]
[13:53:31] -!- ybon has quit [Quit: WeeChat 0.3.8]
[14:35:48] -!- mk0 has quit [Quit: Looking for access to www.icdd.com bases.]
[14:48:28] -!- maximilian_h [maximilian_h!~bonsai@xdsl-89-0-174-4.netcologne.de] has joined #linuxcnc-devel
[14:53:42] -!- psha[work] has quit [Quit: Lost terminal]
[14:58:14] -!- rasmus_ has quit [Client Quit]
[15:06:14] -!- maximilian_h has quit [Quit: Leaving.]
[15:21:42] -!- Tom_itx has quit [Ping timeout: 264 seconds]
[15:22:16] -!- Simooon has quit [Remote host closed the connection]
[15:22:35] -!- zlog has quit [Ping timeout: 260 seconds]
[15:25:02] -!- zlog [zlog!~zlog@ip24-255-189-172.ks.ks.cox.net] has joined #linuxcnc-devel
[15:26:00] -!- holst has quit [Ping timeout: 252 seconds]
[15:45:24] -!- zzolo has quit [Quit: zzolo]
[15:51:03] -!- theorbtwo has quit [Ping timeout: 260 seconds]
[16:02:30] -!- skunkworks [skunkworks!~chatzilla@str-broadband-ccmts-ws-26.dsl.airstreamcomm.net] has joined #linuxcnc-devel
[16:08:12] spiderdi1on is now known as spiderdijon
[16:38:35] -!- mhaberler has quit [Quit: mhaberler]
[16:39:34] -!- paideia has quit [Ping timeout: 240 seconds]
[16:42:11] -!- the_wench has quit [Ping timeout: 246 seconds]
[16:42:54] -!- archivist has quit [Ping timeout: 240 seconds]
[16:45:43] -!- mhaberler [mhaberler!~mhaberler@macbook.stiwoll.mah.priv.at] has joined #linuxcnc-devel
[16:52:54] -!- kwallace [kwallace!~kwallace@tmb-226.sonnet.com] has joined #linuxcnc-devel
[16:55:16] -!- ktchk has quit [Ping timeout: 245 seconds]
[16:56:20] -!- bmwyss has quit [Quit: bmwyss]
[17:00:26] <kwallace> Let's say I clone a repository and start changing a file. In the mean time, the original file in the remote repository changes. If I "git pull" it replaces my local file. How can I keep my file both current to the remote and my edits?
[17:01:44] -!- cncbasher [cncbasher!~quassel@cpc15-hart9-2-0-cust101.11-3.cable.virginmedia.com] has joined #linuxcnc-devel
[17:04:30] -!- logger[psha] has quit [Ping timeout: 260 seconds]
[17:06:09] -!- logger[psha] [logger[psha]!~loggerpsh@195.135.238.205] has joined #linuxcnc-devel
[17:06:51] <cradek> you are incorrect that it replaces your local file. what it does is cause a merge, which works if the changes are separate enough in the file, or creates a conflict that you must resolve manually if they are too close.
[17:17:20] <kwallace> The file I changed seemed to revert to the old configuration after the "git pull" so I guess there was too much overlap. Should I rename my file, "git pull" then block copy bits from my file to the new file? What happens when I want to update the remote?
[17:21:14] <cradek> I am not sure what to recommend because you must be mistaken about what happened. did you commit your changes before you pulled? if not, the pull would have failed. if so, you would have generated a merge.
[17:21:42] <cradek> you shouldn't do that renaming and stuff. git does the merging for you.
[17:26:43] -!- karavanjo has quit [Read error: Connection reset by peer]
[17:33:04] <kwallace> Thinking more, my local git knows when I change a file, but only if I run a git command. If I change a file, should I do an "add" to have git record the status? Then it will know that a pull needs to be merged?
[17:33:23] -!- paideia has quit [Quit: Leaving]
[17:34:00] <cradek> you should come to a coherent spot and make a commit before pulling
[17:34:29] <cradek> add is one of the (two) steps of making a commit
[17:38:49] <KGB-linuxcnc> 03TODO: deletor 05rtos-integration-preview1 24fb185 06emc2 04. * branch deleted
[17:38:58] <KGB-linuxcnc> 03TODO: deletor 05rtos-integration-preview1 24fb185 06emc2 04. * branch deleted
[17:39:04] <mhaberler> oops, sorry
[17:39:18] <cradek> ?
[17:39:32] <mhaberler> accidential push
[17:39:43] <mhaberler> arm port in progress..
[17:39:53] JT-Shop-2 is now known as JT-Shop
[17:40:06] <kwallace> Crud, I think I know what I did. I edited the file in the /usr/bin directory. The clone is in ~/source, dooh. I pulled, then ran the install script. Git merged the files in ~/source, install replaced my edited file.
[17:40:29] <cradek> aha
[17:40:42] <cradek> that sucks, but be happy that you're not crazy
[17:43:03] <KGB-linuxcnc> 03TODO: deletor 05rtos-integration-preview1 24fb185 06emc2 04. * branch deleted
[17:43:12] -!- psha [psha!~psha@213.208.162.92] has joined #linuxcnc-devel
[17:43:15] <kwallace> Or, not crazier?
[17:43:16] <KGB-linuxcnc> 03TODO: deletor 05rtos-integration-preview1 24fb185 06emc2 04. * branch deleted
[17:44:26] <cradek> mhaberler: what are you doing?
[17:44:41] <mhaberler> a traffic accident
[17:50:04] -!- mattions has quit [Ping timeout: 246 seconds]
[17:56:45] -!- ve7it [ve7it!~LawrenceG@S0106001c10b7770f.pk.shawcable.net] has joined #linuxcnc-devel
[18:05:13] -!- andypugh [andypugh!~andy2@cpc2-basl1-0-0-cust639.basl.cable.virginmedia.com] has joined #linuxcnc-devel
[18:10:03] -!- pjm__ has quit [Read error: No route to host]
[18:37:24] <awallin> I get this when trying to run the latest sim/axis_mm http://pastebin.ca/2251023
[18:37:27] <awallin> feature or bug?
[18:40:20] -!- rizo has quit [Quit: Leaving]
[18:40:21] -!- logger[psha] has quit [Ping timeout: 248 seconds]
[18:41:35] -!- logger[psha] [logger[psha]!~loggerpsh@195.135.238.205] has joined #linuxcnc-devel
[18:44:10] -!- psha has quit [Quit: Lost terminal]
[18:45:29] <andypugh> The first 4 lines are a feature, the others less so.
[18:48:46] <awallin> master is not as stable as it used to be...
[18:54:12] <awallin> and on the 2.5 branch I get "test for libgl1-mesa-dri workaround failed, please file a bug"
[18:54:12] -!- phantone has quit []
[18:54:12] -!- logger[psha] has quit [Ping timeout: 276 seconds]
[18:56:54] -!- logger[psha] [logger[psha]!~loggerpsh@195.135.238.205] has joined #linuxcnc-devel
[19:04:28] <awallin> huh did a fresh clone of the git repo and now that problem went away... go figure
[19:17:25] -!- IchGuckLive has quit [Quit: ChatZilla 0.9.87 [Firefox 16.0.2/20121025205401]]
[19:18:03] -!- syyl_ws has quit [Quit: Verlassend]
[19:30:57] <mhaberler> Running test: /home/pi/src/emc2-dev/tests/timedelay.0
[19:30:58] <mhaberler> Running test: /home/pi/src/emc2-dev/tests/usercomp.0
[19:30:59] <mhaberler> Runtest: 45 tests run, 45 successful, 0 failed + 0 expected
[19:31:00] <mhaberler> pi@raspberrypi ~/src/emc2-dev $
[19:31:13] <mhaberler> xenomai user RT threads
[19:37:12] <andypugh> Does that require drivers rewriting?
[19:45:22] <mhaberler> yes
[19:55:08] <alex_joni> mhaberler: nice
[19:58:56] <mhaberler> we'll see what shade of 'nice'… more a portability test
[19:59:39] -!- Tom_L has quit [Client Quit]
[20:17:33] -!- L84Supper has quit [Quit: <puff of smoke>]
[20:22:12] -!- L84Supper [L84Supper!~Larch@unaffiliated/l84supper] has joined #linuxcnc-devel
[20:24:39] <KGB-linuxcnc> 03chrisinnanaimo 05master 11efd55 06emc2 10src/emc/usr_intf/gscreen/gscreen.py * gscreen -change the manual spindle controls
[20:30:03] -!- tjb1 has quit [Quit: tjb1]
[20:37:37] -!- gurumelo has quit [Remote host closed the connection]
[20:38:19] -!- wavesounds has quit [Remote host closed the connection]
[20:39:57] -!- kwallace has quit [Ping timeout: 268 seconds]
[20:42:59] -!- kwallace [kwallace!~kwallace@smb-218.sonnet.com] has joined #linuxcnc-devel
[20:43:28] -!- Caanon_work has quit [Quit: Caanon_work]
[20:44:22] -!- gurumelo has quit [Client Quit]
[20:45:40] -!- wboykinm has quit [Remote host closed the connection]
[20:54:25] -!- vladimirek has quit [Remote host closed the connection]
[21:05:26] -!- mazafaka has quit [Read error: Connection reset by peer]
[21:07:32] -!- djheinz has quit [Ping timeout: 255 seconds]
[21:14:39] -!- joe9 has quit [Quit: leaving]
[21:20:49] -!- pjm__ has quit [Ping timeout: 252 seconds]
[21:23:33] -!- amaldo has quit [Remote host closed the connection]
[21:39:17] <KGB-linuxcnc> 03chrisinnanaimo 05master ddf8ef5 06emc2 10src/emc/usr_intf/gscreen/gscreen.py * gscreen -make the mode selection button state the current mode
[21:39:17] <KGB-linuxcnc> 03chrisinnanaimo 05master d633587 06emc2 10src/emc/usr_intf/gscreen/gscreen.glade * gscreen -raise entry widget range to +-10000
[21:39:20] <KGB-linuxcnc> 03chrisinnanaimo 05master 64d5da3 06emc2 10src/emc/usr_intf/gscreen/gscreen.glade * gscreen -raise the spinbox range to 1000 for spindle RPM
[21:41:24] -!- gmouer has quit []
[21:44:04] theorb_ is now known as theorbtwo
[21:51:05] -!- morfic has quit [Ping timeout: 246 seconds]
[21:51:39] -!- Flipp has quit [Read error: Connection reset by peer]
[22:02:43] -!- FinboySlick has quit [Quit: Leaving.]
[22:12:17] -!- DJ9DJ has quit [Quit: bye]
[22:12:30] -!- Caanon_work has quit [Quit: Caanon_work]
[22:13:10] <mhaberler> re 'nice': HAL+RTAPI runs just fine on the raspberry; finding a working Python OpenGL package is an issue
[22:16:02] -!- Yarl has quit [Ping timeout: 265 seconds]
[22:16:25] <cncbasher> have you try'd PyOpengl 3.x
[22:17:43] <mhaberler> not sure I want to learn.. others will happily for me I guess
[22:18:30] <cncbasher> i thought opengl worked on a Pi
[22:20:31] <mhaberler> might well be
[22:20:49] <cncbasher> http://www.raspberrypi.org/phpBB3/viewtopic.php?f=32&t=21244
[22:38:10] -!- chillly has quit [Quit: Leaving]
[22:47:19] -!- oyildirim has quit []
[22:53:46] -!- horatio_cromwell has quit [Quit: Leaving.]
[23:00:24] -!- tjb1 has quit [Quit: tjb1]
[23:15:16] -!- joru has quit [Remote host closed the connection]
[23:20:00] -!- andypugh has quit [*.net *.split]
[23:20:01] -!- archivist has quit [*.net *.split]
[23:20:01] -!- Brandonian has quit [*.net *.split]
[23:20:01] -!- Connor has quit [*.net *.split]
[23:20:01] -!- GargantuaSauce has quit [*.net *.split]
[23:20:02] -!- Theta9 has quit [*.net *.split]
[23:20:02] -!- capricorn_1 has quit [*.net *.split]
[23:20:02] -!- log_ybon has quit [*.net *.split]
[23:20:02] -!- hm2-buildmaster_ has quit [*.net *.split]
[23:20:02] -!- uwe_ has quit [*.net *.split]
[23:20:03] -!- aude has quit [*.net *.split]
[23:20:53] -!- andypugh [andypugh!~andy2@cpc2-basl1-0-0-cust639.basl.cable.virginmedia.com] has joined #linuxcnc-devel
[23:21:05] -!- Caanon_work has quit [Quit: Caanon_work]
[23:26:16] -!- panasync has quit [Ping timeout: 255 seconds]
[23:29:20] -!- hm2-buildmaster_ [hm2-buildmaster_!~hm2-build@184-96-169-170.hlrn.qwest.net] has joined #linuxcnc-devel
[23:40:45] -!- racycle has quit [Quit: racycle]
[23:51:48] -!- L84Supper has quit [Ping timeout: 245 seconds]
[23:57:41] -!- L84Supper [L84Supper!~Larch@unaffiliated/l84supper] has joined #linuxcnc-devel