2012-05-31 00:10 wolfspraul has joined #qi-hardware 2012-05-31 00:13 wolfspra1l has quit [Ping timeout: 244 seconds] 2012-05-31 00:22 wolfspra1l has joined #qi-hardware 2012-05-31 00:25 wolfspraul has quit [Ping timeout: 256 seconds] 2012-05-31 00:54 wolfspra1l has quit [Ping timeout: 252 seconds] 2012-05-31 00:57 wolfspraul has joined #qi-hardware 2012-05-31 01:02 wolfspraul has quit [Ping timeout: 244 seconds] 2012-05-31 01:03 wolfspraul has joined #qi-hardware 2012-05-31 01:04 rejon has joined #qi-hardware 2012-05-31 01:05 cladamw has joined #qi-hardware 2012-05-31 01:05 wolfspraul has quit [Read error: Connection reset by peer] 2012-05-31 01:11 jeremybrown82 has quit [Ping timeout: 250 seconds] 2012-05-31 01:16 wolfspraul has joined #qi-hardware 2012-05-31 01:20 rejon has quit [Ping timeout: 245 seconds] 2012-05-31 01:31 Ayla has quit [Ping timeout: 250 seconds] 2012-05-31 01:32 Ayla has joined #qi-hardware 2012-05-31 01:42 jurting has quit [Ping timeout: 244 seconds] 2012-05-31 01:46 Ayla has quit [Quit: dodo] 2012-05-31 01:47 wej has quit [Ping timeout: 272 seconds] 2012-05-31 01:53 wej has joined #qi-hardware 2012-05-31 02:01 cladamw: glad you're having fun :-) i think part of that may also be that fped allows you to think in more abstract terms. so each thing you do has a more powerful effect. 2012-05-31 02:02 regarding the suppression of pins: the most direct way of suppressing pins would be to have a table, keyed by the pin's number, that says whether the pin should be shown or not 2012-05-31 02:03 ah wait, and we can rename them in the process, too 2012-05-31 02:03 so: 2012-05-31 02:05 table { ?n, name } { 1, 1 } { 2, 2 } { 3, 3 } { 4, 4 } { 5, 5 } { 6, 0 } { 7, 0 } { 8, 6 } 2012-05-31 02:06 loop if = floor(1-name/100), 0 2012-05-31 02:06 lemme check if this actually works :) 2012-05-31 02:06 yeah ... my problem is that I've not familiar with its conceipt of expression. :-) 2012-05-31 02:07 yeah, works perfectly :) 2012-05-31 02:08 so if the table above it can do with just one pads frame not using two pads_t and pads_b, then i eventaully knows that table. :-) 2012-05-31 02:09 since i still don't know the how syntax it is. :-O 2012-05-31 02:09 (expressions) the way fped does things is a bit unusual. that's because everything has to work in a reasonably natural way in a "script" and in the GUI. so it's a mix of procedural and declarative concepts. 2012-05-31 02:09 hehe ... could you use pastebin for me the optimized codes ? 2012-05-31 02:10 you mean a modified eus.fpd ? 2012-05-31 02:11 yeah ... correct explainative mix of both procedural and declarative ones. 2012-05-31 02:11 (modified eus.fpd) yes. :-) 2012-05-31 02:12 but maybe your Fped is updated latestly not like mine now so that i not sure if Fped can interprete it. 2012-05-31 02:12 if you want to understand the finer details of fped, you should look at the script language, described in README. i think it's easier to understand the structure of things there 2012-05-31 02:13 yes, you need the latest fped for this kind of thing to work :) 2012-05-31 02:13 phew ~ script again. 2012-05-31 02:14 my priority one may not to learn it now, hehe ... keep building those needed m1r4's modules. 2012-05-31 02:15 i think it's a good moment to learn what you want to learn 2012-05-31 02:15 since you have a lot of opportunities to use it on real-life problems. that makes it much easier to learn. 2012-05-31 02:16 i have time goal now. :-) 2012-05-31 02:16 ah ? 2012-05-31 02:16 has wolfgang given you a deadline ? 2012-05-31 02:16 so maybe yesterday you mentioned another expression for older ver. of Fped. Can it ? 2012-05-31 02:17 Does Fped have another expression for such for my current Fped ? 2012-05-31 02:17 (looking at eus.fpd) pin_b and pin_t are nearly identical. is there any specific reason why you didn't use the same frame for both types of pins ? 2012-05-31 02:18 wpwrak, yeah ... i tried but failed in using 'if' ... hehe 2012-05-31 02:18 then i seperate 'pin' into *_[b:t] frames. :-O 2012-05-31 02:19 (old-style) you could just enumerate the pins: table { pos, name } { 1, 1 } { 2, 2 } { 3, 3 } { 4, 4 } { 5, 5 } { 8, 6 } 2012-05-31 02:19 and remove the loop 2012-05-31 02:20 what i called "pos" would be "i" in your case 2012-05-31 02:20 (using if) hmm. you shouldn't need an "if" here 2012-05-31 02:21 All roads lead to Rome. (even I knew it's not smart codes but tried ) ha ... 2012-05-31 02:21 the only possible problem i see with simplifying things is that it may be harder to get measurements. but let's see ... 2012-05-31 02:22 (olde-style) okay ... next module if the same case I'll try. :-) 2012-05-31 02:22 by the way, to verify footprints, when you generate a postscript file and print it, fped will put one drawing at the real size. so if you have the component at hand, you can put it on the paper and verify that the footprint does indeed look right 2012-05-31 02:23 thinking of it, the old-style approach is actually more efficient in this case :) 2012-05-31 02:24 wpwrak, okay ... that's i'd like to know from you. ( efficient) :-) thanks telling me. :-O 2012-05-31 02:29 xwalk has quit [Ping timeout: 252 seconds] 2012-05-31 02:35 oh, and eus.fpd linke pins_t from frame outline. i think you want to link it from the root frame :) 2012-05-31 02:42 here's my version: http://downloads.qi-hardware.com/people/werner/tmp/eus2.fpd 2012-05-31 02:42 should also work with old versions of fped 2012-05-31 02:44 that part has a funny geometry. i think the dimensions are originally in mil. 2012-05-31 02:44 if a part is in mil, it's better to use the original dimensions. fped will convert them for you anyway. 2012-05-31 02:45 you can also mix mil and mm. e.g., if a part is in mil, you can still use mm for measurement offsets 2012-05-31 02:59 kyak has quit [Ping timeout: 244 seconds] 2012-05-31 03:21 cladamwa has joined #qi-hardware 2012-05-31 03:22 cladamw has quit [Read error: Connection reset by peer] 2012-05-31 03:33 sucotronic has quit [Ping timeout: 246 seconds] 2012-05-31 03:35 rejon has joined #qi-hardware 2012-05-31 03:43 rejon has quit [Ping timeout: 245 seconds] 2012-05-31 03:44 phirsch has quit [Ping timeout: 265 seconds] 2012-05-31 03:47 sucotronic has joined #qi-hardware 2012-05-31 03:49 phirsch has joined #qi-hardware 2012-05-31 03:56 rejon has joined #qi-hardware 2012-05-31 04:02 rejon has quit [Ping timeout: 265 seconds] 2012-05-31 04:04 (eus2.fpd) wpwrak nice, thanks a lot. good to see smarter codes. :) 2012-05-31 04:05 cladamwa has quit [Quit: Leaving] 2012-05-31 04:19 xwalk has joined #qi-hardware 2012-05-31 04:31 kyak has joined #qi-hardware 2012-05-31 04:38 jekhor has joined #qi-hardware 2012-05-31 04:44 emeb has quit [Quit: Leaving.] 2012-05-31 05:13 jekhor has quit [Ping timeout: 250 seconds] 2012-05-31 05:33 cladamw has joined #qi-hardware 2012-05-31 05:43 wolfspra1l has joined #qi-hardware 2012-05-31 05:46 wolfspraul has quit [Ping timeout: 256 seconds] 2012-05-31 06:02 newcup has quit [Remote host closed the connection] 2012-05-31 06:06 viric has quit [Ping timeout: 246 seconds] 2012-05-31 06:06 sucotronic has quit [Ping timeout: 246 seconds] 2012-05-31 06:06 jluis has quit [Ping timeout: 246 seconds] 2012-05-31 06:06 jluis has joined #qi-hardware 2012-05-31 06:06 lindi- has quit [Ping timeout: 246 seconds] 2012-05-31 06:07 viric has joined #qi-hardware 2012-05-31 06:08 lindi- has joined #qi-hardware 2012-05-31 06:08 sucotronic has joined #qi-hardware 2012-05-31 06:09 rejon has joined #qi-hardware 2012-05-31 06:09 cladamw has quit [Quit: Leaving] 2012-05-31 06:18 rejon has quit [Ping timeout: 250 seconds] 2012-05-31 06:23 wolfspraul has joined #qi-hardware 2012-05-31 06:23 wolfspra1l has quit [Read error: Connection reset by peer] 2012-05-31 06:39 rejon has joined #qi-hardware 2012-05-31 07:13 kristoffer has joined #qi-hardware 2012-05-31 07:15 rejon has quit [Quit: Leaving] 2012-05-31 07:36 rejon has joined #qi-hardware 2012-05-31 07:38 jurting has joined #qi-hardware 2012-05-31 08:07 jurting has quit [Ping timeout: 260 seconds] 2012-05-31 08:18 newcup has joined #qi-hardware 2012-05-31 08:23 Ayla has joined #qi-hardware 2012-05-31 08:48 jurting has joined #qi-hardware 2012-05-31 08:54 wolfspraul has quit [Read error: Connection reset by peer] 2012-05-31 08:54 wolfspra1l has joined #qi-hardware 2012-05-31 09:52 jekhor has joined #qi-hardware 2012-05-31 09:57 jluis has quit [Ping timeout: 260 seconds] 2012-05-31 10:00 antoniodariuh_ has joined #qi-hardware 2012-05-31 10:01 wolfspra1l has quit [Read error: Connection reset by peer] 2012-05-31 10:05 wolfspraul has joined #qi-hardware 2012-05-31 10:08 jluis has joined #qi-hardware 2012-05-31 10:10 wolfspra1l has joined #qi-hardware 2012-05-31 10:11 wolfspraul has quit [Ping timeout: 256 seconds] 2012-05-31 10:22 rejon has quit [Ping timeout: 246 seconds] 2012-05-31 10:24 jluis has quit [Ping timeout: 245 seconds] 2012-05-31 10:38 jluis has joined #qi-hardware 2012-05-31 11:08 xwalk has quit [Ping timeout: 244 seconds] 2012-05-31 11:24 jivs_ has joined #qi-hardware 2012-05-31 11:25 seen xiangfu 2012-05-31 11:25 xiangfu, plz buzz me when you are online 2012-05-31 11:30 wolfspra1l has quit [Ping timeout: 250 seconds] 2012-05-31 11:32 wolfspraul has joined #qi-hardware 2012-05-31 11:50 xwalk has joined #qi-hardware 2012-05-31 11:52 Ayla has quit [Ping timeout: 252 seconds] 2012-05-31 11:54 Ayla has joined #qi-hardware 2012-05-31 11:59 DocScrutinizer has quit [Disconnected by services] 2012-05-31 11:59 DocScrutinizer has joined #qi-hardware 2012-05-31 12:18 xiangfu has joined #qi-hardware 2012-05-31 12:53 rejon has joined #qi-hardware 2012-05-31 12:55 wolfspra1l has joined #qi-hardware 2012-05-31 12:58 wolfspraul has quit [Ping timeout: 250 seconds] 2012-05-31 13:05 wolfspra1l has quit [Quit: leaving] 2012-05-31 13:05 wolfspraul has joined #qi-hardware 2012-05-31 13:10 xiangfu has quit [Quit: Leaving] 2012-05-31 13:33 jekhor has quit [Ping timeout: 244 seconds] 2012-05-31 13:37 wolfspraul has quit [Quit: leaving] 2012-05-31 13:37 Ayla has quit [Ping timeout: 246 seconds] 2012-05-31 13:39 Ayla has joined #qi-hardware 2012-05-31 13:41 wolfspraul has joined #qi-hardware 2012-05-31 13:47 jeremybrown82 has joined #qi-hardware 2012-05-31 13:55 grmbl. i should know better than starting with the regression tests only after already having accumulated 4k lines to test :-( 2012-05-31 13:55 phirsch has quit [Excess Flood] 2012-05-31 13:57 erikkugel has joined #qi-hardware 2012-05-31 13:58 wolfspraul has quit [Read error: Connection reset by peer] 2012-05-31 13:58 wolfspraul has joined #qi-hardware 2012-05-31 14:04 phirsch has joined #qi-hardware 2012-05-31 14:13 wpwrak: kernel or user code? :) 2012-05-31 14:15 user code (boom) 2012-05-31 14:16 i better clean out the bugs accumulated so far before setting it to work on m1r4 2012-05-31 14:16 what did "(boom)" mean? 2012-05-31 14:18 comes from BOM (bill of materials). the the second O is a non-functional artistic addition :) 2012-05-31 14:19 if you made a kde frontend, you could name it kaboom 2012-05-31 14:19 ok :) 2012-05-31 14:20 ;-)) 2012-05-31 14:20 do you know the anime Linus & Boom? 2012-05-31 14:20 s/anime/cartoon 2012-05-31 14:20 Ayla meant: "do you know the cartoon Linus & Boom?" 2012-05-31 14:20 hm no 2012-05-31 14:21 naw, i do my graphics only in SDL or Gtk. vade retro, C++ ;-) 2012-05-31 14:21 I only know Linus from Schultz 2012-05-31 14:22 Ayla: is that cartoon about Mr. Torvalds rewriting memory management while having a hangover ? :) 2012-05-31 14:22 no, it's a lame cartoon about aliens 2012-05-31 14:31 Ayla has quit [Ping timeout: 260 seconds] 2012-05-31 14:31 emeb has joined #qi-hardware 2012-05-31 14:32 Ayla has joined #qi-hardware 2012-05-31 14:57 Ayla has quit [Ping timeout: 252 seconds] 2012-05-31 14:57 marcan has quit [Read error: Operation timed out] 2012-05-31 15:01 marcan has joined #qi-hardware 2012-05-31 15:06 The build was successful: http://fidelio.qi-hardware.com/~xiangfu/build-nanonote/openwrt-xburst.full_system-20120530-0909 2012-05-31 15:19 marcan has quit [Read error: Operation timed out] 2012-05-31 15:20 marcan has joined #qi-hardware 2012-05-31 15:27 Jay7 has quit [Ping timeout: 252 seconds] 2012-05-31 15:28 Ayla has joined #qi-hardware 2012-05-31 15:29 Jay7 has joined #qi-hardware 2012-05-31 15:30 jivs_ has quit [Read error: Operation timed out] 2012-05-31 15:30 jivs_ has joined #qi-hardware 2012-05-31 15:43 antoniodariuh_ has quit [Remote host closed the connection] 2012-05-31 15:46 [commit] Jiva Nath Bagale: bug fix for guile2 Makefile (master) http://qi-hw.com/p/openwrt-packages/5e8a25e 2012-05-31 15:48 jivs_ has quit [Quit: Leaving] 2012-05-31 16:00 phirsch has quit [Ping timeout: 248 seconds] 2012-05-31 16:05 phirsch has joined #qi-hardware 2012-05-31 16:56 urandom__ has joined #qi-hardware 2012-05-31 17:04 rejon has quit [Ping timeout: 252 seconds] 2012-05-31 17:05 kilae has joined #qi-hardware 2012-05-31 17:58 erikkugel has quit [Read error: Connection reset by peer] 2012-05-31 18:25 jeremybrown82 has quit [Ping timeout: 244 seconds] 2012-05-31 18:47 jekhor has joined #qi-hardware 2012-05-31 19:20 GNUtoo-desktop has joined #qi-hardware 2012-05-31 19:45 LunaVorax has joined #qi-hardware 2012-05-31 19:46 Hello everyone 2012-05-31 19:54 [commit] Werner Almesberger: b2/test/hierfld: field definitions in hierarchy (master) http://qi-hw.com/p/eda-tools/ef60e92 2012-05-31 19:54 [commit] Werner Almesberger: b2/: new option -v to control verbosity level; move hierarchy dump from parser to boom.c (master) http://qi-hw.com/p/eda-tools/b0ed436 2012-05-31 19:54 [commit] Werner Almesberger: b2/test/Common: drop that tacky "file-" prefix in pseudo-filenames (master) http://qi-hw.com/p/eda-tools/52e58cc 2012-05-31 19:54 [commit] Werner Almesberger: b2/new function yywarn; make yyerror reuse yyerrorf (master) http://qi-hw.com/p/eda-tools/2239440 2012-05-31 19:54 [commit] Werner Almesberger: b2/: add test for redundant conditions in hierarchy (master) http://qi-hw.com/p/eda-tools/39382b1 2012-05-31 19:54 [commit] Werner Almesberger: b2/Makefile: run tests with bash, not with sh (master) http://qi-hw.com/p/eda-tools/4943519 2012-05-31 19:54 [commit] Werner Almesberger: b2/lang.y: don't pop fields from the stack before also handling the rule (master) http://qi-hw.com/p/eda-tools/a892b63 2012-05-31 19:54 [commit] Werner Almesberger: b2/dump.c (dump_rel): use %g also for tolerances in percent (master) http://qi-hw.com/p/eda-tools/6159bdf 2012-05-31 19:54 [commit] Werner Almesberger: b2/eval.c (eval_rel): fix stop pointer when parsing absolute tolerance values (master) http://qi-hw.com/p/eda-tools/8c26e5f 2012-05-31 19:54 [commit] Werner Almesberger: b2/test/hierrul: field rules in hierarchy (master) http://qi-hw.com/p/eda-tools/e66267f 2012-05-31 19:54 [commit] Werner Almesberger: Merge branch 'master' of projects.qi-hardware.com:eda-tools (master) http://qi-hw.com/p/eda-tools/4fb5f26 2012-05-31 19:58 kilae has quit [Quit: ChatZilla 0.9.88.2 [Firefox 12.0/20120420145725]] 2012-05-31 20:06 Ornoterm1s has joined #qi-hardware 2012-05-31 20:06 Ornotermes has quit [Read error: Operation timed out] 2012-05-31 20:07 Ornoterm1s is now known as Ornotermes 2012-05-31 20:49 kristoffer has quit [Quit: Leaving] 2012-05-31 21:12 urandom__ has quit [Remote host closed the connection] 2012-05-31 21:15 jekhor has quit [Ping timeout: 245 seconds] 2012-05-31 21:37 jurting has quit [Quit: Leaving] 2012-05-31 22:25 GNUtoo-desktop has quit [Quit: [INFO] fsogsmd : received signal -11, exiting.] 2012-05-31 22:47 Maroni has joined #qi-hardware 2012-05-31 22:51 whitequark: how went your arm + fpga combo handshake?