Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2004-07-31

00:01:20midkthere you go
00:01:51midknow we have to fix up the screendump function
00:02:33midkget to the very top
00:02:40midkof the screendump function
00:02:52zeekoeok
00:03:21midkadd "rb->" before write, creat and close
00:03:29zeekoei never trust windows ftp.exe again :P
00:04:04midkhaha
00:04:13midkalmost there.
00:04:34zeekoenice filehandling
00:04:42midkchange "extern unsigned char blabla" to "unsigned char blabla"
00:04:48midk9remove the extern)
00:04:56midkshould compile
00:05:06zeekoewhat does extern mean?
00:05:16midkexternal i believe.
00:05:18midki never use it
00:05:32zeekoewhy should things be external?
00:05:39zeekoeand why does it generate an error here?
00:06:06midkcouldn't say
00:06:18zeekoeok
00:06:19midkdoes it compile yet?
00:06:20zeekoeyay
00:06:26zeekoeit generates empty screendump
00:06:29zeekoe+s
00:07:11zeekoeshouldnt it print something?
00:07:16zeekoeon the screen?
00:08:10midkwe'll get to that
00:08:12midkpossibly not.
00:08:41midktry it on the target
00:08:44midkor .. i will.
00:08:56midkfirst let's fix up a few things
00:11:35midkzeekoe?
00:11:59 Join LinusN [200] (~linus@labb.contactor.se)
00:12:20zeekoesame result on the real thing :)
00:12:22zeekoe:(
00:12:23LinusNzeekoe: where do you get the framebuffer from?
00:12:28zeekoedunno
00:12:32zeekoejust copypasted the thing :P
00:12:37LinusNrb->lcd_framebuffer
00:13:04zeekoehm
00:13:13zeekoeand how about this: unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];
00:13:16zeekoecan i delete that?
00:13:41LinusNabsolutely
00:15:57zeekoegcc doesnt like it
00:16:15LinusNshow me
00:16:34zeekoe../../apps/plugins/etchasketch.c:61: error: subscripted value is neither array n
00:16:34zeekoeor pointer
00:16:42LinusNno, the code
00:16:44zeekoe61: buf[i++] = rb->lcd_framebuffer[y][x];
00:17:18zeekoehttp://home.student.utwente.nl/r.teune/etchasketch.c
00:18:09LinusNthe lcd_framebuffer pointer in the plugin api is not a twodimensional array
00:18:17zeekoehm
00:18:18zeekoeokay
00:19:26zeekoeis there another way to use it?
00:19:31LinusNbuf[i++] = rb->framebuffer[y*112 + x];
00:20:12zeekoewhee :P
00:20:22zeekoethanks, midk and linus :)
00:20:43zeekoewhat's the "extern" thingy for btw?
00:21:05LinusNto access external symbols, declared in other files
00:21:10zeekoeokay
00:21:28LinusNlcd_framebuffer is declared in lcd-recorder.c
00:21:44zeekoeso if i wanted to use it, i had to include lcd-recorder.c?
00:22:27LinusNno, you declare lcd_framebuffer as extern, just like the declaration you just removed, and midk told you to remove "extern" from
00:22:45LinusNextern unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];
00:22:51zeekoebut that doesnt work
00:23:15LinusNbut that doesn't work from a plugin, so the plugin API gives you a pointer to it
00:23:24LinusNrb->lcd_framebuffer
00:23:25zeekoeokay, that makes sence
00:23:27zeekoesnese
00:23:29zeekoesense
00:23:48LinusNplugins have no access to the symbols in the rockbox code
00:24:07LinusNso everything has to be exported via the plugin API
00:24:25LinusNwhich is a huge struct with pointers to functions and data
00:24:48zeekoeyeah, i see it
00:25:50midkwhat? did i do something wrong?
00:29:46 Quit dbob (Read error: 110 (Connection timed out))
00:30:10zeekoemidk: it's not the first time :P
00:30:30zeekoebut i should say nothing i guess, i do things wrong all the time
00:31:23midkdon't forget to change the output of the dump from "dump xx-xx-xx" to "etch xx-xx-xx"
00:31:55zeekoeshh
00:32:01zeekoei'm etching my name
00:35:46zeekoechanged
00:36:16midkpossibly upload so i can try the moving without drawing
00:36:21midk?
00:36:31zeekoedid it
00:37:20***Saving seen data "./dancer.seen"
00:37:48zeekoehttp://home.student.utwente.nl/r.teune/etch/
00:37:55zeekoeOpenDir (TM) (R)
00:38:31zeekoezeekoe->go_to_bed();
00:38:42zeekoehappy trying
00:39:55midkty
00:39:57midknite
00:40:13zeekoenite
00:40:17 Quit zeekoe ("quit...")
00:45:18midkoops
00:45:23midklooks like x and y got a bit mixed up :)
00:46:27 Join zeekoe [0] (~zeekoe@ip51cc69f6.adsl-surfen.hetnet.nl)
00:46:33zeekoewho mixed up x and y?
00:46:35LinusNyou
00:46:42zeekoenah
00:46:46zeekoethe rockbox api did :P
00:46:47midki am fixing it.
00:47:11zeekoewhat did i do wrong?
00:47:12zeekoewhoops
00:47:23LinusNup/down changes x, left/right changes y
00:47:27zeekoei always think of y being left-to-right
00:47:31*zeekoe stupid
00:47:53midki r t3h fixed it
00:48:03zeekoek3w1
00:48:21zeekoethe Ti-83 had a weird api... for Pt-On it used x and y, for Pxl-On it used y and x
00:48:48midkyes, i've done the ti-83 coding
00:48:50zeekoePt-On used the graph screen (-10..10, or whichever boundaries defined)
00:48:54midktheir x and y is messed up
00:48:58zeekoeyep
00:49:04zeekoeit still confuses me :)
00:49:07zeekoeanyway
00:49:23*zeekoe ->bed
00:49:30midknitey
00:49:37zeekoenite again
00:49:39 Quit zeekoe (Client Quit)
01:00
01:10:37midkLinusN, is there any type of "BUTTON_ANY" available?
01:10:39midkthere should be.
01:15:23 Join Guest [0] (jirc@1Cust49.tnt16.chi5.da.uu.net)
01:16:07 Part LinusN
01:17:05Guestok, i got a question and i dont know if anyone here can help me
01:17:05midkok bye :)
01:17:14midkask it
01:17:45Guesti have a jukebox recorder 15 and it ussually cannot read the harddrive
01:18:39Guestand i do not have the rockbox firmware on it, could it fix this problem
01:18:45Guestor is the machine shot
01:19:36midkhard to say
01:19:37scott666_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:42midk"usually cannot read the harddrive"?
01:19:43Guestyeah
01:19:46midkscott666, take over.
01:19:53scott666oh, i wil
01:19:55scott666*will
01:19:56midkas always.
01:19:56midk:D
01:19:57scott666:-p
01:20:22Guestok,, most of the time it comes up with this error "read access error! can't read from hardrive"
01:20:50scott666hmm
01:20:55Guestbut 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:58scott666can you access it from usb?
01:21:00midkscott says that as if he is confused
01:21:05midkcan he maybe not solve this case?
01:21:07Guestno
01:21:32scott666what if the charger is connected?
01:21:37scott666any difference?
01:21:46scott666it could be a problem with the battery contacts
01:22:05Guestwell, the charger has problems in itself, but it will charge and bring upo the error
01:22:37scott666have you tried new batteries?
01:22:47Guestto 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:54Guestyeah, no difference
01:23:00scott666hmmm
01:23:11scott666well its definitely a hardware problem; rockbox wont help
01:23:23Guesti dont really care if it get fixed because i just bought a iriver
01:23:29Guestit is just really annoying
01:23:39scott666can you use a soldering iron?
01:23:45Guestyeah
01:24:32scott666you should open it up and look at the battery contacts, and re-solder them in necessary
01:24:38Guestok
01:24:44scott666theres a good picture showing this somewhere on the rockbox site
01:24:51Guestyeah, i saw that
01:25:05Guestbut i wanted to make sure it was hardware before i ripped it open
01:25:15scott666ok
01:25:20scott666yeah, get ripping ;-)
01:25:22Guestnot that it really matters because it is out of waranty
01:25:27 Join dstar5 [0] (lee@IC104.library.oregonstate.edu)
01:25:36Guestsounds like a plan
01:26:13Guestare you guys working on getting firmware for the irivers?
01:27:52scott666not us
01:27:58scott666but there is a group working on it
01:28:10scott666search the mailing list archive for iriver
01:28:16scott666or google
01:28:24Guestok, will do
01:30:24Guestany 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:06dstar5scott666, have any rockbox videos to share with me? :)
01:34:14dstar5or anyone?
01:34:21 Join Treyqae [0] (~Treyqae@adsl-8-45-253.mia.bellsouth.net)
01:38:35 Part Treyqae
01:57:13dstar5my archos hard disk is almost full, and i still have a lot of music i have yet to transfer :(
02:00
02:03:41 Join amiconn_ [0] (~jens@pD95D101A.dip.t-dialin.net)
02:08:17dstar5amiconn / amiconn_ have any videos?
02:08:20midkLinusN, 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:07dstar5maybe he thinks it is non important, and he does not want to come in
02:10:23dstar5because 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:31dstar5why 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:00
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:00
04:37:24***Saving seen data "./dancer.seen"
04:54:36 Quit NibbIer (Read error: 104 (Connection reset by peer))
05:00
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:00
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:00
07:43:57 Quit midk (zelazny.freenode.net irc.freenode.net)
07:43:57NSplitzelazny.freenode.net irc.freenode.net
07:43:57 Quit Hes (zelazny.freenode.net irc.freenode.net)
07:47:54NHealzelazny.freenode.net irc.freenode.net
07:47:54NJoinmidk [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:05midkbrb
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:00NJoinze [20] (psyco@adsl-63-205-40-35.dsl.lsan03.pacbell.net)
07:58:32 Quit Hadaka (zelazny.freenode.net irc.freenode.net)
08:00
08:00:52 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de)
08:00:52NJoinHes [0] (~hessu@he.fi)
08:00:52 Quit Hes (zelazny.freenode.net irc.freenode.net)
08:02:34NJoindwihno [0] (~dw@81.8.224.89)
08:07:04NJoinHes [0] (~hessu@he.fi)
08:07:43NJoinHadaka [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:44NJoinHadaka [0] (naked@naked.iki.fi)
08:12:06NJoinHes [0] (~hessu@he.fi)
08:15:57 Quit Hes (zelazny.freenode.net irc.freenode.net)
08:16:53NJoinHes [0] (~hessu@he.fi)
08:21:18 Quit Hes (zelazny.freenode.net irc.freenode.net)
08:21:18NSplitzelazny.freenode.net irc.freenode.net
08:21:52NHealzelazny.freenode.net irc.freenode.net
08:21:52NJoinHes [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:36NJoinHes [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:31NJoinHes [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:39NJoinHadaka [0] (naked@naked.iki.fi)
08:50:45 Quit Hadaka (zelazny.freenode.net irc.freenode.net)
08:54:23NJoinmbr [0] (~mb@stz-softwaretechnik.com)
08:54:23NJoinwebmind [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:23NJoinelinenbe [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:00
09:02:38NJoinHadaka [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:18madmananyone here?
09:35:58midkme.
09:36:59madmancool
09:41:29 Quit madman ()
09:59:20 Quit Nibbler (Read error: 104 (Connection reset by peer))
10:00
10:07:13 Part amiconn
10:37:32***Saving seen data "./dancer.seen"
11:00
11:42:13 Join Nibbler [0] (~nibbler@port-212-202-78-112.dynamic.qsc.de)
12:00
12:19:50 Quit Nibbler (Read error: 104 (Connection reset by peer))
12:37:35***Saving seen data "./dancer.seen"
13:00
13:43:46 Join AciD [0] (~acid@longchamp44-1-82-67-133-87.fbx.proxad.net)
14:00
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:20midk|sleepnite nite
14:43:38webmindnite
15:00
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:00
16:37:42***Saving seen data "./dancer.seen"
16:52:11 Join dstar5 [0] (Lee@ACC25350.ipt.aol.com)
17:00
17:04:31dstar5is anyone awake?
17:06:23 Join zeekoe [0] (~zeekoe@ip51cc69f6.adsl-surfen.hetnet.nl)
17:06:29zeekoeof course i am
17:06:33zeekoeit's 17:05
17:06:36zeekoe06
17:07:40zeekoedstar5: or am i not the right person to be awake
17:07:58dstar5zeekoe: got any rockbox videos?
17:08:31zeekoeyou asked that before, i saw :)
17:08:35zeekoeand i have one
17:08:38zeekoeor two
17:08:39dstar5but do you?
17:08:45dstar5i really ant some morfe
17:08:52zeekoe?
17:08:55dstar5i have watch that futurama like 20 times lol
17:08:55zeekoeok
17:08:59zeekoe:P
17:09:04zeekoewhat's futurama?
17:09:33dstar5a TV show
17:09:41zeekoei know
17:09:49zeekoeall the american nerds seem to watch it
17:09:50zeekoe:P
17:09:59dstar5it 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:16zeekoemidk|sleep?
17:50:15zeekoedid you do anything about etchasketch yet?
18:00
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
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:00
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:00
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:00
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"

Previous day | Next day