--- Log for 07.04.104 Server: truong.freenode.net Channel: #rockbox --- Nick: logbot_ Version: Dancer V4.16p1 Started: 1 month and 24 days ago 00.00.03 # mp3fixer problem: my statement is vaild only for the windows binary (latest version). 00.00.06 # some of the debug code is probably obsolete 00.00.12 # <[IDC]Dragon> dunno how much the voice UI costs 00.01.03 # <[IDC]Dragon> not much code, the menu/option tables got an extra member 00.02.30 # Anybody: 00.02.41 # ../../apps/plugins/clock2.c:551: warning: assignment discards qualifiers from pointer target type 00.02.52 # <[IDC]Dragon> Well, you know about computer users behaving like an ideal gas, always fill the available space 00.02.59 # and the code on line 551 is 00.03.00 # logo = clocklogo_1; 00.03.08 # on 548 i've got 00.03.09 # unsigned char* logo = 0; 00.03.12 # any ideas? 00.03.30 # and the type of clocklogo_1? 00.03.40 # const unsigned char 00.03.49 # that's the problem isn't it :D 00.03.50 # not a pointer? 00.03.57 # the original isn't 00.04.33 # <[IDC]Dragon> I gotta sleep 00.04.33 # [IDC]Dragon: nite 00.04.33 # nite idc 00.04.33 Quit [IDC]Dragon () 00.04.37 # midknight2k3: and if you remove the const? 00.05.03 # all right 00.05.08 # linus is the code master! 00.05.39 # only as a test 00.05.45 # oh yes works 00.06.14 # ok, then do a cast instead of removing the const 00.06.30 # hi all, 00.06.32 # hows it going 00.06.38 # Dogger: hi 00.06.40 Join wake [0] (~wake@69.158.6.30) 00.07.31 # LinusN: ? 00.07.53 # logo = (unsigned char *)clocklogo_1; 00.08.07 # and replace the "const"? 00.08.25 # or declare logo as const as well 00.08.54 # doesn't hurt 00.09.22 # works without warnings even without replacing the const 00.09.24 # still should? 00.09.50 # OMFG 00.09.59 # what's 749 * 2? 00.10.14 # oh wait 00.10.16 # boo 00.10.54 # well ok linus 00.10.58 # i think my update is done 00.14.53 # LinusN: Is it possible to call a C function from within assembler code? 00.16.22 # course 00.16.33 # you can do anything in assembler 00.17.20 # To be more precise: _How_ can I do this? (in rockbox) 00.19.15 # amiconn: look in crt0.S 00.20.18 # midknight2k3: you should declare both as const, without the cast 00.20.46 Join mecraw_ [0] (~mecraw@65.211.151.3) 00.21.47 # So I only need to load the value of the name _foobar (if I want to call the function foobar()) into a register, load the parameters into the appropriate registers (I already figured these out) and execute a jsr? 00.22.45 # yes 00.23.05 # Hmm, easy one. 00.23.20 Part mecraw_ 00.23.49 # Even easier if I want to call an api function from a plugin (rb->xxx is already the function poiter). 00.26.47 Quit _aLF ("bye") 00.27.35 # wait 00.27.37 # linus 00.27.48 # so const unsigned char clocklogo[] = {bla]; 00.27.49 # and 00.28.01 # const unsigned char *logo = clocklogo[];? 00.28.45 # no, const unsigned char *logo = clocklogo; 00.28.55 # ok thanks 00.29.01 # why do you need a pointer to it in the first place? 00.29.12 # for striping the logo 00.29.23 # *stole the striping code + proud of it 00.29.25 # striping? 00.29.26 # :) 00.29.29 # yeah 00.29.40 # lcd_bitmap supports 8px high 00.29.43 # but the logo is higher 00.29.56 # main_menu.c, in function "show_logo" 00.29.56 # lcd_bitmap can do 16 iirc 00.30.07 # hmm either way 00.30.10 # it's striped 00.30.32 Join c0utta [0] (~c0utta@105.cust45.nsw.dsl.ozemail.com.au) 00.31.18 # how high is your logo? 00.31.25 # gahh 00.31.26 Quit c0utta{zzZZ} (Read error: 110 (Connection timed out)) 00.31.28 # 37px 00.31.34 Nick c0utta is now known as c0utta{zzZZ} (~c0utta@105.cust45.nsw.dsl.ozemail.com.au) 00.31.35 # there are actually 4 :) 00.31.50 # all of them are 37 00.32.30 # ok 00.32.42 # so this way 00.32.47 # the one function can display it 00.32.59 # by having logo point to the one i want 00.33.16 # hmm this isn't working well 00.33.19 # can i just leave the cast? 00.34.34 # it complains without it? 00.35.24 Quit AciD (Read error: 104 (Connection reset by peer)) 00.35.38 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 00.35.56 # yes 00.36.07 # with the cast it works fine 00.37.26 # it should not complain 00.37.52 # not if both types are const unsigned char 00.38.05 # *sobs 00.38.23 # ok ok 00.38.40 # wait so 00.38.42 # unsigned char* logo = 0; 00.38.42 # 00.38.42 # if(settings.logo == 1) 00.38.42 DBUG Enqueued KICK midknight2k3 00.38.42 # logo = (unsigned char *)clocklogo_1; 00.38.44 # is what i have now 00.38.50 # change what to const unsigned char 00.38.55 # the if body 00.38.58 # or the declaration? 00.39.10 # the declaration 00.39.20 # and remove the cast 00.39.32 # like so then? 00.39.35 # const unsigned char* logo = 0; 00.39.35 # 00.39.35 # if(settings.logo == 1) 00.39.35 # logo = char clocklogo_1; 00.39.41 # or remove the "char" too? 00.40.05 # removed the char.. 00.40.10 # now i'm back where i started 00.40.11 # ../../apps/plugins/clock2.c:564: warning: passing arg 1 of pointer to function discards qualifiers from pointer target type 00.40.39 # oh 00.40.41 # i seeee 00.40.41 # wait 00.40.42 # wait 00.40.57 # oh wait never mind 00.41.00 # so can we just keep the cast 00.43.59 # do whatever you please 00.44.17 # now you tell me :) 00.44.43 # just keep the logo array const 00.45.09 # all right 00.45.09 # DONE 00.45.10 # YES 00.45.11 *** Alert Mode level 1 00.45.11 # FINALLY 00.45.42 # NO 00.45.44 # NO NO! 00.45.57 # OH NOOOOO 00.48.25 # ah great 00.48.58 # LinusN, do me a favor please? 00.49.04 # try this plugin out on your box? 00.49.23 # is it working? 00.49.28 # just one problem 00.49.33 # but i think it has to do with the sim 00.49.49 # bah 00.49.50 # forgot 00.50.02 # can't comple for target 00.50.03 # ok 00.50.06 # can i send you the source 00.50.10 # and you try it? 00.50.31 # email it 00.51.22 Join diddystar5 [0] (Lee@ACC7787E.ipt.aol.com) 00.51.34 # great thanks 00.54.43 # sent 00.54.51 # hope the source works... 00.55.00 # said the attachment was 0 bytes 00.55.12 *** Alert Mode OFF 00.57.20 # LinusN: Don't know if you revisited the irc logs, so I can tell you that my grayscale framework is almost complete. Just implemented an optimization proposed by Jörg. 00.58.15 Quit Nibbler ("eishockey, kanufahrn.... wirsing") 01.01.14 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 01.01.27 # amiconn: noce 01.01.34 # nice 01.01.55 # LinusN: any luck? 01.03.43 # 0 bytes 01.04.11 # was that directed at me? 01.04.16 # :) 01.04.21 # clock2.c was 0 bytes long 01.04.25 # gahhhh 01.04.59 # i'm just going to hold off a bit 01.05.02 # tomorrow i'll submit it 01.05.40 # rather major update 01.05.47 Join joshn [0] (~joshn@204.251.225.17) 01.05.52 # thanks for your help 01.05.54 # i'm off 01.05.56 Quit midknight2k3 ("Leaving") 01.06.01 # Does somebody want to see some scales of gray on his display (recorder or fm required)? 01.06.45 # i do 01.09.20 # :( just if my box worked 01.09.43 # LinusN: http://arnold-j.bei.t-online.de/grayscale.rock 01.10.01 # I can't seem to find ANYTHING that even makes a LED turn on on my box 01.10.17 # i need to go grab a volt meter, and test for electrivcity in it 01.10.19 # goota go 01.10.22 # bye 01.10.28 # bye diddystar5 01.10.28 # bye 01.10.29 Quit diddystar5 ("Leaving") 01.11.57 # LinusN: The actual output is only a demo, there are primitives to set/invert pixels, set/invert lines, draw rectangles, fill/invert rectangles and display grayscale bitmaps (not shown). 01.13.16 # The only missing primitive is the display of a bitmap with foreground and background "color". There are also not font routines since the font access is not exposed via the api. 01.13.36 # looks cool 01.13.49 # :-)) 01.15.27 # You could construct your own "font" and display it via the "bitmap display with foreground/backgroud". This still has to be written (shouldn't be that hard). 01.18.34 # how about power consumption when accessing the lcd like that? 01.19.39 # Don't know if Jörg did some measurement, I didn't do one (yet). Maybe I will measure tomorrow. 01.20.22 # It's shouldn't make much of a difference with the display, but the CPU is active 50% of the time. 01.20.31 # *It 01.27.52 Quit Dogger ("Client Exiting") 01.31.12 Quit wake ("leaving") 01.34.18 # amiconn: very nice demo... 01.34.40 # what about a "visualization" to start out with.... 01.35.07 Join MT [0] (mt@194.154.163.134) 01.35.16 # Hmm, just some boring lines and rectangles. The framework should be very interesting for our game plugin programmers, though... 01.35.42 # amiconn: what about displaying jpegs that are contained withing ID3 tags, or a picture viewer? 01.37.26 # Hmm, I did not (yet) deal with jpeg compression. Probably the plugin buffer is not large enough for that, especially if I use most of it for my grayscale buffer. 01.38.03 # looking forward to what's coming up... don't forget to post the code to sourceforge :) 01.38.11 # But it should be possible to write a viewer for uncompressed image formats (bmp comes to mind, or pnm) 01.38.53 # Will post it, as soon as the last graphics primitive function is written and tested. 01.39.56 # sounds great! What about a grayscale interface -- is that possible? 01.40.48 # Should be possible, but I think it's not worth to waste half CPU power just for the interface. 01.42.35 # The most challenging thing about rockbox plugin programming is the tight space (only 32 KB) 01.46.11 *** Saving seen data "./dancer.seen" 01.50.31 Quit AciD (Client Quit) 01.56.37 # ah.... 02.03.06 # time to sleep, cu guys 02.03.19 # Night LinusN. 02.03.26 Part LinusN 02.11.38 Join joshn_ [0] (~joshn@204.251.225.17) 02.11.39 Quit joshn (Read error: 104 (Connection reset by peer)) 02.31.43 Quit Nibbler (Read error: 104 (Connection reset by peer)) 02.54.23 # elinenbe: Wanna try my new version? This one even has some text (well, just "hello"). 03.00.32 Join Kenshiro [0] (~jirc@nantes-1-62-147-40-136.dial.proxad.net) 03.00.38 # hi!!!! 03.01.02 # i love rockbox 03.01.56 # i just buy a MP3 player (archos studio 20) 03.02.02 Join jshriver [0] (~jirc@adsl-66-140-134-49.dsl.hstntx.swbell.net) 03.02.10 Part jshriver 03.02.38 # and i want to know if a picth control exist on this player? 03.02.59 # are you sleeping? 03.03.11 # i'm french.... 03.09.30 Part amiconn 03.31.58 Quit Kenshiro (Read error: 110 (Connection timed out)) 03.46.12 *** Saving seen data "./dancer.seen" 03.56.47 Join scott666_ [0] (scott666@c-24-245-58-245.mn.client2.attbi.com) 04.15.21 Quit scott666 (Read error: 110 (Connection timed out)) 04.15.50 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 04.37.54 Join diddystar5 [0] (Lee@ACC7D946.ipt.aol.com) 04.37.57 # join #oss 04.38.04 Quit diddystar5 (Client Quit) 04.53.23 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 05.04.50 Join diddystar5 [0] (Lee@ACC7D946.ipt.aol.com) 05.04.52 # join #oss 05.31.54 Quit Nibbler (Read error: 104 (Connection reset by peer)) 05.42.56 Quit diddystar5 ("Leaving") 05.46.14 *** Saving seen data "./dancer.seen" 06.12.44 Quit AciD (Client Quit) 06.48.54 Quit scott666_ ("i'll be back...eventually...") 07.11.12 Join Guest [0] (~jirc@adsl-66-122-76-21.dsl.snlo01.pacbell.net) 07.11.50 Quit Guest (Client Quit) 07.11.59 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 07.26.39 Join pvh [0] (PvH@24.109.75.7) 07.26.55 # Help! 07.27.17 # I replaced the screen in my rockbox and now I'm having some trouble with it. 07.32.38 # You replaced it? 07.32.53 # The charcell/LCD or the plastic covering it? 07.36.05 # the LCD on my recorder. 07.36.46 # Here's what I did: open the recorder. remove the 6 solder points around the sides, and the two at the end (with embedded wires.) 07.37.22 # lift the interface board, remove the old LCD cable, put the new one in 07.37.27 # close it up, resolder the points 07.37.32 # now it's gone intermittant 07.37.35 # still no LCD output 07.38.01 # seems to play music, though sometimes just out of one ear. i suspect something isn't grounded. 07.38.05 # are the solder points grounding points? 07.39.07 # Hm. You should talk to Linus 07.40.17 # Alright. 07.40.22 # When is he around usually? 07.40.45 # Well. 07.40.58 # Dunno really :) 07.41.03 # Hah. 07.41.06 # In a couple of hours, I would guess. 07.41.23 # Well, I'll idle for a while while I experiment with it. 07.41.28 # I sincerely hope I haven't borked it. 07.46.17 *** Saving seen data "./dancer.seen" 08.25.53 Quit Nibbler (Read error: 54 (Connection reset by peer)) 08.51.49 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 08.58.23 Quit Nibbler ("eishockey, kanufahrn.... wirsing") 08.58.42 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 09.32.41 Quit Nibbler (Read error: 104 (Connection reset by peer)) 09.46.21 *** Saving seen data "./dancer.seen" 09.49.28 Quit pvh () 10.07.58 Join matsl [0] (~matsl@dhcp102.contactor.se) 11.13.58 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 11.20.30 Join amiconn [0] (~jens@pD9E7F0B4.dip.t-dialin.net) 11.46.24 *** Saving seen data "./dancer.seen" 12.22.59 Nick c0utta{zzZZ} is now known as c0utta{afk} (~c0utta@105.cust45.nsw.dsl.ozemail.com.au) 12.47.03 Quit Nibbler (Read error: 54 (Connection reset by peer)) 13.06.18 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 13.36.36 Join mecraw_ [0] (~mecraw@65.211.151.3) 13.37.04 Part mecraw_ 13.46.25 *** Saving seen data "./dancer.seen" 14.09.13 Quit MT ("changing servers") 14.09.33 Join MT [0] (mt@194.154.163.134) 14.26.48 Join pfavr [0] (pfavr@t1o61p443.telia.com) 14.31.06 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 15.36.58 Quit pfavr (Read error: 60 (Operation timed out)) 15.45.28 Quit AciD (Read error: 54 (Connection reset by peer)) 15.46.29 *** Saving seen data "./dancer.seen" 15.58.57 Quit Ka__ (truong.freenode.net irc.freenode.net) 15.58.57 NSplit truong.freenode.net irc.freenode.net 15.58.57 Quit Nibbler (truong.freenode.net irc.freenode.net) 15.58.57 Quit adi|home (truong.freenode.net irc.freenode.net) 15.58.57 Quit Ka_ (truong.freenode.net irc.freenode.net) 15.58.57 Quit elinenbe (truong.freenode.net irc.freenode.net) 15.58.57 Quit ricII (truong.freenode.net irc.freenode.net) 15.58.57 Quit joshn_ (truong.freenode.net irc.freenode.net) 15.58.57 Quit MT (truong.freenode.net irc.freenode.net) 15.58.57 Quit silencer (truong.freenode.net irc.freenode.net) 15.58.57 Quit dwihno (truong.freenode.net irc.freenode.net) 15.58.57 Quit Hadaka (truong.freenode.net irc.freenode.net) 15.58.57 Quit ze (truong.freenode.net irc.freenode.net) 15.58.57 Quit webmind (truong.freenode.net irc.freenode.net) 15.59.32 Quit amiconn (truong.freenode.net irc.freenode.net) 15.59.32 Quit orange_away (truong.freenode.net irc.freenode.net) 15.59.32 Quit matsl (truong.freenode.net irc.freenode.net) 15.59.32 Quit c0utta{afk} (truong.freenode.net irc.freenode.net) 15.59.32 Quit mbr (truong.freenode.net irc.freenode.net) 15.59.32 NHeal truong.freenode.net irc.freenode.net 15.59.32 NJoin Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 15.59.32 NJoin MT [0] (mt@194.154.163.134) 15.59.32 NJoin amiconn [0] (~jens@pD9E7F0B4.dip.t-dialin.net) 15.59.32 NJoin matsl [0] (~matsl@dhcp102.contactor.se) 15.59.32 NJoin joshn_ [0] (~joshn@204.251.225.17) 15.59.32 NJoin c0utta{afk} [0] (~c0utta@105.cust45.nsw.dsl.ozemail.com.au) 15.59.32 NJoin ricII [0] (~ricv@lindad.demon.nl) 15.59.32 NJoin adi|home [0] (~adi|home@as5300-9.216-194-23-72.nyc.ny.metconnect.net) 15.59.32 NJoin Ka__ [0] (~tkirk@65.216.194.2) 15.59.32 NJoin Ka_ [0] (~tkirk@pcp261336pcs.howard01.md.comcast.net) 15.59.32 NJoin elinenbe [0] (trilluser@207-237-224-177.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com) 15.59.32 NJoin silencer [0] (~silencer@zen.via.ecp.fr) 15.59.32 NJoin webmind [0] (~cme2@217-195-236-172.dsl.esined.net) 15.59.32 NJoin dwihno [0] (~dw@81.8.224.89) 15.59.32 NJoin ze [20] (psyco@adsl-67-123-40-251.dsl.lsan03.pacbell.net) 15.59.32 NJoin Hadaka [0] (naked@naked.iki.fi) 15.59.32 NJoin orange_away [0] (~mdw@orange.active.supporter.pdpc) 15.59.32 NJoin mbr [0] (~mb@stz-softwaretechnik.com) 16.08.00 Nick c0utta{afk} is now known as c0utta{zz} (~c0utta@105.cust45.nsw.dsl.ozemail.com.au) 17.08.28 Join Dogger [0] (~jimmy@cpc3-colc1-5-0-cust240.colc.cable.ntl.com) 17.22.11 Join methangas [0] (methangas@0x50a46197.virnxx10.adsl-dhcp.tele.dk) 17.43.17 Join Guest [0] (jirc@lns-vlq-5-82-64-255-17.adsl.proxad.net) 17.43.46 Nick Guest is now known as Youpee (jirc@lns-vlq-5-82-64-255-17.adsl.proxad.net) 17.44.40 Quit Youpee (Client Quit) 17.45.40 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 17.46.31 *** Saving seen data "./dancer.seen" 18.15.07 Quit Dogger ("Client Exiting") 18.31.20 Quit matsl (Remote closed the connection) 18.48.29 Quit AciD (Read error: 104 (Connection reset by peer)) 18.48.43 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 19.46.32 *** Saving seen data "./dancer.seen" 20.18.06 Quit Nibbler (Read error: 104 (Connection reset by peer)) 20.24.45 Join midknight2k3 [0] (ZakkRobert@c-24-18-39-169.client.comcast.net) 20.41.56 Join cjnr11 [0] (dfd@bobillot-5-82-224-193-23.fbx.proxad.net) 20.42.02 Part cjnr11 20.50.32 Quit AciD (Read error: 54 (Connection reset by peer)) 21.00.34 Join Graduisic [0] (jirc@c66.191.144.192.roc.mn.charter.com) 21.01.11 # anybody know if there's any 3rd party firmware for the gmini 120? 21.01.47 # none 21.01.49 # yet 21.02.35 Quit Graduisic (Client Quit) 21.24.30 Join yozac [0] (~chatzilla@h00062506b8d9.ne.client2.attbi.com) 21.24.50 # I'm having trouble formatting my archos from linux. Anybody have any experience with this? 21.25.40 # not i 21.37.47 # using: mkdosfs -F 32 /dev/sda1 21.38.05 # but niether archos nor rockbox can recognize the disk . . . 21.39.19 # no help? 21.39.46 # Sorry, don't know these details about linux. 21.45.39 Join scott666_ [0] (scott666@c-24-245-58-245.mn.client2.attbi.com) 21.46.35 *** Saving seen data "./dancer.seen" 21.52.28 Quit yozac ("ChatZilla 0.9.35 [Mozilla rv:1.5/1]") 22.01.27 Join Nibbler [0] (~nibbler@port-212-202-73-124.reverse.qsc.de) 22.13.35 Join dasmeinname [0] (~email@p213.54.73.40.tisdip.tiscali.de) 22.13.44 Nick dasmeinname is now known as Flo (~email@p213.54.73.40.tisdip.tiscali.de) 22.14.05 # any german here ? 22.15.22 # yup 22.15.31 # gut 22.15.50 # hast du ahnung von den Archos Jukeboxes ? 22.16.17 # please stick to english in the channel. pm me for german. 22.26.18 # hey amiconn 22.26.33 # your grayscale soyurce looks like gibberish to me... or is it just my browser/pc? 22.29.47 # Hmm, did you really select the source? The compiled plugin really looks like gibberish when displayed as text. 22.38.43 # no, it was the source 22.38.46 # does it work for you? 22.41.20 # Of course it works for me since it is written by me. The download works for me as well (both with Mozilla 1.6 and IE 6). 22.42.34 # ok ty 22.49.43 # works now thanks 22.50.03 # OYAH 22.50.43 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 22.56.39 Join top_bloke [0] (~ekolb_pot@dsc06-chc-il-209-109-234-7.rasserver.net) 22.57.13 # TOPS 22.57.14 # YES 22.57.15 # TOPS 22.57.51 # hey 22.57.56 # mid 22.59.15 # rebootin brb 22.59.53 Quit midknight2k3 (Read error: 104 (Connection reset by peer)) 23.01.31 Nick c0utta{zz} is now known as c0utta{work} (~c0utta@105.cust45.nsw.dsl.ozemail.com.au) 23.02.54 Join midknight2k3 [0] (~midknight@c-24-18-39-169.client.comcast.net) 23.03.56 Join pvh [0] (PvH@24.109.75.7) 23.04.10 # Hullo, is anyone familiar with the hardware around? 23.04.30 # I'm having trouble with my 'box, and I wonder if I could get some information from someone more experienced than me. 23.04.39 Join [IDC]Dragon [0] (~idc-drago@pD9FF8055.dip.t-dialin.net) 23.04.42 # idc woo 23.04.47 # hey idc. 23.04.52 # ask and maybe someone will know 23.04.54 # Hi Jörg 23.04.55 # idc might 23.04.59 # <[IDC]Dragon> Hi guys 23.05.01 # Perfect timing then. 23.05.19 # IDC, I'm trying to fix the screen in my 'box, but after reassembling it, I still didn't get output. 23.05.42 # I don't think I damaged anything when I took it apart, but I wonder if you might advise me a little. 23.05.44 # <[IDC]Dragon> Ah, that's you 23.06.05 # Aye -- I'm one of the ones with the rare variant of the flash as well. 23.06.09 # <[IDC]Dragon> did you insert the flexstrip to the very end? 23.06.28 # I thought so. I'm just heating up the soldering iron again to test it. 23.06.37 # <[IDC]Dragon> soldering? 23.06.43 # <[IDC]Dragon> it's a plug. 23.06.49 # Yes, but I have to get the top board off again. 23.06.55 # <[IDC]Dragon> ah 23.07.16 # Do the contact points on the frame act as grounds? 23.07.40 # or can I test it while it's disassembled... 23.07.44 # <[IDC]Dragon> you understood that you have to pull that frame outwards, by ~2mm, to release the flexstrip? 23.08.34 # I removed the old LCD (with its plastic frame) first, and when I put in the new LCD, I popped up both sides of the plug. 23.08.35 # <[IDC]Dragon> and after inserting the new one, push it back it to tighten the fit? 23.08.59 # <[IDC]Dragon> "popped up"? 23.09.12 # Out? 23.09.20 # The little clasps on either side that lock the strip in place. 23.09.35 # <[IDC]Dragon> and you re-seated that? 23.09.43 # Yes. 23.10.06 # <[IDC]Dragon> be sure it's really all the way in, use a tweezer to apply some force. 23.10.13 # I will on my second attempt now, yes. 23.10.26 # Are the solder points on the frame important, or can I leave them detached while I check my results? 23.10.39 # <[IDC]Dragon> which model? 23.10.57 # Recorder 10g 23.11.09 # <[IDC]Dragon> should work without 23.11.16 # interface board 2.1b 23.11.23 # <[IDC]Dragon> I have mine loose all the time 23.11.34 # Okay, good. 23.11.47 # Any advice about how to test the batteries without putting too much stress on the ends? 23.11.52 # <[IDC]Dragon> and I had the LCD out while doing the UART boot mod 23.12.18 # bye all 23.12.24 Quit midknight2k3 (Remote closed the connection) 23.12.34 Ctcp Ignored 1 channel CTCP requests in 0 seconds at the last flood 23.12.34 # * pvh has had a really hard time with the solder points connecting to MP3 Front. The microphone keeps getting it the way of the desoldering bulb. 23.12.39 # <[IDC]Dragon> you can try without batteries and HD, plugged to the charger 23.13.03 # Nice. Should I get LCD output? 23.13.06 # <[IDC]Dragon> you'll get as far as an ATA error on screen 23.13.17 # That's excellent. 23.13.30 # * pvh opens a window to let the flux fumes out. 23.13.57 Quit Flo ("Ich benutze das -= [ Weisseradler-Script ] =-. Das kannst d") 23.14.21 # <[IDC]Dragon> amiconn? 23.15.06 # Yup? 23.15.57 # <[IDC]Dragon> Can you or the log tell Linus that remove() can't delete empty directories, because it uses open() which explicitely checks for dirs and returns -8 if so. 23.16.27 # <[IDC]Dragon> Otherwise, my recursive tree deletion works. 23.17.16 # <[IDC]Dragon> I have it implemented in the On+Play menu, high-level code and the tree walk is implemented. 23.17.41 # What is recursive deletion good for? 23.18.26 # <[IDC]Dragon> deleting a non-empty directory 23.18.51 # <[IDC]Dragon> e.g. some album or artist you don't like 23.19.27 # <[IDC]Dragon> gotta go 23.19.32 Quit [IDC]Dragon () 23.30.27 # Erk... Is anyone else around who might be able to advise me? 23.46.38 *** Saving seen data "./dancer.seen" 23.47.01 Join wake [0] (~wake@69.158.11.218) 23.50.25 Quit wake (Client Quit)