--- Log for 31.07.104 Server: zelazny.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16p1 Started: 2 days and 21 hours ago 00.01.20 # there you go 00.01.51 # now we have to fix up the screendump function 00.02.33 # get to the very top 00.02.40 # of the screendump function 00.02.52 # ok 00.03.21 # add "rb->" before write, creat and close 00.03.29 # i never trust windows ftp.exe again :P 00.04.04 # haha 00.04.13 # almost there. 00.04.34 # nice filehandling 00.04.42 # change "extern unsigned char blabla" to "unsigned char blabla" 00.04.48 # 9remove the extern) 00.04.56 # should compile 00.05.06 # what does extern mean? 00.05.16 # external i believe. 00.05.18 # i never use it 00.05.32 # why should things be external? 00.05.39 # and why does it generate an error here? 00.06.06 # couldn't say 00.06.18 # ok 00.06.19 # does it compile yet? 00.06.20 # yay 00.06.26 # it generates empty screendump 00.06.29 # +s 00.07.11 # shouldnt it print something? 00.07.16 # on the screen? 00.08.10 # we'll get to that 00.08.12 # possibly not. 00.08.41 # try it on the target 00.08.44 # or .. i will. 00.08.56 # first let's fix up a few things 00.11.35 # zeekoe? 00.11.59 Join LinusN [200] (~linus@labb.contactor.se) 00.12.20 # same result on the real thing :) 00.12.22 # :( 00.12.23 # zeekoe: where do you get the framebuffer from? 00.12.28 # dunno 00.12.32 # just copypasted the thing :P 00.12.37 # rb->lcd_framebuffer 00.13.04 # hm 00.13.13 # and how about this: unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 00.13.16 # can i delete that? 00.13.41 # absolutely 00.15.57 # gcc doesnt like it 00.16.15 # show me 00.16.34 # ../../apps/plugins/etchasketch.c:61: error: subscripted value is neither array n 00.16.34 # or pointer 00.16.42 # no, the code 00.16.44 # 61: buf[i++] = rb->lcd_framebuffer[y][x]; 00.17.18 # http://home.student.utwente.nl/r.teune/etchasketch.c 00.18.09 # the lcd_framebuffer pointer in the plugin api is not a twodimensional array 00.18.17 # hm 00.18.18 # okay 00.19.26 # is there another way to use it? 00.19.31 # buf[i++] = rb->framebuffer[y*112 + x]; 00.20.12 # whee :P 00.20.22 # thanks, midk and linus :) 00.20.43 # what's the "extern" thingy for btw? 00.21.05 # to access external symbols, declared in other files 00.21.10 # okay 00.21.28 # lcd_framebuffer is declared in lcd-recorder.c 00.21.44 # so if i wanted to use it, i had to include lcd-recorder.c? 00.22.27 # no, you declare lcd_framebuffer as extern, just like the declaration you just removed, and midk told you to remove "extern" from 00.22.45 # extern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 00.22.51 # but that doesnt work 00.23.15 # but that doesn't work from a plugin, so the plugin API gives you a pointer to it 00.23.24 # rb->lcd_framebuffer 00.23.25 # okay, that makes sence 00.23.27 # snese 00.23.29 # sense 00.23.48 # plugins have no access to the symbols in the rockbox code 00.24.07 # so everything has to be exported via the plugin API 00.24.25 # which is a huge struct with pointers to functions and data 00.24.48 # yeah, i see it 00.25.50 # what? did i do something wrong? 00.29.46 Quit dbob (Read error: 110 (Connection timed out)) 00.30.10 # midk: it's not the first time :P 00.30.30 # but i should say nothing i guess, i do things wrong all the time 00.31.23 # don't forget to change the output of the dump from "dump xx-xx-xx" to "etch xx-xx-xx" 00.31.55 # shh 00.32.01 # i'm etching my name 00.35.46 # changed 00.36.16 # possibly upload so i can try the moving without drawing 00.36.21 # ? 00.36.31 # did it 00.37.20 *** Saving seen data "./dancer.seen" 00.37.48 # http://home.student.utwente.nl/r.teune/etch/ 00.37.55 # OpenDir (TM) (R) 00.38.31 # zeekoe->go_to_bed(); 00.38.42 # happy trying 00.39.55 # ty 00.39.57 # nite 00.40.13 # nite 00.40.17 Quit zeekoe ("quit...") 00.45.18 # oops 00.45.23 # looks like x and y got a bit mixed up :) 00.46.27 Join zeekoe [0] (~zeekoe@ip51cc69f6.adsl-surfen.hetnet.nl) 00.46.33 # who mixed up x and y? 00.46.35 # you 00.46.42 # nah 00.46.46 # the rockbox api did :P 00.46.47 # i am fixing it. 00.47.11 # what did i do wrong? 00.47.12 # whoops 00.47.23 # up/down changes x, left/right changes y 00.47.27 # i always think of y being left-to-right 00.47.31 # * zeekoe stupid 00.47.53 # i r t3h fixed it 00.48.03 # k3w1 00.48.21 # the Ti-83 had a weird api... for Pt-On it used x and y, for Pxl-On it used y and x 00.48.48 # yes, i've done the ti-83 coding 00.48.50 # Pt-On used the graph screen (-10..10, or whichever boundaries defined) 00.48.54 # their x and y is messed up 00.48.58 # yep 00.49.04 # it still confuses me :) 00.49.07 # anyway 00.49.23 # * zeekoe ->bed 00.49.30 # nitey 00.49.37 # nite again 00.49.39 Quit zeekoe (Client Quit) 01.10.37 # LinusN, is there any type of "BUTTON_ANY" available? 01.10.39 # there should be. 01.15.23 Join Guest [0] (jirc@1Cust49.tnt16.chi5.da.uu.net) 01.16.07 Part LinusN 01.17.05 # ok, i got a question and i dont know if anyone here can help me 01.17.05 # ok bye :) 01.17.14 # ask it 01.17.45 # i have a jukebox recorder 15 and it ussually cannot read the harddrive 01.18.39 # and i do not have the rockbox firmware on it, could it fix this problem 01.18.45 # or is the machine shot 01.19.36 # hard to say 01.19.37 # does it give you an error? 01.19.41 Nick scott666_ is now known as scott666 (~scott666@c-24-245-58-48.mn.client2.attbi.com) 01.19.42 # "usually cannot read the harddrive"? 01.19.43 # yeah 01.19.46 # scott666, take over. 01.19.53 # oh, i wil 01.19.55 # *will 01.19.56 # as always. 01.19.56 # :D 01.19.57 # :-p 01.20.22 # ok,, most of the time it comes up with this error "read access error! can't read from hardrive" 01.20.50 # hmm 01.20.55 # but if i dont try to turn it on for a while, it will come on for a little bit, then stop reading from the harddrive again 01.20.58 # can you access it from usb? 01.21.00 # scott says that as if he is confused 01.21.05 # can he maybe not solve this case? 01.21.07 # no 01.21.32 # what if the charger is connected? 01.21.37 # any difference? 01.21.46 # it could be a problem with the battery contacts 01.22.05 # well, the charger has problems in itself, but it will charge and bring upo the error 01.22.37 # have you tried new batteries? 01.22.47 # to get it to charge though, i have to lean it against a book or stack of cds so the wire is in the right position 01.22.54 # yeah, no difference 01.23.00 # hmmm 01.23.11 # well its definitely a hardware problem; rockbox wont help 01.23.23 # i dont really care if it get fixed because i just bought a iriver 01.23.29 # it is just really annoying 01.23.39 # can you use a soldering iron? 01.23.45 # yeah 01.24.32 # you should open it up and look at the battery contacts, and re-solder them in necessary 01.24.38 # ok 01.24.44 # theres a good picture showing this somewhere on the rockbox site 01.24.51 # yeah, i saw that 01.25.05 # but i wanted to make sure it was hardware before i ripped it open 01.25.15 # ok 01.25.20 # yeah, get ripping ;-) 01.25.22 # not that it really matters because it is out of waranty 01.25.27 Join dstar5 [0] (lee@IC104.library.oregonstate.edu) 01.25.36 # sounds like a plan 01.26.13 # are you guys working on getting firmware for the irivers? 01.27.52 # not us 01.27.58 # but there is a group working on it 01.28.10 # search the mailing list archive for iriver 01.28.16 # or google 01.28.24 # ok, will do 01.30.24 # any suggestions on the kind of batteries i should use 01.31.10 Quit Guest ("Leaving") 01.31.55 Join Smooth [0] (909510b8@ACBE51B3.ipt.aol.com) 01.33.06 # scott666, have any rockbox videos to share with me? :) 01.34.14 # or anyone? 01.34.21 Join Treyqae [0] (~Treyqae@adsl-8-45-253.mia.bellsouth.net) 01.38.35 Part Treyqae 01.57.13 # my archos hard disk is almost full, and i still have a lot of music i have yet to transfer :( 02.03.41 Join amiconn_ [0] (~jens@pD95D101A.dip.t-dialin.net) 02.08.17 # amiconn / amiconn_ have any videos? 02.08.20 # LinusN, if you're around and read this could you pop in for a moment? i'd like to ask about the possibility of a save_bitmap feature 02.10.07 # maybe he thinks it is non important, and he does not want to come in 02.10.23 # because it would be a waste of his valuable time 02.18.59 Join jakesir [0] (jakesir@pool-141-157-77-166.balt.east.verizon.net) 02.20.31 # why do my transfers from servers in sweden only have a top speed of 50 kbps? 02.22.10 Quit jakesir (Client Quit) 02.22.12 Quit amiconn (Read error: 110 (Connection timed out)) 02.22.12 Nick amiconn_ is now known as amiconn (~jens@pD95D101A.dip.t-dialin.net) 02.36.08 Quit dstar5 ("Leaving") 02.37.21 *** Saving seen data "./dancer.seen" 02.54.20 Quit Smooth (Read error: 110 (Connection timed out)) 03.03.59 Quit midk (Remote closed the connection) 03.04.06 Join midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 03.21.44 Quit midk ("Leaving") 03.23.29 Quit edx () 03.24.45 Join midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 03.26.33 Quit midk (Read error: 104 (Connection reset by peer)) 03.27.36 Join midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 04.37.24 *** Saving seen data "./dancer.seen" 04.54.36 Quit NibbIer (Read error: 104 (Connection reset by peer)) 05.15.29 Join ill [0] (~illninio@host39.200-43-208.telecom.net.ar) 05.16.46 Part ill 05.26.46 Quit midk ("just STOP it arspy") 05.28.34 Join midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 05.42.55 Quit AciD (Remote closed the connection) 05.59.38 Join NibbIer [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 06.16.43 Quit midk ("Leaving") 06.16.43 Quit NibbIer (Read error: 104 (Connection reset by peer)) 06.19.07 Join midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 06.37.26 *** Saving seen data "./dancer.seen" 07.43.57 Quit midk (zelazny.freenode.net irc.freenode.net) 07.43.57 NSplit zelazny.freenode.net irc.freenode.net 07.43.57 Quit Hes (zelazny.freenode.net irc.freenode.net) 07.47.54 NHeal zelazny.freenode.net irc.freenode.net 07.47.54 NJoin midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 07.49.09 Quit ze (zelazny.freenode.net irc.freenode.net) 07.49.09 Quit dwihno (zelazny.freenode.net irc.freenode.net) 07.54.05 # brb 07.54.05 Quit midk ("just STOP it arspy") 07.54.59 Join midk [0] (~midk@c66-235-14-120.sea2.cablespeed.com) 07.56.00 NJoin ze [20] (psyco@adsl-63-205-40-35.dsl.lsan03.pacbell.net) 07.58.32 Quit Hadaka (zelazny.freenode.net irc.freenode.net) 08.00.52 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 08.00.52 NJoin Hes [0] (~hessu@he.fi) 08.00.52 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.02.34 NJoin dwihno [0] (~dw@81.8.224.89) 08.07.04 NJoin Hes [0] (~hessu@he.fi) 08.07.43 NJoin Hadaka [0] (naked@naked.iki.fi) 08.10.02 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.10.24 Quit Hadaka (zelazny.freenode.net irc.freenode.net) 08.10.44 NJoin Hadaka [0] (naked@naked.iki.fi) 08.12.06 NJoin Hes [0] (~hessu@he.fi) 08.15.57 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.16.53 NJoin Hes [0] (~hessu@he.fi) 08.21.18 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.21.18 NSplit zelazny.freenode.net irc.freenode.net 08.21.52 NHeal zelazny.freenode.net irc.freenode.net 08.21.52 NJoin Hes [0] (~hessu@he.fi) 08.22.49 Quit elinenbe (Read error: 104 (Connection reset by peer)) 08.23.52 Join elinenbe [0] (trilluser@207-237-224-177.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com) 08.25.22 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.26.36 NJoin Hes [0] (~hessu@he.fi) 08.27.29 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.37.28 *** Saving seen data "./dancer.seen" 08.37.31 NJoin Hes [0] (~hessu@he.fi) 08.40.52 Quit amiconn (Read error: 113 (No route to host)) 08.44.59 Quit Hes (zelazny.freenode.net irc.freenode.net) 08.44.59 Quit elinenbe (zelazny.freenode.net irc.freenode.net) 08.44.59 Quit Hadaka (zelazny.freenode.net irc.freenode.net) 08.44.59 Quit scott666 (zelazny.freenode.net irc.freenode.net) 08.44.59 Quit Ka_ (zelazny.freenode.net irc.freenode.net) 08.44.59 Quit webmind (zelazny.freenode.net irc.freenode.net) 08.44.59 Quit mbr (zelazny.freenode.net irc.freenode.net) 08.47.39 NJoin Hadaka [0] (naked@naked.iki.fi) 08.50.45 Quit Hadaka (zelazny.freenode.net irc.freenode.net) 08.54.23 NJoin mbr [0] (~mb@stz-softwaretechnik.com) 08.54.23 NJoin webmind [0] (~random@217-195-236-172.dsl.esined.net) 08.54.23 Join Hes_ [0] (~hessu@he.fi) 08.54.23 Join amiconn [0] (~jens@pD95D101A.dip.t-dialin.net) 08.54.23 NJoin elinenbe [0] (trilluser@207-237-224-177.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com) 08.57.42 Join Ka_ [0] (~tkirk@68.55.105.53) 09.02.38 NJoin Hadaka [0] (naked@naked.iki.fi) 09.24.09 Join edx [0] (edx@p548797D0.dip.t-dialin.net) 09.29.27 Join madman [0] (~madmangor@adsl-69-109-57-73.dsl.irvnca.pacbell.net) 09.35.18 # anyone here? 09.35.58 # me. 09.36.59 # cool 09.41.29 Quit madman () 09.59.20 Quit Nibbler (Read error: 104 (Connection reset by peer)) 10.07.13 Part amiconn 10.37.32 *** Saving seen data "./dancer.seen" 11.42.13 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 12.19.50 Quit Nibbler (Read error: 104 (Connection reset by peer)) 12.37.35 *** Saving seen data "./dancer.seen" 13.43.46 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 14.04.34 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 14.37.38 *** No seen item changed, no save performed. 14.39.16 Nick midk is now known as midk|sleep (~midk@c66-235-14-120.sea2.cablespeed.com) 14.39.20 # nite nite 14.43.38 # nite 15.51.46 Quit Nibbler (Read error: 104 (Connection reset by peer)) 15.58.59 Nick Hes_ is now known as Hes (~hessu@he.fi) 16.37.42 *** Saving seen data "./dancer.seen" 16.52.11 Join dstar5 [0] (Lee@ACC25350.ipt.aol.com) 17.04.31 # is anyone awake? 17.06.23 Join zeekoe [0] (~zeekoe@ip51cc69f6.adsl-surfen.hetnet.nl) 17.06.29 # of course i am 17.06.33 # it's 17:05 17.06.36 # 06 17.07.40 # dstar5: or am i not the right person to be awake 17.07.58 # zeekoe: got any rockbox videos? 17.08.31 # you asked that before, i saw :) 17.08.35 # and i have one 17.08.38 # or two 17.08.39 # but do you? 17.08.45 # i really ant some morfe 17.08.52 # ? 17.08.55 # i have watch that futurama like 20 times lol 17.08.55 # ok 17.08.59 # :P 17.09.04 # what's futurama? 17.09.33 # a TV show 17.09.41 # i know 17.09.49 # all the american nerds seem to watch it 17.09.50 # :P 17.09.59 # it is at rockbox.haxx.se/newvid 17.32.23 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 17.43.11 Join zeekoe_ [0] (~zeekoe@ip51cc69f6.adsl-surfen.hetnet.nl) 17.43.23 Quit zeekoe (Nick collision from services.) 17.43.41 Nick zeekoe_ is now known as zeekoe (~zeekoe@ip51cc69f6.adsl-surfen.hetnet.nl) 17.49.16 # midk|sleep? 17.50.15 # did you do anything about etchasketch yet? 18.05.38 Quit Nibbler (Read error: 104 (Connection reset by peer)) 18.08.18 Join AciD` [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 18.09.34 Quit AciD (Read error: 104 (Connection reset by peer)) 18.35.06 Join Lee_ [0] (Lee@ACC1FE9B.ipt.aol.com) 18.37.45 *** Saving seen data "./dancer.seen" 18.42.43 Join tpelliott [0] (telliott@208-251-255-120.res.evv.cable.sigecom.net) 18.44.11 Quit dstar5 (Read error: 60 (Operation timed out)) 18.50.27 Nick Lee_ is now known as dstar5 (Lee@ACC1FE9B.ipt.aol.com) 18.59.22 Join Lee_ [0] (Lee@ACC29314.ipt.aol.com) 19.00.31 Quit dstar5 (Nick collision from services.) 19.00.51 Nick Lee_ is now known as dstar5 (Lee@ACC29314.ipt.aol.com) 19.38.01 Quit zeekoe ("quit...") 19.48.49 Quit dstar5 ("Leaving") 19.51.01 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 20.25.58 Quit AciD` (Read error: 60 (Operation timed out)) 20.25.58 Quit Nibbler (Read error: 104 (Connection reset by peer)) 20.37.48 *** Saving seen data "./dancer.seen" 20.57.31 Join scott666_ [0] (~scott666@c-24-245-58-48.mn.client2.attbi.com) 20.58.28 Join madman [0] (~madmangor@adsl-69-109-57-73.dsl.irvnca.pacbell.net) 21.19.24 Nick midk|sleep is now known as midk (~midk@c66-235-14-120.sea2.cablespeed.com) 21.20.01 Part tpelliott 21.23.12 Join Treyqae [0] (~Treyqae@adsl-8-45-253.mia.bellsouth.net) 21.26.11 Part Treyqae 21.37.16 Quit scott666_ (Read error: 110 (Connection timed out)) 21.39.58 Quit madman (Read error: 110 (Connection timed out)) 21.51.52 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de) 21.54.03 Join tpelliott [0] (telliott@208-251-255-120.res.evv.cable.sigecom.net) 22.04.50 Part tpelliott 22.17.40 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net) 22.23.27 Join scott666 [0] (~scott666@c-24-245-58-48.mn.client2.attbi.com) 22.31.17 Join jdeonarine [0] (~argh@66-74-204-211.san.rr.com) 22.37.49 *** Saving seen data "./dancer.seen"