--- Log for 08.12.112 Server: card.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16 Started: 3 days and 23 hours ago 00.02.46 # is ther any way to debug over usb? (gdb etc) 00.04.05 # I see an option to pipe logf over usb, but that's not quite as useful 00.04.45 *** Saving seen data "./dancer.seen" 00.06.53 Join brkfstsqd [0] (~quassel@ip68-224-121-213.lv.lv.cox.net) 00.08.33 Join wodz [0] (~wodz@89-76-32-53.dynamic.chello.pl) 00.13.27 # pamaury: Now I get this: http://pastie.org/5496291 00.15.11 Quit dfkt (Quit: -= SysReset 2.55=- Sic gorgiamus allos subjectatos nunc.) 00.16.54 Join dfkt [0] (~dfkt@unaffiliated/dfkt) 00.17.13 # pamaury: code which give this is on gerrit 00.18.15 # bertrik: it looks like the clip+ isn't getting GPIOA interrupts 00.19.18 # we need to figure out if the interrupt of the radio is connected at all to the main SoC, and if so, on what pin 00.20.12 # right. is there a good HD teardown somewhere? 00.20.35 # my first guess would be GPIO A4, like on the clip zip 00.21.31 # the clipzip has RDS support that way, yes 00.22.21 Join amayer [0] (~alex@72.25.51.135) 00.22.40 # is logf() inside an isr safe 00.23.29 # yes 00.30.38 # bertrik: what should I look at to find out? Can I log interrupts as they're generated? 00.38.02 Join dfkt_ [0] (dfkt@unaffiliated/dfkt) 00.39.48 Quit dfkt (Disconnected by services) 00.43.10 # pamaury: fixed 'endpoint xxx has invalid maxpacket 64' error 00.43.45 # the code is on gerrit if you will find time to look at. 00.43.54 # how bad is 40ms polling for battery life anyways? 00.44.22 # go figure 00.44.35 # but I'd say not that bad 00.50.24 Quit lebellium (Quit: ChatZilla 0.9.89 [Firefox 18.0/20121128060531]) 00.51.18 Quit wodz (Quit: Leaving) 00.51.45 Quit LjL (Ping timeout: 255 seconds) 00.54.06 Quit ender1 (Quit: sweater, n a garment worn by children when their mother is cold) 00.56.49 Join Gallomimia [0] (~Gallo@d154-20-247-171.bchsia.telus.net) 00.57.56 Quit Gallomimia (Client Quit) 01.18.51 Quit dfkt_ (Quit: -= SysReset 2.55=- Sic gorgiamus allos subjectatos nunc.) 01.42.32 Quit dan_a (Ping timeout: 240 seconds) 01.49.22 Quit bertrik (Ping timeout: 264 seconds) 01.55.24 # can I get a code review? http://gerrit.rockbox.org/r/#/c/369/ 02.04.46 *** Saving seen data "./dancer.seen" 02.12.51 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 02.18.44 Join kugel_ [0] (~kugel@141.45.176.104) 02.18.44 Quit kugel_ (Changing host) 02.18.44 Join kugel_ [0] (~kugel@rockbox/developer/kugel) 02.19.09 Quit mikroflops (Read error: Operation timed out) 02.19.26 Join mikroflops [0] (~yogurt@h-34-140.a238.priv.bahnhof.se) 02.19.45 Quit kugel (Read error: Connection reset by peer) 02.41.07 Quit Gallomimia (Quit: Gallomimia) 03.03.02 # I've just installed Git and built a ClipZip sim. I'd like to confirm the syntax for subimage Offset...does this look correct? %xd(Ara,1,3) as in 3 is the amount of the offset. 03.07.58 # %xd(Ara, [sub image offset]) 03.08.17 # wait(checking customwps) 03.10.26 # KiwiCam: your code looks correct but what are you trying to acheive? 03.12.44 # Say I have a bitmap 46 wide by 150 high. Asume 15 subimages. But, I'd like to switch depending upon a condition from say subimage 1 to 5, or 10. subimage 2 to 6 or 11. 03.15.30 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 03.16.58 # if you do: 03.17.00 # %xl(A,theimage.bmp,0,0,15) 03.17.02 # then you can call any sub image with its alpha-equivalent 03.17.04 # is a=1, b=2, z=26 03.17.06 # so if you wanted a condition that was either 1, 5, or 10 03.17.08 # %?mm<%xd(Aa)|%xd(Ae)|%xd(Aj)> 03.17.10 # that would give you sub image 1 or 5 or 10 depending on the repeat mode(see %mm) 03.17.12 # is this something like you are trying to do? 03.17.15 # or am i misunderstanding you? 03.17.19 # To make it easier. Just assume the bitmap is 15 high b say 5 wide. 3 segments of five, but 15 subimages. 03.18.16 # oh, so its a box, like: 03.18.18 # x x x 03.18.20 # x x x 03.18.22 DBUG Enqueued KICK amayer 03.18.22 # x x x 03.18.25 # x x x 03.18.26 *** Alert Mode level 1 03.18.26 # x x x 03.18.28 # is that what your saying? 03.18.31 # (where each x is an image) 03.18.54 # This is my test code: http://pastebin.com/TS0ygrUb 03.19.42 # do you have a copy of the image? 03.19.53 # Yes. You could look at it that way. 03.20.48 # It's just a bit of a visual while the theme is on pause. 03.21.29 # I'll upload it now... 03.22.53 # the offset is just a modifier for the sub image if you are using a condition. 03.22.55 # example: 03.22.57 # %xd(Ara, %mm, -1) would work because %mm returns an integer for the repeat mode 03.22.59 # but the images dont line up to the repeat mode they are off by 1 so the -1 modifys what %mm returns by -1 to align to the correct image 03.23.01 # im not sure you can do a grid like you have. 03.23.03 # im fairly certin that all your images have to be on top of each other. 03.23.05 # the offset isnt used in the way you are thinking. 03.23.20 # Darn Multiupload is down. What's a quick upload site that comes to mind? 03.23.32 Quit pamaury (Ping timeout: 240 seconds) 03.23.56 Quit Belzebub (Ping timeout: 250 seconds) 03.24.14 # hmm... not sure i usually use UbuntuOne and just make it public 03.24.16 # do you have a drop box or something? 03.24.41 # Owncloud...haven't used it yet.... 03.25.04 # if your image is 3 rows of 5 images i dont think it will work with the them engine 03.25.33 # it needs to be 1 row of 15 images then it will work 03.26.07 # then you can do %xd(Ara,1) or %xd(Ara,5) or %xd(Ara,15) 03.28.27 *** Alert Mode OFF 03.30.49 # KiwiCam: did i answer your question? 03.31.04 # for more info you can look here: 03.31.06 # http://www.rockbox.org/wiki/CustomWPS#xd_45_Display_a_preloaded_40sub_41image 03.37.29 # https://my.cloud.tilaa.nl/owncloud/public.php?service=files&token=7fa94e5bbe1446389f06e55e9cc824faccffdae0&file=/aracibo150.bmp 03.38.55 # KiwiCam: so that is 3 rows of images beside each other? 03.39.07 # btw: what target is this for? 03.39.26 # Clip zip 03.40.43 # 46 doesnt divide evenly by 3 so im confused 03.41.58 # It's 46 wide. As it is at the moment you'll see a 5 x 46 image each time. 03.42.36 Quit Guest44874 (Quit: Hmmm...) 03.43.03 # yes that is how the theme engine would handle it. im confused where your getting the 15 from? 03.43.05 # that is only 5 images 03.43.37 # Originally what I really wanted was on pause to shift through that image one line at a time so that you see the full width of the image 46 and say 12 pixels high. Using %t(x.x) or %cS to shift the image 03.44.45 # 150 / 10 = 15 03.47.56 # Shifting through that image 1 line down at a time (but showing say 12) of those lines at a time, would be quite difficult). That's what I've wanted to do with this image originally. Then I started working on (which is when I came here) a simpler way to just cycle through 15 subimages instead of 1 at a time. 03.48.24 # :) Yes. This is crazy. But, it may be possible. 03.49.06 # comedy feature: some sort of FM-based file transfer for downloading new builds wirelessly 03.52.13 # KiwiCam: *totally confused* 03.52.15 # your just looking for a way to cycle throught the images while the player is paused? 03.52.21 # I expected that. 03.55.54 # Start again. With the code I posted, and the image. Can you get the offset to work? Assuming 15 subimages each 10 high. 03.58.27 # amayer: he wants that image to scroll across the screen while paused 03.59.49 Quit XavierGr (Ping timeout: 260 seconds) 03.59.53 # rmmh: 04.00.03 # rmmh: Yes 04.01.06 # i think that is what you are confused about. 04.01.08 # offset(in this case) doesnt mean the image moves as far as x,y on the screen 04.01.10 # offset adds to the subimage 04.01.12 # %xd(imageId,subImage,offset) 04.01.14 # so 04.01.16 # %xd(Ara,1,5) is the same as %xd(Ara,6) 04.01.17 # But upwards, 46 wide, you'll be able to see only a portion of the height, say 12 pixels at a time. It moves one line up (or down the Image) at a time. 04.02.43 # just for clarification: are you trying to move this image side to side on the screen or is it staying in the same spot? 04.02.45 # amayer: Yes. I agree. That's how I hit on 1,6, or 10;2,7, or 11 etc. 04.03.38 # Staying in the same spot, basically in the middle of the screen. Scrolling downward thourgh the image, but you;ll see it moving upwards on the Clip Zip. 04.04.50 *** Saving seen data "./dancer.seen" 04.05.14 # If I could achieve one line 1 x 46 scrolling thorugh that image, then I figured I could have some lines below that (using the offset) to show each of the next few lines down (depending upon the high of the viewport.) 04.06.45 # 150 pixels means I could show one row 150 times over 1 minute (60 seconds / 150 = 0.4 seocnds per image.) 04.07.43 # I might not even have to use the offset actually. 04.08.13 # Just %t(0.4) and choose the appropriate subimage number. 04.08.18 # in this case i dont think you will need the offset at all. i dont think you understand what the offset is in this case 04.08.32 # the code you just posted is what i think you want 04.09.18 # Agreed. 04.09.27 # all you need is sub image(0 through 14) 04.09.51 # *scratches head* not sure if it is 0 based or 1 based 04.10.21 Join pixelma_ [0] (pixelma@rockbox/staff/pixelma) 04.10.21 Quit pixelma (Disconnected by services) 04.10.22 Nick pixelma_ is now known as pixelma (pixelma@rockbox/staff/pixelma) 04.10.42 Join amiconn_ [0] (quassel@rockbox/developer/amiconn) 04.10.42 Quit amiconn (Disconnected by services) 04.10.46 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn) 04.11.59 # OK. I'll forget the offset. I liked that idea * * * I can imagine being able to shift sideways through a bitmap as well as downward. You could achieve some interesting affects. 04.12.38 # you cant shift sideways with %xd() only up and down 04.12.47 # Yes. 04.13.54 # so 04.13.56 # %t(.5)%xd(Ara,1);%xd(Ara,2);%xd(Ara,3);%xd(Ara,4);%xd(Ara,5); ... 04.13.58 # is what i think you are looking for 04.14.14 # Thanks. I'll just use a shed-load of %t's and see if I can severely slow down my Clip Zip :) 04.15.17 # if you still cant figure it out i would talk to [Saint]. his self proclaimed hobby is pushing the theme engine to its limits. 04.15.57 # Wouldn't the %t's following be 1 second with that example? 04.16.19 # ; 04.16.22 Quit brkfstsqd (Quit: lol) 04.19.05 # I think I'm good to go for now. Thanks for that. 04.19.07 # i think they should all be .5 but you may need a %t(0.5) before each section. 04.20.51 # anyone using voice activated recording triggers 04.25.22 Quit scorche (Disconnected by services) 04.25.28 Join scorche` [0] (~scorche@rockbox/administrator/scorche) 04.25.44 Quit Gallomimia (Quit: Gallomimia) 04.35.25 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 04.37.28 Join TheSphinX_ [0] (~briehl@p5B322098.dip.t-dialin.net) 04.37.49 Quit Gallomimia (Client Quit) 04.41.35 Quit TheSphinX^ (Ping timeout: 276 seconds) 05.07.27 Quit amayer (Ping timeout: 255 seconds) 05.19.01 Join amayer [0] (~alex@72.25.61.111) 05.22.28 # !!! getting some RDS data :D 05.25.08 Quit TheSeven (Disconnected by services) 05.25.19 Join [7] [0] (~quassel@rockbox/developer/TheSeven) 05.31.14 Join yuriks [0] (~yuriks@opentyrian/developer/yuriks) 05.32.28 Join eckoit [0] (~ryan@50.65.10.24) 05.49.57 Join akaWolf [0] (~akaWolf@unaffiliated/akawolf) 06.04.52 *** Saving seen data "./dancer.seen" 06.25.54 Quit prof_wolfff (Ping timeout: 240 seconds) 06.27.03 Nick scorche` is now known as scorche (~scorche@rockbox/administrator/scorche) 06.40.14 Part amayer 06.51.22 Quit Buglouse (Ping timeout: 245 seconds) 06.56.16 Join Buglouse [0] (~Buglouse@unaffiliated/Buglouse) 06.59.59 Quit KiwiCam (Remote host closed the connection) 07.25.24 Join pamaury [0] (~quassel@vit94-1-82-67-248-70.fbx.proxad.net) 07.25.24 Quit pamaury (Changing host) 07.25.24 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 07.42.21 Quit guymann (Quit: fug) 07.43.58 Join guymann [0] (~c@unaffiliated/guymann) 07.50.58 # I implemented RDS for the clip+ http://gerrit.rockbox.org/r/#/c/371/ 07.52.14 Quit yuriks (Ping timeout: 240 seconds) 07.57.08 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 08.04.55 *** Saving seen data "./dancer.seen" 08.16.37 Quit SuperBrainAK (Quit: pbly going to sleep /_\) 08.17.05 Join KiwiCam [0] (~quassel@101.98.163.139) 08.29.28 # great... now the mission is to find an actual active FM radio station 08.29.54 Join melmothX [0] (~melmoth@unaffiliated/melmothx) 08.30.36 Join theli_ua [0] (~theli@aromanov.la.net.ua) 08.35.41 # dongs, Haha 08.37.01 # dongs: my mission was to find an FM radio station that even bothered to follow the RDS standard 08.37.17 # apparently no one broadcasts song titles :( 08.38.49 # lulz 08.39.09 Quit froggyman (Ping timeout: 260 seconds) 08.39.17 # rmmh: now that youre done wiht rds, can you fix dB meter in recording menu? :) 08.39.17 # i cant believe noone noticed this since 2008. 08.41.28 # you mean its nonexistence? 08.44.06 # OK. How can I do this with only one viewport? http://pastebin.com/vGA6tqmN (the link is above for the aracibo150.bmp, but I'd be happy to paste it again. 08.46.04 Nick KiwiCam is now known as kiwicam (~quassel@101.98.163.139) 08.53.08 # rmmh: correct 08.53.20 Join kevku [0] (x@2001:470:28:773::3) 08.53.30 # i mean the data is obviosuly there since it draws the things., 09.02.32 # well that's interesting 09.02.40 # I crash instantly when I open that 09.07.59 # I suppose I could load up multiple versions of the %xl(same bitmap)... 09.11.42 # I've got it. 09.20.11 Join einhirn [0] (Miranda@bsod.vpn.tu-clausthal.de) 09.21.06 # how do I change the text size of "Show log file"? 09.35.49 Quit Gallomimia (Read error: No route to host) 09.36.26 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 09.56.58 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 10.01.59 Quit Gallomimia (Read error: Connection reset by peer) 10.03.12 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 10.04.49 # dongs: the simulator is pretty useful to me 10.04.57 *** Saving seen data "./dancer.seen" 10.07.15 Join bertrik [0] (~quassel@rockbox/developer/bertrik) 10.10.42 Join einhirn [0] (~Miranda@2001:638:605:4:ddda:4c6b:4ba9:32c5) 10.17.04 Nick kugel_ is now known as kugel (~kugel@rockbox/developer/kugel) 10.18.20 # bertrik: http://gerrit.rockbox.org/r/#/c/371/ 10.24.19 Quit Gallomimia (Quit: I am likely going to change locations) 10.29.19 # rmmh: ? 10.36.16 Join stripwax [0] (~Miranda@rockbox/developer/stripwax) 10.48.54 Quit freqmod (Ping timeout: 240 seconds) 10.55.55 Join lebellium [0] (~chatzilla@g229116005.adsl.alicedsl.de) 11.01.29 Quit stripwax (Read error: Connection reset by peer) 11.04.14 Join ender [0] (krneki@foo.eternallybored.org) 11.12.00 Join lasser [0] (~f@pD95700B9.dip0.t-ipconnect.de) 11.12.20 Join freqmod [0] (~quassel@cm-84.215.142.108.getinternet.no) 11.17.48 Join yuriks [0] (~yuriks@opentyrian/developer/yuriks) 11.21.26 Join dan_a [0] (~dan@217.23.173.156) 11.24.13 # Hi! Some weeks ago I asked for help in CF-modding a H320. ftr I finally managed it to work with a takeMS 16GB card with normal bootloader and current rockbox version. Works like a charm :-) 11.26.17 Join Rower85 [0] (husvagn@v-413-alfarv-90.bitnet.nu) 11.27.38 # for folks speaking german: http://lassowski.dyndns.org/BierderLOG/?e=67 11.27.47 Join stoffel [0] (~quassel@pD9E43F52.dip.t-dialin.net) 11.31.14 # rmmh: when using the Diagnostic Mode of OF it tells you SI4703? Or does it tell SI4702 although it is RDS compatible? 11.33.39 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 11.34.09 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 11.36.33 # I'm a bit confused since your patch says "sansa clip+: add RDS capability for SI4702 tuners" while Silicons Labs claim only SI4703 is RDS compatible 11.37.37 Join Wardo [0] (~Mirandaha@bpb01-1-88-162-4-186.fbx.proxad.net) 11.50.26 # bitbang that RDS 11.52.44 # hmm how am i supposed to setup IO for this 11.53.27 # OD, obviosuly but I'll have to change it as input or output before setting? 11.54.26 # o wat, wrong channel. disregard, i suck cocks 11.55.51 Part theli_ua ("Залишаю") 11.57.05 Quit jhMikeS (Ping timeout: 276 seconds) 12.03.57 Join y4n [0] (~y4n@unaffiliated/y4ndexx) 12.05.01 *** Saving seen data "./dancer.seen" 12.05.25 Quit the-kyle (Ping timeout: 255 seconds) 12.16.22 Join Topy44 [0] (kvirc@f048037083.adsl.alicedsl.de) 12.19.42 Quit Topy44|2 (Ping timeout: 265 seconds) 12.25.22 Join the-kyle [0] (~kyle@cpe-024-211-185-030.nc.res.rr.com) 12.30.21 # I see in the clip+ OF that there is code to clear an interrupt on GPIO A4, just like on the clip zip. This might be some driver leftover though, so it might not actually be used. 12.30.53 # (GPIO A4 is the fm tuner interrupt pin used for RDS on the clip zip) 12.31.29 # I might be able to test this on my own clip+, although I have one with an RDA tuner, not an Si47XX 12.32.18 Quit lasser () 12.33.26 Join Robin0800 [0] (~quassel@cpc1-brig15-2-0-cust755.3-3.cable.virginmedia.com) 12.36.08 Quit bluebrother (Ping timeout: 265 seconds) 12.36.13 Quit fs-bluebot (Ping timeout: 240 seconds) 12.37.57 Join bluebrother [0] (~dom@rockbox/developer/bluebrother) 12.37.58 Join fs-bluebot [0] (~fs-bluebo@g225254005.adsl.alicedsl.de) 12.38.30 Quit the-kyle (Ping timeout: 255 seconds) 12.39.14 Join the-kyle [0] (~kyle@195.60.76.223) 13.03.18 Join fzo [0] (~smb@vserver95.orion.retrosnub.co.uk) 13.04.30 Join prof_wolfff [0] (~prof_wolf@213.37.219.103.dyn.user.ono.com) 13.06.08 Join stoffel_ [0] (~quassel@pD9E4354D.dip.t-dialin.net) 13.07.17 Quit stoffel (Ping timeout: 276 seconds) 13.15.52 Join einhirn [0] (~Miranda@2001:638:605:4:ddda:4c6b:4ba9:32c5) 13.15.52 Quit einhirn (Client Quit) 13.31.48 Quit Robin0800 (Read error: Connection reset by peer) 13.37.49 Join ghallberg [0] (~gustaf@irc.jagochmittmoln.se) 13.40.07 # w/wc 13.40.10 Part ghallberg 14.01.09 Quit linuxstb (Quit: This computer has gone to sleep) 14.04.22 Join linuxstb [0] (~linuxstb@unaffiliated/linuxstb) 14.05.03 *** Saving seen data "./dancer.seen" 14.11.14 Join sciopath [0] (~sciop@yer91-2-82-237-54-159.fbx.proxad.net) 14.34.58 Join XavierGr [0] (XavierGr@rockbox/staff/XavierGr) 14.54.49 Quit stoffel_ (Ping timeout: 260 seconds) 14.57.28 Quit dongs (Remote host closed the connection) 14.57.36 Join dongs [0] (1000@l212168.ppp.asahi-net.or.jp) 15.39.33 Quit the-kyle (Ping timeout: 240 seconds) 15.50.59 Join dfkt [0] (dfkt@unaffiliated/dfkt) 16.05.06 *** Saving seen data "./dancer.seen" 16.18.06 Join the-kyle [0] (~kyle@195.60.76.223) 16.22.56 Quit Gallomimia (Quit: Gallomimia) 16.37.22 Quit efyx (Quit: Quitte) 16.51.28 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93) 17.09.28 Join Gallomimia [0] (~Gallo@d216-232-229-219.bchsia.telus.net) 17.30.55 Quit ruskie (Excess Flood) 17.31.06 Join ruskie [0] (ruskie@sourcemage/mage/ruskie) 17.54.06 Join SuperBrainAK [0] (~Andy@97-124-80-200.phnx.qwest.net) 17.54.21 Join Horscht [0] (~Horscht@xbmc/user/horscht) 18.05.08 *** Saving seen data "./dancer.seen" 18.16.11 Join froggyman [0] (~me@unaffiliated/froggyman) 18.44.39 Join CaptainKewl [0] (~captainke@207-237-110-248.c3-0.nyr-ubr2.nyr.ny.cable.rcn.com) 18.49.45 Quit froggyman (Ping timeout: 260 seconds) 19.25.59 Quit yuriks (Ping timeout: 264 seconds) 19.29.04 Quit eckoit (Quit: eckoit) 19.29.53 Quit dan_a (Ping timeout: 260 seconds) 19.36.45 Quit Horscht (Quit: Verlassend) 19.50.53 Quit Wardo (Ping timeout: 240 seconds) 19.54.47 Join Horscht [0] (~Horscht@p549476EE.dip.t-dialin.net) 19.54.47 Quit Horscht (Changing host) 19.54.47 Join Horscht [0] (~Horscht@xbmc/user/horscht) 20.05.09 *** Saving seen data "./dancer.seen" 20.09.15 Join lebellium_ [0] (~chatzilla@g229119172.adsl.alicedsl.de) 20.09.21 Quit lebellium (Read error: Connection reset by peer) 20.09.29 Nick lebellium_ is now known as lebellium (~chatzilla@g229119172.adsl.alicedsl.de) 20.15.23 Join nosa-j [0] (~m00k@184.76.254.130) 20.27.53 Join eckoit [0] (~ryan@50.65.10.24) 20.31.47 Quit y4n (Quit: AMIGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAHAHAHAAAAAAAAAAAAHAHAAA) 20.38.59 Quit CaptainKewl (Quit: ( www.nnscript.com :: NoNameScript 4.22 :: www.esnation.com )) 20.39.28 Quit the-kyle (Read error: Connection reset by peer) 20.41.14 Join the-kyle [0] (~kyle@195.60.76.223) 20.52.47 Quit akaWolf (Ping timeout: 255 seconds) 20.55.31 Quit melmothX (Ping timeout: 248 seconds) 20.55.31 Quit the-kyle (Read error: Connection reset by peer) 20.57.31 Join melmothX [0] (~melmoth@unaffiliated/melmothx) 21.01.33 Join lebellium_ [0] (~chatzilla@g229119172.adsl.alicedsl.de) 21.01.42 # lebellium: err, right, SI4703. that's a typo 21.03.00 # bertrik: I couldn't make interrupts work, but if you can, my polling code could easily be changed so it posts to the queue on interrupt instead of timing out 21.03.03 Part eckoit 21.03.13 Quit lebellium (Ping timeout: 247 seconds) 21.03.27 Nick lebellium_ is now known as lebellium (~chatzilla@g229119172.adsl.alicedsl.de) 21.07.41 Join yuriks [0] (~yuriks@opentyrian/developer/yuriks) 21.10.18 Join froggyman [0] (~me@dhcp-155-92-103-232.nebula.msoe.edu) 21.10.18 Quit froggyman (Changing host) 21.10.18 Join froggyman [0] (~me@unaffiliated/froggyman) 21.11.33 Join the-kyle [0] (~kyle@195.60.76.223) 21.36.33 Quit the-kyle (Read error: Connection reset by peer) 21.44.54 Quit mc2739 (Ping timeout: 260 seconds) 21.46.36 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739) 21.47.59 Join DmL [0] (328f5e7b@gateway/web/freenode/ip.50.143.94.123) 21.51.57 Quit scorche (Disconnected by services) 21.52.03 Join scorche` [0] (~scorche@rockbox/administrator/scorche) 21.57.13 Part fzo 22.05.10 *** Saving seen data "./dancer.seen" 22.15.58 # So I spent a fair bit of time trying to search the forums and Flyspray today. I was wondering, first of all, if anyone had information on a couple of bugs in rockboy on the Fuze+ and if not, how it would be best to go about reporting them. I have reported and issue or two in the past and didn't get any love, and considering Fuze+ is still unstable I thought it might be best to talk to the developer directly. 22.16.24 Quit Provel (Ping timeout: 260 seconds) 22.17.34 # The first issue is that I get data aborts when trying to enter the menu from rockboy from many games, but not all, and it is consistent. I can provide links to PUBLIC DOMAIN roms which display the error message, as well as the exact error message, if requested. 22.19.20 Join the-kyle [0] (~kyle@cpe-024-211-185-030.nc.res.rr.com) 22.23.03 Join bertrik_ [0] (~quassel@rockbox/developer/bertrik) 22.23.52 Quit bertrik (Ping timeout: 265 seconds) 22.23.57 Quit the-kyle (Ping timeout: 260 seconds) 22.26.42 Join Provel [0] (~Provel@75-132-17-160.dhcp.stls.mo.charter.com) 22.28.49 Join the-kyle [0] (~kyle@195.60.76.223) 22.34.21 Join Provel_ [0] (~Provel@75-132-18-44.dhcp.stls.mo.charter.com) 22.34.49 Quit Provel (Ping timeout: 252 seconds) 22.35.16 Quit the-kyle (Read error: Connection reset by peer) 22.40.34 Join saratoga [0] (121801d6@gateway/web/freenode/ip.18.24.1.214) 22.41.15 # dml: are they actually specific to the fuze+? 22.42.22 Join brkfstsqd [0] (~quassel@ip68-224-121-213.lv.lv.cox.net) 22.47.08 Quit brkfstsqd (Remote host closed the connection) 22.47.36 Join brkfstsqd [0] (~quassel@ip68-224-121-213.lv.lv.cox.net) 22.48.55 Join Provel [0] (~Provel@75-132-18-44.dhcp.stls.mo.charter.com) 22.51.15 Quit Provel_ (Ping timeout: 248 seconds) 22.51.57 Join the-kyle [0] (~kyle@195.60.76.223) 22.52.45 # Saratoga; This I don't know, Fuze+ is my only working target. 22.52.48 Join Provel_ [0] (~Provel@75-132-18-44.dhcp.stls.mo.charter.com) 22.53.14 # I do know that this issue was not present on my previous Fuze V2 a little less than a year ago. 22.53.46 Quit saratoga (Ping timeout: 245 seconds) 22.54.45 Quit Provel (Ping timeout: 260 seconds) 22.54.47 Quit brkfstsqd (Read error: Connection reset by peer) 22.55.08 Join brkfstsqd [0] (~quassel@ip68-224-121-213.lv.lv.cox.net) 23.03.33 Join Robin0800 [0] (~quassel@cpc1-brig15-2-0-cust755.3-3.cable.virginmedia.com) 23.10.07 # soap: yeah, i guess so 23.10.41 Join Provel [0] (~Provel@75-132-18-44.dhcp.stls.mo.charter.com) 23.13.53 Quit Provel_ (Ping timeout: 264 seconds) 23.14.10 Quit kevku (Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/) 23.20.37 Quit Robin0800 (Remote host closed the connection) 23.26.10 Quit benedikt93 (Quit: Bye ;)) 23.26.54 Join n1s [0] (~n1s@nl118-168-30.student.uu.se) 23.26.54 Quit n1s (Changing host) 23.26.54 Join n1s [0] (~n1s@rockbox/developer/n1s) 23.27.52 Join saratoga [0] (123e0c9c@gateway/web/freenode/ip.18.62.12.156) 23.28.08 # [7]: the ipod 6G doesn't define HAVE_DISK_STORAGE which seems odd to me 23.28.16 # is there a reason for that or is it just an oversight? 23.29.26 # not having it prevents various menus from showing disk related options, and some of the plugins handle hard disk players differently 23.32.33 # seems to compile cleanly, anyone want to test a build? 23.39.20 Quit Gallomimia (Read error: Connection reset by peer) 23.40.23 # <[7]> probably just an oversight, unless this causes the regular ATA driver to be compiled (the classic has its own one because of CE-ATA) 23.41.21 # well it compiles so i assume not 23.41.23 # let me grep 23.42.50 # no doesn't look like it 23.43.05 # you have time to try a build? 23.43.23 Quit n1s (Read error: Connection timed out) 23.51.38 Quit ParkerR_ (Excess Flood) 23.55.15 Quit yuriks (Ping timeout: 248 seconds) 23.58.36 Join ParkerR_ [0] (ParkerR@unaffiliated/parkerr)