Back
[00:04:32] -!-
theorbtwo has quit [Ping timeout: 276 seconds]
[00:04:37] theorb is now known as
theorbtwo
[00:29:27] -!-
tlab has quit [Ping timeout: 240 seconds]
[00:31:50] -!-
servos4ever has quit [Quit: ChatZilla 0.9.85 [SeaMonkey 2.0.11/20101206162726]]
[00:35:17] -!-
adb [
[email protected]] has joined #emc-devel
[00:57:21] -!-
robh__ has quit [Ping timeout: 250 seconds]
[00:58:18] <mhaberler> cradek: I have a patch candidate ontop of current master: git://git.mah.priv.at/emc2-dev.git branch iocontrolv2-toolchange-gcode-osub-candidate
[00:59:35] <cradek> cool! looking.
[01:02:58] <cradek> having trouble understanding 30cd9d177
[01:03:57] <cradek> it's for masking messages in general, nothing in particular to do with tool change?
[01:04:23] <mhaberler> still trying to find, not familar with the hash search
[01:04:33] <cradek> gitk 30cd9d177
[01:04:42] <cradek> git log -1 -u 30cd9d177
[01:05:42] <mhaberler> yes, you are right. Just got overwhelmed by debug output so I added that in the middle
[01:06:02] <cradek> ok, it made sense as soon as I realized it wasn't about tool change
[01:06:19] <mhaberler> no, strictly interp output control
[01:07:12] <cradek> what calls emcAbortCleanup?
[01:08:29] <cradek> oh I see it, it's in a previous commit
[01:08:41] <cradek> I think you need to reorder those? the call is 4 commits before the definition
[01:08:42] <mhaberler> really just a wrapper around interp.on_abort(); I think i did this because of interp visibility
[01:08:43] -!-
OoBIGeye has quit [Ping timeout: 260 seconds]
[01:09:13] -!-
emcrules_d510mo has quit [Quit: Ex-Chat]
[01:09:23] <mhaberler> yeah, interp aint visible from iotaskintf.c
[01:09:48] <mhaberler> uh
[01:10:06] <mhaberler> I'll rebase that one
[01:10:18] <mhaberler> -i that is
[01:10:28] <cradek> I didn't try to build e0d97a110 but I'm pretty sure it won't
[01:10:52] <cradek> the most important reason to have all commits buildable is to not break git bisect for poor future debuggers
[01:11:15] <mhaberler> i see
[01:11:29] <mhaberler> is there a standard way to test for proper sequencing?
[01:11:57] <cradek> I don't know of an easy way
[01:12:08] <cradek> seems the only way would be to try to build each one
[01:12:14] <mhaberler> ok, will do
[01:13:18] <mhaberler> let me do that, I'll fix these things and bug you when I'm sure it's ok
[01:13:27] <cradek> ok :-)
[01:13:32] <mhaberler> probably tomorrow or sat
[01:13:39] <cradek> big rebases can be a pain
[01:14:00] <cradek> let me look through the rest
[01:14:25] <cradek> too bad you can't have docs patches with this stuff - it's major user-visible changes - but we can do that later after psha's merge
[01:15:27] <mhaberler> yes I know, but saw no sense in learning lyx for a week or so ;-)
[01:15:48] <cradek> I agree strongly
[01:15:52] <mhaberler> well, with unchanged configs nothing *should* be visible (famous last wordds)
[01:16:53] -!-
Athlocatle has quit [Ping timeout: 240 seconds]
[01:16:55] -!-
OoBIGeye has quit [Remote host closed the connection]
[01:17:23] <cradek> the way you do the O-call is surprisingly simple
[01:18:07] <mhaberler> I guess I'll squash 8a3f4575e4c1dbca4712ce56c7a0f083ec4f01d5 into e0d97a110a5ab7a039d592b2874899f2c6a9f7ed
[01:18:09] <cradek> settings has the O stack etc?
[01:18:35] <mhaberler> re simplicity: that's what me as well as psha are a bit wary about
[01:18:57] <mhaberler> yes, the only non-obvious thing was to get the file pointer right for return
[01:19:07] <cradek> yes I see it
[01:19:21] <cradek> wish I knew enough to think of how to try to break it :-)
[01:19:53] <mhaberler> there are enough candidates out there who'll do that for you
[01:22:50] <mhaberler> btw the surprisingly simple approach took 5 throwaway branches to arrive at..
[01:23:22] -!-
jp has quit [Quit: Ex-Chat]
[01:24:23] -!-
kb8wmc has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101206122310]]
[01:26:27] <mhaberler> the extra NML messages create a lot of patch noise, but they are mostly boilerplate c&p
[01:26:56] <cradek> trying to understand the fault handling - seems like it can abort or continue?
[01:27:03] <mhaberler> exactly
[01:27:16] <cradek> how do you specify?
[01:27:17] <mhaberler> positive fault code - can continue
[01:27:22] <mhaberler> negative - will abort
[01:27:49] <mhaberler> comes in through hal toolchanger-reason
[01:28:01] <cradek> oh ok
[01:28:22] <mhaberler> my assumption was the tc will know that it's in a 'oh shit' state
[01:29:43] -!-
danimal_garage has quit [Ping timeout: 272 seconds]
[01:30:27] <cradek> if the user does not connect the pin, seems like the default "reason" will be 0
[01:30:39] <cradek> what if it's neither pos or neg?
[01:31:07] <mhaberler> yes.. I ran into that.. let me look that up
[01:31:11] <cradek> you could easily set the default to -1 (just write to the pin)
[01:31:19] <cradek> or, better, make 0 also abort
[01:31:23] <mhaberler> that for one, yes
[01:31:43] <cradek> I have a strong preference for default = abort
[01:31:54] <cradek> big disaster avoidance
[01:32:07] <mhaberler> I *think* thats what it does, but let me make sure
[01:32:13] <cradek> thanks
[01:32:23] <cradek> I think those are all my comments, sorry for more work
[01:32:45] <mhaberler> yes, see
http://wiki.linuxcnc.org/cgi-bin/emcinfo.pl?ToolchangerProtocolProposal section Communicating a toolchanger fault to EMC
[01:32:49] <mhaberler> near bottom
[01:33:15] <cradek> aha ok
[01:33:16] <mhaberler> you'll have to explictely set to a positive value so as not to abort
[01:33:20] <cradek> good deal
[01:34:11] <mhaberler> fair enough. thanks for the patience! I revert to introspection ;-) (actually crash for today), but as he says 'I'll be baaack'
[01:34:49] <mhaberler> actually I leave about 10 miles from Arnold Schwarzenegggers birth place..
[01:35:27] <mhaberler> well thanks & cu
[01:35:28] <cradek> I live about 10 miles from ... a circle of things
[01:35:33] <cradek> thanks, goodnight
[01:35:39] -!-
mhaberler has quit [Quit: mhaberler]
[01:50:17] -!-
mhaberler [
[email protected]] has joined #emc-devel
[01:50:21] -!-
mhaberler has quit [Client Quit]
[02:08:44] -!-
paul11 has quit [Quit: Visitor from www.linuxcnc.org]
[02:40:11] -!-
Tom_L has quit []
[02:56:00] -!-
tlab has quit [Quit: Leaving]
[03:33:26] -!-
Valen has quit [Quit: Leaving.]
[03:37:46] -!-
garage_seb [
[email protected]] has joined #emc-devel
[03:41:00] -!-
cassmodiah has quit [Ping timeout: 264 seconds]
[03:50:58] -!-
Tom_L has quit []
[04:16:37] -!-
garage_seb has quit [Remote host closed the connection]
[04:35:12] -!-
adb has quit [Ping timeout: 264 seconds]
[05:01:50] -!-
seb_kuzminsky has quit [Ping timeout: 246 seconds]
[05:02:12] -!-
seb_kuzminsky [
[email protected]] has joined #emc-devel
[06:04:42] -!-
logger[psha] [logger[psha]
[email protected]] has joined #emc-devel
[06:27:24] -!-
seb_kuzminsky has quit [Ping timeout: 264 seconds]
[06:38:00] -!-
psha [
[email protected]] has joined #emc-devel
[06:38:34] -!-
seb_kuzminsky [
[email protected]] has joined #emc-devel
[06:38:52] -!-
ve7it has quit [Remote host closed the connection]
[07:10:36] -!-
pjm__ has quit [Ping timeout: 264 seconds]
[07:20:21] -!-
ewidance [
[email protected]] has joined #emc-devel
[07:39:12] -!-
Birdman3131 has quit [Ping timeout: 252 seconds]
[08:13:37] -!-
ewidance has quit [Quit: ewidance]
[08:28:24] -!-
mhaberler [
[email protected]] has joined #emc-devel
[08:31:54] -!-
robh__ [
[email protected]] has joined #emc-devel
[08:33:59] -!-
KimK has quit [Ping timeout: 240 seconds]
[08:37:48] -!-
pjm has quit [Quit: TTFO]
[08:40:58] -!-
psha has quit [Quit: Lost terminal]
[08:52:59] -!-
KimK [
[email protected]] has joined #emc-devel
[08:56:28] -!-
emcrules_d510mo has quit [Read error: Connection reset by peer]
[09:20:50] -!-
awallin_ [awallin_!~quassel@2001:708:110:1020:224:7eff:feda:7c7d] has joined #emc-devel
[09:25:28] -!-
psha[work] [psha[work]
[email protected]] has joined #emc-devel
[09:49:06] -!-
mk0 has quit [Quit: Leaving]
[10:15:32] -!-
mk0 has quit [Client Quit]
[10:24:58] -!-
mhaberler has quit [Quit: mhaberler]
[10:27:04] -!-
mhaberler [
[email protected]] has joined #emc-devel
[10:27:38] -!-
mhaberler_ [
[email protected]] has joined #emc-devel
[10:44:42] -!-
adb [
[email protected]] has joined #emc-devel
[10:47:28] -!-
emcrules_d510mo has quit [Read error: Operation timed out]
[11:30:26] -!-
ries has quit [Ping timeout: 240 seconds]
[11:51:00] -!-
pingufan has quit [Remote host closed the connection]
[12:07:03] -!-
ewidance [
[email protected]] has joined #emc-devel
[12:07:19] -!-
mhaberler has quit [Quit: mhaberler]
[12:07:19] mhaberler_ is now known as
mhaberler
[12:07:22] -!-
mhaberler has quit [Quit: mhaberler]
[12:11:15] -!-
ewidance has quit [Ping timeout: 240 seconds]
[12:15:07] -!-
ewidance [
[email protected]] has joined #emc-devel
[12:15:34] -!-
ewidance [
[email protected]] has parted #emc-devel
[12:15:44] -!-
ewidance [
[email protected]] has joined #emc-devel
[12:16:38] -!-
ewidance [
[email protected]] has parted #emc-devel
[12:44:27] -!-
cradek has quit [Ping timeout: 240 seconds]
[12:44:50] -!-
cradek [
[email protected]] has joined #emc-devel
[12:48:58] -!-
mhaberler [
[email protected]] has joined #emc-devel
[12:56:19] -!-
Valen has quit [Quit: Leaving.]
[13:07:05] -!-
ewidance [
[email protected]] has joined #emc-devel
[13:07:13] -!-
ewidance [
[email protected]] has parted #emc-devel
[13:08:12] -!-
mhaberler has quit [Quit: mhaberler]
[13:11:58] -!-
ewidance [
[email protected]] has joined #emc-devel
[13:25:27] -!-
ewidance [
[email protected]] has parted #emc-devel
[13:30:21] -!-
mk0 has quit [Quit: Leaving]
[13:32:26] -!-
ewidance [
[email protected]] has joined #emc-devel
[13:36:12] -!-
skunkworks [skunkworks!447329d2@gateway/web/freenode/ip.68.115.41.210] has joined #emc-devel
[13:38:30] -!-
toastydeath has quit [Quit: Leaving]
[13:53:48] -!-
servos4ever has quit [Quit: ChatZilla 0.9.85 [SeaMonkey 2.0.11/20101206162726]]
[14:02:14] -!-
nullie has quit [Quit: Ex-Chat]
[14:06:46] -!-
ries [
[email protected]] has joined #emc-devel
[14:17:46] -!-
EDocToor has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014]]
[14:23:18] <skunkworks> I cannot believe people are talking about using ide interfaces. Are not those going away also?! ;)
[14:26:16] -!-
EDocToor [
[email protected]] has joined #emc-devel
[14:32:00] -!-
psha[work] has quit [Quit: leaving]
[14:41:32] <archivist> skunkworks, dunno are cdroms and dvd drives moving to sata?
[14:47:40] <alex_joni> archivist: long time ago they did
[14:47:54] <alex_joni> the latest mobos I looked for hardly have any IDEs on them
[14:48:04] <alex_joni> maybe only one if you're lucky
[14:56:28] -!-
cassmodiah has quit [Ping timeout: 246 seconds]
[15:03:52] -!-
pcw_home has quit [Remote host closed the connection]
[15:11:50] -!-
emcrules_mobile has quit [Quit: Chatmosphere - IRC for Blackberry]
[15:15:20] Tech_Talk is now known as
Birdman3131
[15:15:47] -!-
MarkusBec has quit [Ping timeout: 250 seconds]
[15:16:02] <skunkworks> I have been buying a lot of these for computer upgrades
http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=5466797&CatId=2417
[15:16:13] <skunkworks> 1 parallel and 1 ide
[15:16:56] <skunkworks> pretty zippy - I think that is what I put in the k&t also (just a 2 core though ;)) at the time it was 89 or 99 dollars
[15:17:33] <skunkworks> actaully - I think it was this bundle in the k&t
http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=6498211&CatId=2417
[15:17:45] <skunkworks> (same motherboard)
[15:26:57] -!-
JT-Work [
[email protected]] has joined #emc-devel
[15:32:24] -!-
psha [
[email protected]] has joined #emc-devel
[15:43:49] -!-
awallin_ has quit [Remote host closed the connection]
[15:52:37] -!-
JT-Work_ [
[email protected]] has joined #emc-devel
[15:52:42] -!-
mhaberler [
[email protected]] has joined #emc-devel
[15:56:22] -!-
JT-Work has quit [Ping timeout: 252 seconds]
[15:56:31] JT-Work_ is now known as
JT-Work
[15:56:52] -!-
mhaberler has quit [Client Quit]
[15:59:07] -!-
izua_ has quit [Ping timeout: 250 seconds]
[16:00:24] -!-
izua has quit [Changing host]
[16:13:52] -!-
ewidance [
[email protected]] has parted #emc-devel
[16:32:14] -!-
micges [
[email protected]] has joined #emc-devel
[16:37:33] -!-
pingufan has quit [Remote host closed the connection]
[16:53:47] -!-
JT-Work has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014]]
[17:07:23] -!-
kb8wmc has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101206122310]]
[17:17:37] -!-
Gurgalof has quit [Ping timeout: 250 seconds]
[17:22:26] -!-
ve7it [
[email protected]] has joined #emc-devel
[17:54:26] -!-
MarkusBec has quit [Excess Flood]
[17:56:31] -!-
EDocToor has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014]]
[17:57:22] -!-
EDocToor [
[email protected]] has joined #emc-devel
[18:12:24] -!-
JT-Shop [
[email protected]] has joined #emc-devel
[18:42:13] -!-
EDocToor has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014]]
[18:42:33] -!-
uwe_ has quit [Ping timeout: 240 seconds]
[18:43:49] -!-
kb8wmc has quit [Read error: Connection reset by peer]
[18:48:55] -!-
dgarr [
[email protected]] has joined #emc-devel
[19:03:30] -!-
EDocToor [
[email protected]] has joined #emc-devel
[19:04:16] -!-
EDocToor has quit [Client Quit]
[19:14:16] -!-
e-jones [
[email protected]] has joined #emc-devel
[19:14:21] -!-
skunkworks has quit [Ping timeout: 272 seconds]
[19:20:08] -!-
EDocToor [
[email protected]] has joined #emc-devel
[19:21:34] -!-
dgarr has quit [Quit: Leaving.]
[19:29:05] -!-
kb8wmc has quit [Read error: Connection reset by peer]
[19:35:26] -!-
Seeyah has quit []
[19:36:04] -!-
ewidance [
[email protected]] has joined #emc-devel
[19:44:12] -!-
EDocToor has quit [Quit: hasta]
[19:45:06] -!-
EDocToor [
[email protected]] has joined #emc-devel
[20:26:10] -!-
e-jones has quit [Quit: Ex-Chat]
[20:47:44] -!-
motioncontrol has quit [Quit: Sto andando via]
[21:15:50] -!-
skunkworks [skunkworks!447329d2@gateway/web/freenode/ip.68.115.41.210] has joined #emc-devel
[21:17:00] -!-
emcrules_d510mo has quit [Ping timeout: 264 seconds]
[21:38:15] -!-
acemi has quit [Ping timeout: 246 seconds]
[21:43:00] -!-
acemi_ has quit [Ping timeout: 264 seconds]
[22:08:14] -!-
acemi_ has quit [Ping timeout: 240 seconds]
[22:09:39] -!-
micges_ [
[email protected]] has joined #emc-devel
[22:13:39] -!-
micges has quit [Ping timeout: 276 seconds]
[22:14:46] micges_ is now known as
micges
[22:16:07] -!-
danimal_garage has quit [Ping timeout: 272 seconds]
[22:17:33] -!-
Jymmm has quit [Ping timeout: 240 seconds]
[22:17:52] -!-
e3m has quit [Quit: Man who run behind car get exhausted]
[22:20:51] -!-
mhaberler [
[email protected]] has joined #emc-devel
[22:26:58] -!-
Jymmm [Jymmm!~jymmm@unaffiliated/jymmm] has joined #emc-devel
[22:36:23] -!-
skunkworks has quit [Ping timeout: 272 seconds]
[22:45:46] -!-
psha has quit [Quit: Lost terminal]
[22:47:17] -!-
Tom_L has quit []
[22:52:47] -!-
Fox_Muldr has quit [Ping timeout: 240 seconds]
[22:53:35] -!-
paul11 has quit [Quit: Visitor from www.linuxcnc.org]
[22:54:28] -!-
mhaberler has quit [Quit: mhaberler]
[23:10:09] -!-
micges has quit [Quit: Ex-Chat]
[23:17:27] -!-
danimal_garage has quit [Ping timeout: 240 seconds]
[23:21:11] -!-
odiug has quit [Ping timeout: 240 seconds]
[23:49:51] -!-
The_Ball has quit [Ping timeout: 276 seconds]
[23:54:49] -!-
JT-Shop has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014]]