<whitequark>
hmm, seems like my Z missing steps problem was solved by limiting velocity to 1025mm/s
<whitequark>
from 1500mm/s
<whitequark>
also I'm inclined to believe the .05mm repeat positioning accuracy, because if it didn't actually provide that, my holes wouldn't hold nuts
<whitequark>
no reason for it to have good adhesion to surface, every reason not to
Guest9509 has quit [Ping timeout: 264 seconds]
Coyo has joined #qi-hardware
arielenter has quit [Quit: Leaving.]
xiangfu has quit [Ping timeout: 246 seconds]
xiangfu has joined #qi-hardware
xiangfu has quit [Ping timeout: 246 seconds]
xiangfu has joined #qi-hardware
wolfspraul has joined #qi-hardware
xiangfu has quit [Ping timeout: 264 seconds]
wolfspraul has quit [Ping timeout: 246 seconds]
xiangfu has joined #qi-hardware
jekhor__ has joined #qi-hardware
wolfspraul has joined #qi-hardware
pcercuei has joined #qi-hardware
wolfspra1l has joined #qi-hardware
wolfspraul has quit [Ping timeout: 252 seconds]
wolfspra1l has quit [Ping timeout: 264 seconds]
wolfspraul has joined #qi-hardware
wolfspraul has quit [Read error: Connection reset by peer]
wolfspraul has joined #qi-hardware
xiangfu has quit [Ping timeout: 246 seconds]
xiangfu has joined #qi-hardware
jekhor__ has quit [Ping timeout: 255 seconds]
wolfspraul has quit [Quit: leaving]
atommann has quit [Quit: Leaving]
wolfspraul has joined #qi-hardware
xiangfu has quit [Ping timeout: 255 seconds]
<DocScrutinizer05>
((table is not parallel to XY plane)) quite possible
<DocScrutinizer05>
what I elaborated on yesterday(?)
<DocScrutinizer05>
((15 mills)) ouch!
<DocScrutinizer05>
((imgur)) LOL
jekhor__ has joined #qi-hardware
valhalla has quit [Ping timeout: 264 seconds]
valhalla has joined #qi-hardware
kristianpaul has quit [Ping timeout: 264 seconds]
nicksydney has quit [Remote host closed the connection]
nicksydney has joined #qi-hardware
kristianpaul has joined #qi-hardware
wpwrak has quit [Ping timeout: 252 seconds]
pcercuei_ has joined #qi-hardware
pcercuei has quit [Ping timeout: 252 seconds]
jekhor__ has quit [Read error: Connection reset by peer]
wpwrak has joined #qi-hardware
<kristianpaul>
wb
rz2k has joined #qi-hardware
jekhor__ has joined #qi-hardware
<wpwrak>
welcome back, internet ! :)
dos1 has joined #qi-hardware
<kristianpaul>
lol
arielenter has joined #qi-hardware
jekhor__ has quit [Ping timeout: 240 seconds]
arielenter has quit [Quit: Leaving.]
jekhor has joined #qi-hardware
arielenter has joined #qi-hardware
jekhor has quit [Ping timeout: 264 seconds]
pcercuei_ has quit [Ping timeout: 252 seconds]
arielenter has quit [Ping timeout: 240 seconds]
jekhor has joined #qi-hardware
arielenter has joined #qi-hardware
arielenter has quit [Quit: Leaving.]
arielenter has joined #qi-hardware
jekhor_ has joined #qi-hardware
pcercuei has joined #qi-hardware
jekhor has quit [Ping timeout: 252 seconds]
jekhor_ has quit [Ping timeout: 252 seconds]
<zrafa>
wpwrak: where is libubb living? if I try to build libswd I get a lot of
<zrafa>
ben.c:(.text+0x4f8): undefined reference to `ubb_mem'
<zrafa>
ben.c:(.text+0x524): undefined reference to `ubb_mem'
<zrafa>
ben.c:(.text+0x550): undefined reference to `ubb_mem'
<zrafa>
but I do not see ubb_mem defined in ubb.h or something like that
<wpwrak>
the ben-blinkenlights project ;-)
<zrafa>
well, I am tired right now, maybe that is the error :)
<wpwrak>
undefined ubb_mem would suggest that you have the headers but not the library
<zrafa>
wpwrak: the problem was that I modified Makefile and had a wrong CFLAG :P
<larsc>
LDFLAG
<wpwrak>
LDLIBS ? :)
<wpwrak>
although a few years ago, you could still get away with putting libraries in LDFLAGS
<wpwrak>
must have been gnu ld getting a bit stricter that ended that
<larsc>
it now cares about the order of the libs or something
<wpwrak>
yup. they probably removed a loop that should never have been there
<ysionneau>
to get the same effect you can now use -Wl,--start-group and -Wl,--end-group or something like that
<ysionneau>
(and put your lib list between those two)
<larsc>
great, google's autocomplete suggests '-wl --start-group' when you type 'wl--start-g'
<larsc>
of course it doesn't find anything because - infront of a searchterm means it shouldn't appear in the result
<larsc>
'Using this option has a significant performance cost. It is best to use it only when there are unavoidable circular references between two or more archives.'
<ysionneau>
well, for "small" projects with few libraries (which are not too big) you just don't care
<ysionneau>
but when building Android ou Gecko ou whatever indeed you care :)
<ysionneau>
you should not use that unless there is really a "circular dependency"
<ysionneau>
using it by default is bad design
<wpwrak>
having a circular dependency would probably constitute bad design on its own ;-)
<ysionneau>
well, that depends, but usually it's not the case
<ysionneau>
(I mean, usually you indeed don't have those)
DocScrutinizer05 is now known as joerg_rw
arielenter has quit [Quit: Leaving.]
arielenter has joined #qi-hardware
<zrafa>
larsc: wpwrak : the problem was a CFLAG because I commented out some var (# CC2543 = ../../ybox/fw/cc/) and then CFLAGS was no so nice with CFLAGS = -Wall -I$(LIBUBB)/include -I$(CC2543)
<zrafa>
wpwrak: so It ran gcc $(CFLAGS) -c source file
<zrafa>
dont know why then the error was showed by ld anyway (after that gcc of that source file it then runs gcc to build the binary with ld)
<wpwrak>
hmm, what would you do with ybox/fw/cc ? that's firmware for a chip you don't have :)
<wpwrak>
or does some other makefile invoke that ?
rz2k has quit []
pcercuei has quit [Quit: dodo]
arielenter has quit [Quit: Leaving.]
arielenter has joined #qi-hardware
Luke-Jr has quit [Ping timeout: 245 seconds]
Luke-Jr has joined #qi-hardware
joerg_rw is now known as DocScrutinizer05
* whitequark
finally got to preparing the copper hypophosphite solution
arielenter has quit [Quit: Leaving.]
arielenter has joined #qi-hardware
<zrafa>
wpwrak: yes, libswd has usage of ybox/fw/cc and then I was removing cc stuff from Makefile
<zrafa>
wpwrak: so some -I option of gcc was empty when running make
<wpwrak>
yes, there's a header dependency. but you shouldn't need to build things over there, just have the files
<wpwrak>
anelok/anelok and anelok/ybox currently have a highly incestuous relationship with includes and even vpaths going back and forth. so have your barf bag ready :)
<wpwrak>
(if you get to building firmware, then ben-wpan/atusb/fw/ also becomes part of the family. but you don't need that)
<wpwrak>
(at last not yet)
tumdedum has quit [Ping timeout: 240 seconds]
tumdedum has joined #qi-hardware
<whitequark>
bleargh, ammonia stinks
<whitequark>
like a thousand cats momentarily cried in terror and pissed all over the place