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 23 | 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 2010-12-21

00:00:54 Quit komputes (Remote host closed the connection)
00:02:32 Quit TheLemonMan (Quit: free(me))
00:03:09jhMikeSbuilding now. yeah, the stacks screen uses alot of CPU. what about with plugins like starfield with the stars maxes out? cube at full speed and such?
00:04:05 Quit timccc (Ping timeout: 260 seconds)
00:04:29kugelcan't test plugins on my phone :p
00:04:53kugelthe patch has a flaw, prio == 5 when playback is stopped, but that's easy to fix
00:07:29jhMikeSon e200v1, I can't get a dropout even from the OS stacks screen. this is much better so far.
00:07:53jhMikeSI can only reach 9 so far
00:10:15kugelperhaps I'm imagining but I feel it makes kinetic scrolling a bit more choppy
00:11:06 Quit wodz (Quit: Leaving)
00:11:27kugelwhat I always wanted to do is to force the main thread to run next after a queue_post() to the button_queue (i.e. after the timeout handler), it couldn't be choppy then. any idea how to achieve that?
00:11:48jhMikeSIt could I imagine. Does kinetic attempt to compensate for available framerate
00:11:59 Join timccc [0] (~timccc@112.166.15.141)
00:12:20jhMikeSthat would basically be like making it the highest priority thread, then it would run next
00:14:22jhMikeSpf seems better with that patch too, much smoother when music is going
00:14:52kugelcool
00:15:06jhMikeSnot perfect but not bad (there's only so much CPU to go around on this)
00:15:24***Saving seen data "./dancer.seen"
00:15:53jhMikeSIndeed, I see codec and voice stuck at 5 after stopping :)
00:16:44 Quit timccc (Ping timeout: 276 seconds)
00:20:42 Quit bertrik (Quit: :tiuQ)
00:20:44kugeljhMikeS: perhaps it shouldn't start with 12 at <60%, it seems to make the UI worse here
00:21:18 Part toffe82
00:22:14jhMikeSso no boost until 60%?
00:22:36kugelerr, I meant <70%
00:22:54 Quit AlexP_mob (Quit: Cheers)
00:23:12jhMikeSisn't it 12 now at 70%?
00:23:25kugelyes
00:23:37kugelwell, 60-69% should be 12
00:23:43 Join JdGordon| [0] (~jonno@rockbox/developer/JdGordon)
00:23:58kugelkinetic scrolling feels a lot worse
00:26:31jhMikeSit looks like it's already that with index 6 being 12
00:27:47 Quit JdGord (Ping timeout: 276 seconds)
00:28:11kugelright, but 12 could be a too big jump, no?
00:28:39 Quit casainho (Ping timeout: 240 seconds)
00:28:39jhMikeSI was gonna say, maybe ease in with less of a jump than 16->12
00:30:22jhMikeSrunning cube full speed, I can see that jump, then it's smooth when changing
00:30:36kugeltrying http://pastie.org/1393594 now
00:30:57kugelstill choppy kinetic scrolling. I also think it doesn't see all touchscreen presses anymore
00:32:08kugelthe prio is raised pretty quickly when scrolling, I wonder why
00:33:37kugeloh wait, some other process is hogging my cpu
00:33:44 Part domonoky
00:34:04jhMikeShehe
00:35:10kugelok, I take back what I said, kinetic scrolling is still fine
00:35:27jhMikeSgreat!
00:35:36 Join The_Pwny [0] (~IceChat7@203-219-63-40.tpgi.com.au)
00:35:54jhMikeSok, what is that anyway? sliding your finger and flicking, then it decelerates?
00:36:10 Quit ender` (Quit: MCSE = Must Consult Someone Experienced, Minesweeper Champion, Solitaire Expert, Must Call Someone Else or Moron Claiming System Expertise?)
00:36:42kugelyea
00:37:27 Quit pamaury (Ping timeout: 240 seconds)
00:39:22kugelthe list code is driven by a timeout handler, which does queue_post() to force a button_get() timeout. hence it would be nice if the main thread would be guaranteed to run directly after the timeout handler
00:42:39jhMikeSthe other patch seems even better, I can't force prio over 13 from OS stacks
00:43:48kugelyea, and without the other cpu hogging process, I cannot manage a audio drop out in that screen anymore
00:43:53jhMikeSboost the prio really high and it most certainly will, then lower it.
00:44:40kugelit goes shortly to 8, then quickly back to 10 or 12 again here
00:45:07 Quit sasquatch (Quit: WeeChat 0.3.2)
00:45:32 Join sasquatch [0] (~username@p4FF2D05B.dip.t-dialin.net)
00:47:38jhMikeSis the timeout handler an isr call?
00:49:02kugelyes
00:49:29kugelso it mustn't draw
00:50:59jhMikeSit still might be able call thread_set_priority to do what you want. I never made that function for ISR handlers but it *might* be still safe to do
00:51:47jhMikeSor go another route. special casing the scheduler can quickly make a mess so I'm wonder what is already available
00:52:59kugeli thought that perhaps a general solution, e.g. that any thread runs next if something has posted to its event_queu, could be worthwhile
00:53:40kugeli tried messing with the scheduler but I never got further than crashes
00:54:11 Join fdinel [0] (~Miranda@modemcable235.127-131-66.mc.videotron.ca)
00:54:37jhMikeSbut is that something that should normally be forced? changing the lists to insert first rather than last can move sleeping threads ahead for scheduling.
00:55:33 Part InsDel
00:55:35jhMikeSthere's also wakeup thread which does effectively a small boost already. you could increase that skip count
01:00
01:00:52jhMikeSinserting first at wakeup and increasing skip count high enough would do it as well, but insert first shouldn't be a global change imo
01:00:54 Quit dfkt (Quit: -= SysReset 2.53=- Sic gorgiamus allos subjectatos nunc.)
01:02:22jhMikeSmutexes and other object would have arrivals queued in reverse order if it were global
01:03:48 Join saratoga [0] (62e16704@gateway/web/freenode/ip.98.225.103.4)
01:03:54kugelI don't understand that part
01:06:45 Join timccc [0] (~timccc@112.166.15.141)
01:18:27soapBuschel (logs), gevaerts. Nano is rock-solid @ 76Mhz.
01:19:56soapI'm willing to test any ideas this Christmas break. I'd love to help fix the issue for others, but I've got no problem being selfish and just building my own. I just have no idea where to look for the underlying cause. How confident is Rockbox that 80 is what the OF does in all cases?
01:19:59kugeljhMikeS: should I commit that pcmbuf patch?
01:20:01 Join Strife1989 [0] (~Strife89@adsl-80-156-175.mcn.bellsouth.net)
01:20:37soapI have not tested USB transfers since lowering the max speed to 76, I have NO idea what other timing issues I may have caused.
01:21:10jhMikeSkugel: I should check more than mp3, flac, and wav. A few more minutes, it looks like "yes".
01:22:34soapThank you both for showing me what needs changed and for explaining the "magic" behind the hex.
01:22:53 Quit Strife89 (Ping timeout: 276 seconds)
01:23:32jhMikeSspc seems good, I'll try some wma
01:24:35JdGordon|soap: well the easy answeris commit it and if anyone complains put it back :)
01:26:06 Part marines
01:26:20kugeljhMikeS: could I do set_priority(PRIORITY_REALTIME), then immediately after set_priority(old_prio) or will resetting to default will throw the thread behind again (assuming the first call makes puts the thread ahead in the queue)?
01:27:21pixelmais the "Recent activity" SVN table on the frontpage broken for anyone else too?
01:28:09saratogaworks for me i think
01:28:25jhMikeSkugel: I'd say commit the patch. Things look better all around to me.
01:28:42pixelmaah, no - forcing a refresh of a page helped now
01:29:29jhMikeSkugel: once it's running it won't be behind unless it yields again. it will be the next thread to run though once it's woken.
01:30:22kugelI'm trying to think how I best revert to the old prio
01:31:40jhMikeSyou want to make it realtime before it goes to sleep on the queue, then revert once it gets a message?
01:32:41kugelno, I want to post, then make it realtime, and then revert once it runs (or earlier if possible)
01:32:45jhMikeSthat would make it run next once it gets a message as I understood your intent
01:33:50jhMikeSmake it realtime from the ISR?
01:34:26kugelyea, you said that could be done
01:36:06jhMikeSI said I ~think~ so. I never intended it but the function does guard against interrupts. how that affects mutexes and other things with inheritance code I have to look at again.
01:38:57 Quit DerPapst (Quit: Leaving.)
01:40:16kugelit looks safe to me, unless I'm misunderstanding what disable_irq_save() does
01:41:10jhMikeSI'm thinking it's probably alright. That queue isn't owned and doesn't use sync messages. All sleeps and wakes in the system are interrupt guarded.
01:43:06jhMikeSI was just wondering about all data structures, if they're secure too. It could get a priority boost while sleeping on a mutex, or in queue_send right? in that case, threads blocking it will also inherit the new priority.
01:44:13jhMikeSunless the queue_post is done first and knows that it woke up the thread it's going to boost
01:44:44kugeli do the queue_post first
01:48:27jhMikeSI'm not seeing an obvious issue with it. All list changes are guarded in all objects and thread_set_priority doesn't reference current unless THREAD_ID_CURRENT is specified
01:48:39kugelD/Rockbox (26029): boost thread main
01:48:39kugelD/Rockbox (26029): new thread audio
01:48:39kugelD/Rockbox (26029): new thread scroll
01:48:39DBUGEnqueued KICK kugel
01:48:39kugelD/Rockbox (26029): new thread main
01:48:47kugelthat didn't work :(
01:50:29kugelbut a lot of other threads now have prio 1
01:50:56jhMikeS??
01:53:03kugelI added a set_prio() to the timeout handler, and set_prio() to revert it just before load_context()
01:54:11jhMikeSdid that happen immediately?
01:54:45jhMikeSyou used the button thread id and not THREAD_ID_CURRENT right?
01:54:49jhMikeS*main thread
01:55:41 Join JesusFreak316 [0] (~JesusFrea@pool-173-65-66-169.tampfl.fios.verizon.net)
01:57:19kugeljhMikeS: yea, I passed 0
01:57:39kugeldunno why other threads get prio 1
02:00
02:00:50jhMikeS0 isn't a valid id, it's the invalid id
02:02:55kugelseems to work now, I think I confused the scheduler by packing the old prio into base_priority
02:03:11 Quit GeekShadow (Quit: The cake is a lie !)
02:04:21 Quit Kitar|st (Ping timeout: 264 seconds)
02:04:47jhMikeSthe main thread id should be like 0x0100, meaning slot version 1, slot 0, but it does mask away bits 8-15
02:05:13 Part Bushmills
02:05:16kugelyea, I changed it to THREAD_ID_INIT(0) now
02:06:19 Quit Topy (Quit: Leaving)
02:06:35jhMikeSI just wonder what happens if it's doing something else, like accessing the disk, but still gets the boost
02:07:39kugelI'd say it's a tiny bit smoother but not a whole lot
02:08:48jhMikeSthat method has some hazards to actually use but it should say whether the basic idea matters
02:09:06 Join Kitar|st [0] (~Kitarist@BSN-182-104-166.dial-up.dsl.siol.net)
02:11:01 Join Topy44 [0] (~Topy44@f048133225.adsl.alicedsl.de)
02:11:06jhMikeSdid you try upping the skip count in wakeup_thread really high? it won't run it first but it won't skip over it when it checks it for scheduling next time
02:13:11 Join [Saint] [0] (S_a_i_n_t@203.184.0.230)
02:15:27***Saving seen data "./dancer.seen"
02:16:05kugelthe difference is a bit stronger with higher fps for the scrolling
02:19:51jhMikeShow does the android threading work? Is it just one native OS thread that handles its own contexts?
02:21:13kugelit's a few more OS threads, but rockbox' threads run under a single OS thread
02:21:45jhMikeScan it boost the prio of that one since it's got so many tasks?
02:22:17kugelno i dont think so
02:22:41kugelandroid doesn't know we implement userspace threads, so it thinks it's a single task
02:23:33kugelwe could bump the prio manually but I'm not sure if it's worthwhile. the other OS threads are mostly sleeping or blocked
02:23:42jhMikeSbut android has no priorities of its own?
02:23:48jhMikeSoh
02:24:18kugelandroid has pthreads, and very similar java threads
02:32:13jhMikeSkugel: you never seem to set svn properties. :) I just see "$Id$"
02:32:32kugelI'm using git, perhaps that's why
02:32:41kugelbut didn't we agree on ditching those anyway?
02:33:45jhMikeSIf so, I wasn't part of that discussion :D
02:34:31kugelit was on the mailing list
02:34:33 Quit pixelma (Disconnected by services)
02:34:33 Quit amiconn (Disconnected by services)
02:34:35 Join pixelma_ [0] (quassel@rockbox/staff/pixelma)
02:34:36 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
02:34:37 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma)
02:34:40 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
02:36:05 Quit kugel (Remote host closed the connection)
02:36:06jhMikeSkugel: oh, I've been really out of the loop lately
02:44:08 Quit amiconn (Disconnected by services)
02:44:10 Quit pixelma (Disconnected by services)
02:44:10 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
02:44:12 Join pixelma_ [0] (quassel@rockbox/staff/pixelma)
02:44:15 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma)
02:44:15 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
03:00
03:00:05 Quit pixelma (Disconnected by services)
03:00:05 Quit amiconn (Disconnected by services)
03:00:07 Join pixelma_ [0] (quassel@rockbox/staff/pixelma)
03:00:08 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
03:00:10 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma)
03:00:12 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
03:03:02 Quit amiconn (Read error: Operation timed out)
03:03:03 Quit pixelma (Read error: Operation timed out)
03:03:28 Join pixelma [0] (quassel@rockbox/staff/pixelma)
03:03:28 Join amiconn [0] (quassel@rockbox/developer/amiconn)
03:17:24 Quit designate72 (Ping timeout: 255 seconds)
03:23:12 Quit krabador (Remote host closed the connection)
03:27:26 Join kadoban [0] (~kadoban@ip98-165-177-158.ph.ph.cox.net)
03:42:39 Join madalu [0] (~user@unaffiliated/madalu)
04:00
04:09:37 Quit xavieran (Ping timeout: 240 seconds)
04:10:30 Quit TheSeven (Ping timeout: 276 seconds)
04:13:34 Join TheSeven [0] (~TheSeven@rockbox/developer/TheSeven)
04:15:31***Saving seen data "./dancer.seen"
04:20:04 Quit antil33t (Read error: Connection reset by peer)
04:26:12 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
04:28:58 Quit kadoban (Ping timeout: 240 seconds)
04:31:59 Join Barahir [0] (~jonathan@frnk-590f7d5c.pool.mediaWays.net)
04:35:22 Quit Barahir_ (Ping timeout: 265 seconds)
04:37:10 Join edboyer93 [0] (~eboyer93@pool-71-185-65-59.phlapa.fios.verizon.net)
04:39:14 Join george [0] (~eboyer93@pool-71-185-65-59.phlapa.fios.verizon.net)
04:39:50 Nick george is now known as georgedabio (~eboyer93@pool-71-185-65-59.phlapa.fios.verizon.net)
04:41:27 Quit edboyer93 (Client Quit)
04:41:31 Quit georgedabio (Client Quit)
04:44:56 Quit amiconn (Disconnected by services)
04:44:58 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
04:45:02 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
04:46:35 Quit amiconn (Disconnected by services)
04:46:37 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
04:46:38 Quit pixelma (Disconnected by services)
04:46:40 Join pixelma2 [0] (quassel@rockbox/staff/pixelma)
04:46:42 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
04:46:42 Nick pixelma2 is now known as pixelma (quassel@rockbox/staff/pixelma)
04:54:50 Quit amiconn (Disconnected by services)
04:54:52 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
04:54:53 Quit pixelma (Disconnected by services)
04:54:56 Join pixelma_ [0] (quassel@rockbox/staff/pixelma)
04:54:57 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
04:54:58 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma)
05:00
05:10:49 Join xavieran [0] (~xavieran@ppp118-209-235-241.lns20.mel6.internode.on.net)
05:15:21 Join T44 [0] (~Topy44@f048098180.adsl.alicedsl.de)
05:18:58 Quit Topy44 (Ping timeout: 240 seconds)
05:19:43 Quit scorche (Ping timeout: 255 seconds)
05:21:58 Quit xavieran (Ping timeout: 240 seconds)
05:28:43 Nick YPSY is now known as Ypsy (~ypsy@geekpadawan.de)
05:29:02 Join scorche [0] (~scorche@rockbox/administrator/scorche)
05:29:44 Quit madalu (Remote host closed the connection)
05:31:38 Nick Ypsy is now known as YPSY (~ypsy@geekpadawan.de)
05:36:11 Join xavieran [0] (~xavieran@ppp118-209-44-109.lns20.mel4.internode.on.net)
05:43:40 Quit The_Pwny (Quit: Friends help you move. Real friends help you move bodies.)
05:54:27 Quit binaryhermit (Quit: Leaving)
06:00
06:00:37 Quit fdinel (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
06:02:59 Quit froggyman (Quit: see you on the other side!)
06:05:57 Quit Keripo (Quit: Leaving.)
06:11:39 Join froggyman [0] (~seth@98.115.0.7)
06:11:39 Quit froggyman (Changing host)
06:11:39 Join froggyman [0] (~seth@unaffiliated/froggyman)
06:15:34***Saving seen data "./dancer.seen"
06:27:05 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il)
06:31:59 Quit froggyman (Ping timeout: 272 seconds)
07:00
07:13:57 Join The_Pwny [0] (~IceChat7@203-219-63-40.tpgi.com.au)
07:18:11 Quit The_Pwny (Ping timeout: 240 seconds)
07:20:12 Join kadoban [0] (~kadoban@ip98-165-177-158.ph.ph.cox.net)
07:26:31 Join _jhMikeS_ [0] (~jethead71@rockbox/developer/jhMikeS)
07:26:31 Quit jhMikeS (Disconnected by services)
07:36:10 Join BHSPitMonkey [0] (~stephen@unaffiliated/bhspitmonkey)
07:38:22 Join ReimuHakurei_ [0] (~reimu@74.112.212.15)
07:38:34 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
07:39:19 Quit ReimuHakurei (Read error: Connection reset by peer)
07:45:15 Join esperegu [0] (~quassel@145.116.15.244)
07:45:45 Quit JdGordon| (Quit: leaving)
07:50:47 Join JdGord [0] (~jonno@122.110.111.234)
07:56:07 Join Buschel [0] (~chatzilla@p54B67F10.dip.t-dialin.net)
07:57:05 Quit [Saint] (Quit: I'm only going to Heaven if it feels like Hell, I'm only going to Heaven if it tastes like caramel...)
07:59:20CIA-7New commit by Buschel (r28868): Major speedup of iPod nano 2G. Part 6: Use faster LCD interface configuration. Tested for LDS and ILI type displays. Speedup is +99% for RGB and +5% ...
08:00
08:01:11CIA-7r28868 build result: All green
08:02:29Buschelsoap: I remember there were issues with some iPods depending on the iPod's temperature and the clock... maybe your device is one of them. my iPod Video runs stabke @100MHz, seems to vary from target to target.
08:03:47 Quit JesusFreak316 (Ping timeout: 240 seconds)
08:06:36 Quit factor (Read error: Connection reset by peer)
08:14:03 Join CaptainKewl [0] (~jason@207-38-215-126.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
08:15:36***Saving seen data "./dancer.seen"
08:15:42 Quit antil33t (Read error: Connection reset by peer)
08:18:01 Join factor [0] (~factor@r74-195-220-23.msk1cmtc02.mskgok.ok.dh.suddenlink.net)
08:18:03 Quit JdGord (Quit: Bye)
08:18:46 Quit kadoban (Ping timeout: 250 seconds)
08:22:39 Join antil33t [0] (~Mudkips@124-197-51-80.callplus.net.nz)
08:25:59 Quit Buschel (Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014])
08:26:46 Join bmbl [0] (~bmbl@unaffiliated/bmbl)
08:30:29 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky)
08:39:03 Quit domonoky (Read error: Connection reset by peer)
08:39:05 Join ender` [0] (krneki@foo.eternallybored.org)
08:39:39 Join Bagder [0] (~danielx@1-1-5-26a.hud.sth.bostream.se)
08:39:55 Join TheLemonMan [0] (~lem0n@ppp-80-131.98-62.inwind.it)
08:40:09 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon)
08:47:24 Join Keripo [0] (~Keripo@dhcp0101.kin.resnet.group.upenn.edu)
08:48:30 Quit Keripo (Client Quit)
08:48:58 Join Keripo [0] (~Keripo@dhcp0101.kin.resnet.group.upenn.edu)
08:50:45 Join sideral [0] (~sideral@unaffiliated/sideral)
09:00
09:01:13 Join wodz [0] (~wodz@87-206-240-131.dynamic.chello.pl)
09:02:47CIA-7New commit by wodz (r28869): WM8750 - fix muted output when entering FM radio screen.
09:04:30CIA-7r28869 build result: All green
09:06:32wodz\o/ - I finally squashed that annoying beast :-)
09:06:34 Quit CaptainKewl (Read error: Operation timed out)
09:11:11CtcpIgnored 1 channel CTCP requests in 0 seconds at the last flood
09:11:11*Bagder hands wodz 10 points for that!
09:12:20wodz:-)
09:13:37 Quit BHSPitMonkey (Remote host closed the connection)
09:18:52 Join [Saint] [0] (S_a_i_n_t@203.184.0.116)
09:20:37 Join Zagor [0] (~bjst@rockbox/developer/Zagor)
09:23:20 Join petur [0] (d408b802@rockbox/developer/petur)
09:23:30wodz[Saint]: ping
09:24:20[Saint]pong
09:24:38 Join Bushmills [0] (~Bushmills@scarydevilmonastery.net)
09:24:38[Saint]Is "Add Task" messed up for anyone else on Flyspray?
09:24:38wodz[Saint]: have you had a time look at HD300 svg?
09:24:55wodzI added task yesterday without problems
09:26:12Bushmillsis voice menu functionality, as provided by rockbox, something which can also be commonly found in manufacturers' firmware, or is that a feature which is rather unique for rockbox?
09:26:45[Saint]I've had time to look at it, but not time to do anything about it, sorry. It's layered nicely, so it pretty much just needs to be "coloured in".
09:27:13[Saint]Every time I sit down to do something these days IRL stuff pops up. :/
09:27:34wodzBushmills: I never saw something like voicing in stock firmwares.
09:27:36LloreanBushmills: It's not particularly common, no. Apple added it at some point, but I'm not sure any of the other players we support have it in their original firmwares, and Apple didn't until sometime after we supported several of their players.
09:29:00Bushmillsah, good to know. i was just contemplating letting a blind neighbour know that mp3 players can provide usefulness yet little known to exist otherwise, but i'd make myself laughing stock if those menus are audible generally
09:29:09 Join LinusN [0] (~linus@rockbox/developer/LinusN)
09:29:16wodz[Saint]: may I ask you to build windows binary of mkmpioboot from svn head?
09:29:50[Saint]I can't right now, but I'll ping you when I can.
09:29:58wodzno problem
09:30:07[Saint]sweet.
09:34:40JdGordonAlexP: HighWas159
09:41:38 Quit bmbl (Ping timeout: 255 seconds)
09:44:32CIA-7New commit by wodz (r28870): Tag release v1 of the MPIO HD300 bootloader
09:44:37 Join bmbl [0] (~bmbl@unaffiliated/bmbl)
09:50:53 Join swilde [0] (~wilde@aktaia.intevation.org)
09:51:10 Join mystica555_ [0] (~mike@c-75-70-179-25.hsd1.co.comcast.net)
09:52:04 Quit bmbl (Quit: Verlassend)
09:54:34 Join kugel [0] (~kugel@141.45.207.83)
09:54:35 Quit kugel (Changing host)
09:54:35 Join kugel [0] (~kugel@rockbox/developer/kugel)
09:58:37 Quit JdGordon (Quit: Leaving.)
09:59:16 Join bmbl [0] (~bmbl@unaffiliated/bmbl)
10:00
10:07:25wodzBagder, Zagor: ping
10:07:33Zagoryes?
10:08:02wodzI have new mkmpioboot binary to upload to download server as well as bootloader build for HD300
10:09:04kugelZagor: the wiki bug is back where it reloads the entire page when you click on a link in the table of content
10:09:52Zagorwodz: upload them somewhere and we'll put them on download.rockbox.org
10:09:52 Quit kugel (Read error: Connection reset by peer)
10:09:59wodzok
10:10:26 Join kugel [0] (~kugel@141.45.207.83)
10:10:27 Quit kugel (Remote host closed the connection)
10:10:37 Join kugel [0] (~kugel@141.45.207.83)
10:10:38 Quit kugel (Changing host)
10:10:38 Join kugel [0] (~kugel@rockbox/developer/kugel)
10:13:51wodzZagor: http://uploading.com/files/9c24d288/mkmpioboot_v2.zip <- this is linux x86 binary and win32 binary. This two should supersede existing ones
10:14:50wodzZagor: http://uploading.com/files/efc9b6be/mpiohd300_bootloader.zip/ <- this one should have it's own dir (the same as for HD200). Thanks in advance
10:15:39***Saving seen data "./dancer.seen"
10:17:11 Join DerPapst [0] (~Alexander@91-66-226-46-dynip.superkabel.de)
10:26:07 Quit wodz (Quit: Leaving)
10:34:35 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon)
10:43:07 Quit TheSeven (Ping timeout: 276 seconds)
10:50:00 Join pamaury [0] (~quassel@cez63-2-88-164-98-172.fbx.proxad.net)
10:50:00 Quit pamaury (Changing host)
10:50:00 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
10:58:07 Join insp_ [0] (~chatzilla@81.198.214.94)
10:59:48 Quit TheLemonMan (Quit: free(me))
11:00
11:01:43 Quit kugel (Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org)
11:04:04 Join n1s [0] (~n1s@rockbox/developer/n1s)
11:04:21 Join marines [0] (~marines@marvin.uplink.cz)
11:08:04*JdGordon wonders why android is doing the popping when playback stops/starts
11:09:42 Quit sideral (Quit: Leaving.)
11:12:46 Quit mystica555_ (Remote host closed the connection)
11:13:40 Quit DerPapst (Quit: Leaving.)
11:14:49CIA-7New commit by alex (r28871): Add %tr to the manual.
11:16:41CIA-7r28871 build result: All green
11:16:57 Quit pamaury (Remote host closed the connection)
11:18:06 Quit Bagder (Quit: Konversation terminated!)
11:23:58 Join soap__ [0] (~soap@212.117.164.246)
11:25:03 Join _Zagor [0] (~bjst@rockbox/developer/Zagor)
11:25:57 Join AlexP_ [0] (~alex@rockbox/staff/AlexP)
11:26:35 Join avacore^ [0] (~avacore@1008ds1-rdo.0.fullrate.dk)
11:26:45 Join jepler- [0] (~jepler@emc/developer/pdpc.professional.jepler)
11:27:09 Join jhMikeS [0] (~jethead71@adsl-99-26-177-70.dsl.sfldmi.sbcglobal.net)
11:27:10 Quit jhMikeS (Changing host)
11:27:10 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS)
11:27:10 Quit _jhMikeS_ (Disconnected by services)
11:28:07 Join ej0rge_ [0] (~alhaz@alhaz.fttp.xmission.com)
11:28:07 Join tmzt_ [0] (~tmzt@76.211.0.152)
11:28:09 Join sinthete1 [0] (~sinthetek@cpe-174-111-239-037.triad.res.rr.com)
11:28:12 Join knitt1 [0] (~knittl@unaffiliated/knittl)
11:30:28 Join TheSeven [0] (~TheSeven@rockbox/developer/TheSeven)
11:31:57 Join nls [0] (~n1s@nl118-174-240.student.uu.se)
11:32:41 Quit n1s (*.net *.split)
11:32:41 Quit soap (*.net *.split)
11:32:41 Quit knittl (*.net *.split)
11:32:41 Quit AlexP (*.net *.split)
11:32:41 Quit cjcopi (*.net *.split)
11:32:41 Quit sinthetek (*.net *.split)
11:32:41 Quit Zagor (*.net *.split)
11:32:41 Quit ej0rge (*.net *.split)
11:32:41 Quit jepler (*.net *.split)
11:32:41 Quit tmzt (*.net *.split)
11:32:41 Quit avacore (*.net *.split)
11:33:37 Join cjcopi [0] (~craig@adsl-76-241-82-218.dsl.bcvloh.sbcglobal.net)
11:35:49 Quit [Saint] (Quit: I'm only going to Heaven if it feels like Hell, I'm only going to Heaven if it tastes like caramel...)
11:46:30 Join dfkt [0] (dfkt@unaffiliated/dfkt)
11:52:47 Nick AlexP_ is now known as AlexP (~alex@rockbox/staff/AlexP)
11:55:02 Join timccc1 [0] (~timccc@112.166.15.141)
11:55:37 Quit timccc (Read error: No route to host)
12:00
12:12:59 Join kugel [0] (~kugel@141.45.200.213)
12:13:00 Quit kugel (Changing host)
12:13:00 Join kugel [0] (~kugel@rockbox/developer/kugel)
12:13:19kugelJdGordon:what popping?
12:14:15JdGordonspeaker popping
12:15:40***Saving seen data "./dancer.seen"
12:17:22kugelI haven't noticed popping yet
12:18:09JdGordoni hadnt either untill plugging my phone into speakers
12:18:10JdGordonnot even good ones
12:19:15kugelperhaps it's the speakers fault?
12:33:53 Join moos [0] (moos@rockbox/staff/moos)
12:36:18 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
12:36:41 Quit ender` (Quit: I like work: it fascinates me. I can sit and look at it for hours. -- Jerome K. Jerome)
12:37:08 Join ender` [0] (krneki@foo.eternallybored.org)
12:40:47 Join GeekShadow [0] (~Antoine@93.21.172.197)
12:40:47 Quit GeekShadow (Changing host)
12:40:47 Join GeekShadow [0] (~Antoine@reactos/tester/GeekShadow)
12:43:04 Quit kugel (Ping timeout: 260 seconds)
12:43:58 Join earcar [0] (~carmine@95.234.115.118)
12:47:48 Quit liar (Ping timeout: 240 seconds)
12:54:22 Quit earcar (Quit: bye)
12:59:51 Quit pamaury (Remote host closed the connection)
13:00
13:05:56 Join pamaury [0] (~quassel@cez63-2-88-164-98-172.fbx.proxad.net)
13:05:56 Quit pamaury (Changing host)
13:05:56 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
13:14:44nlsis anyone interested in testing a build made with gcc 4.5.2 on a coldfire device?
13:15:21 Join TheLemonMan [0] (~lem0n@ppp-80-131.98-62.inwind.it)
13:17:57 Nick _Zagor is now known as Zagor (~bjst@rockbox/developer/Zagor)
13:19:01 Join wodz [0] (~wodz@skatol.ch.pw.edu.pl)
13:19:10wodzn1s: sure
13:26:26 Join froggyman [0] (~seth@unaffiliated/froggyman)
13:30:36nlswodz: hd200
13:30:37nls?
13:30:58wodzhd300
13:31:06nlsok
13:33:11 Part marines
13:34:55 Join WonTu [0] (~WonTu@p57B56179.dip.t-dialin.net)
13:35:17 Part WonTu
13:36:14 Quit crwl (Read error: Operation timed out)
13:37:18nlswodz: http://home.student.uu.se/niwa5341/rockbox.zip
13:40:01wodznls: downloading, but transfer is really poor so this will take a while
13:40:30nlsno problem
13:40:49 Quit soap__ (Ping timeout: 260 seconds)
13:41:09wodzany particular things I should look at?
13:41:22 Quit bluebrother (Disconnected by services)
13:41:24 Join bluebroth3r [0] (~dom@rockbox/developer/bluebrother)
13:42:09nlsi have tested most things i could think of (not all plugins though) on my h300 so mostly that it works and that the target specific drivers are ok i think
13:42:36 Quit JdGordon (Ping timeout: 240 seconds)
13:43:21wodzare there any speed benefits?
13:44:19 Quit Keripo (Quit: Leaving.)
13:44:56nlsyes, some codecs are quite a bit faster (although some are a bit slower but not more than 4%)
13:45:04nlsso overall a speedup
13:45:45nlsaac decoding is the big winner with about 20% speedup
13:46:46nlsoh, if you could do some of the target specific benchmarks would be cool, like test_fps and friends to see if those are ok
13:47:29wodzif test plugins are included - no problem
13:48:48 Quit moos (Ping timeout: 276 seconds)
13:48:49 Quit ender` (Read error: Connection reset by peer)
13:48:49nlsthey are
13:49:05 Join ender` [0] (krneki@foo.eternallybored.org)
13:50:06wodzbuild boots ok, test_fps is the same
13:51:47wodzmusic playback works, buttons works, FM works, RTC shows right time
13:52:04wodzI don't see something obvious which is broken
13:52:36nlsvery nice :)
13:54:59wodzI can't leave test_mem plugin (but it was troublesome earlier also)
13:57:54 Quit wodz (Quit: Leaving)
13:59:13 Join crwl [0] (~crwlll@dsl-jklbrasgw1-fe10fb00-173.dhcp.inet.fi)
14:00
14:06:42 Quit timccc1 (Ping timeout: 255 seconds)
14:09:01 Quit jfc^2 (Read error: Connection reset by peer)
14:09:23 Join jfc^2 [0] (~john@dpc6682208002.direcpc.com)
14:10:40 Join timccc [0] (~timccc@112.166.15.141)
14:15:45***Saving seen data "./dancer.seen"
14:17:08 Nick jae_ is now known as jae (~jae@jaerhard.com)
14:20:42 Quit crwl (Read error: Operation timed out)
14:24:57 Join sideral [0] (~sideral@unaffiliated/sideral)
14:25:41 Join crwl [0] (~crwlll@dsl-jklbrasgw1-fe10fb00-173.dhcp.inet.fi)
14:34:59 Nick jepler- is now known as jepler (~jepler@emc/developer/pdpc.professional.jepler)
14:35:05CIA-7New commit by nls (r28872): aac: put two local structs on the stack as they are small and the codec uses little stack anyway ( < 20% on h300)
14:36:15 Quit Guinness` (Read error: Connection reset by peer)
14:36:46CIA-7r28872 build result: All green
14:40:57 Join sideral1 [0] (~sideral@unaffiliated/sideral)
14:41:16 Quit sideral (Ping timeout: 255 seconds)
14:41:25 Join Guinness [0] (Slayer@c-68-55-111-159.hsd1.va.comcast.net)
14:41:52 Join marines [0] (~marines@marvin.uplink.cz)
14:46:06 Quit sideral1 (Remote host closed the connection)
14:46:48 Join sideral [0] (~sideral@unaffiliated/sideral)
14:51:19 Part marines
14:51:30 Join marines [0] (~marines@marvin.uplink.cz)
14:53:56 Join komputes [0] (~komputes@ubuntu/member/komputes)
14:56:21 Quit sideral (Remote host closed the connection)
14:57:12 Join sideral [0] (~sideral@unaffiliated/sideral)
15:00
15:00:37 Join evilnick_B [0] (0c140464@rockbox/staff/evilnick)
15:08:43CIA-7New commit by nls (r28873): libwavpack: put some lookup tables in iram, speedup of 8-10% on coldfire (h300).
15:10:24CIA-7r28873 build result: All green
15:16:37 Join CaptainKewl [0] (~jason@207-38-215-126.c3-0.nyr-ubr1.nyr.ny.cable.rcn.com)
15:21:47 Join Bagder [0] (~danielx@1-1-5-26a.hud.sth.bostream.se)
15:22:49 Part marines
15:23:31 Join benedikt93 [0] (~benedikt9@pD9E252E3.dip.t-dialin.net)
15:23:31 Quit benedikt93 (Changing host)
15:23:31 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93)
15:26:22 Join kevku [0] (~kevku@arch.tunnel.ipv6.estpak.ee)
15:37:18 Quit GeekShadow (Quit: The cake is a lie !)
15:41:51 Quit crwl (Ping timeout: 240 seconds)
15:46:54 Quit benedikt93 (Ping timeout: 264 seconds)
15:47:00 Join marines [0] (~marines@marvin.uplink.cz)
15:53:03 Join casainho [0] (~chatzilla@pal-213-228-181-14.netvisao.pt)
15:55:27 Quit CaptainKewl (Ping timeout: 240 seconds)
15:57:21 Join DerPapst [0] (~Alexander@91-66-226-46-dynip.superkabel.de)
16:00
16:05:13 Join liar [0] (~liar@clnet-p09-185.ikbnet.co.at)
16:06:07*Strife1989 wonders about http://forums.rockbox.org/index.php/topic,26789.0.html
16:07:20ZagorStrife1989: headphone socket came off?
16:07:38Strife1989Quite possibly.
16:07:55 Join opt1 [0] (~opt1@81-226-51-125-no179.tbcn.telia.com)
16:09:34 Quit mortalscan (Remote host closed the connection)
16:09:49 Join mortalscan [0] (~mortalsca@109.169.55.155)
16:15:46***Saving seen data "./dancer.seen"
16:16:37 Quit Strife1989 (Quit: Leaving)
16:22:38 Nick knitt1 is now known as knittl (~knittl@unaffiliated/knittl)
16:26:47 Part LinusN
16:30:33 Join sampattuzzi [0] (~sam@92.26.123.73)
16:41:12 Quit sampattuzzi (Quit: Ex-Chat)
16:43:04 Join toffe82 [0] (~chatzilla@maf.wirelesstcp.net)
16:46:04 Quit nls (Quit: Lämnar)
16:50:18 Quit insp_ (Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716])
17:00
17:00:16 Join webguest819 [0] (~c3f03ae4@giant.haxx.se)
17:01:12 Quit webguest819 (Client Quit)
17:15:53 Quit casainho (Remote host closed the connection)
17:16:10 Quit TheSeven (Ping timeout: 260 seconds)
17:16:40 Join freddyb [0] (~chatzilla@216.8.239.112.etczone.com)
17:17:12preglowjhMikeS: hm, ok then, i'm probably just using the changed api wrongly then
17:18:43 Join madalu [0] (~user@unaffiliated/madalu)
17:18:47freddybgevaerts: I don't think usb_drv_exit gets called anymore after r28819. My fuze stays boosted after unplugging USB.
17:19:41gevaertsfreddyb: hm, that's definitely not intended...
17:20:06gevaertsI'll have a look soon
17:21:53 Quit madalu (Remote host closed the connection)
17:23:17 Quit Bagder (Quit: Konversation terminated!)
17:24:09 Quit antil33t (Read error: Connection reset by peer)
17:24:19 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
17:26:04 Quit Dreamxtreme (Ping timeout: 255 seconds)
17:28:32 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
17:38:34freddybI didn't see any obvious fix.
17:51:24 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93)
17:55:08 Part Zagor
17:55:37 Join Dreamxtreme [0] (~Dre@92.30.196.196)
17:58:20 Join WonTu [0] (~WonTu@p57B55F67.dip.t-dialin.net)
17:58:42 Part WonTu
18:00
18:00:42 Quit Dreamxtreme (Quit: Going!)
18:01:02gevaertsfreddyb: it's to do with calling usb_enable() in usb.c, which is a mess :\
18:02:12freddybWhew. I don't look at anything above four levels deep in the source. :)
18:03:01gevaertsah
18:03:04*gevaerts has a clue!
18:10:31gevaertsfreddyb: can you try http://pastebin.com/BpLLQmxN ?
18:15:47***Saving seen data "./dancer.seen"
18:16:05freddybGive me a minute
18:17:05 Quit merbanan (Ping timeout: 265 seconds)
18:17:35 Join kadoban [0] (~kadoban@ip98-165-177-158.ph.ph.cox.net)
18:22:32freddybgevaerts: that seems to do the trick.
18:22:48gevaertsgreat!
18:22:59gevaertsThe code says it should, so that's all good :)
18:23:15*gevaerts likes it when test results and code agree
18:24:02CIA-7New commit by gevaerts (r28874): Make usb_detect() return USB_UNPOWERED instead of USB_EXTRACTED. Without that, not all needed disconnect handling is done in usb.c
18:25:24 Quit timccc (Ping timeout: 260 seconds)
18:25:57CIA-7r28874 build result: All green
18:26:42*gevaerts is impressed by that delta
18:31:00freddybOne more mundane detail taken care of...
18:32:58 Join timccc [0] (~timccc@112.166.15.141)
18:33:17 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
18:36:30 Quit petur (Quit: Page closed)
18:37:05 Join LambdaCalculus37 [0] (~3f74f70d@rockbox/staff/LambdaCalculus37)
18:37:10 Quit timccc (Ping timeout: 255 seconds)
18:39:21LambdaCalculus37bluebroth3r: Ping
18:42:37 Join JesusFreak316 [0] (~JesusFrea@pool-173-65-66-169.tampfl.fios.verizon.net)
18:43:32 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky)
18:43:39 Join wodz [0] (~wodz@87-206-240-131.dynamic.chello.pl)
18:44:30 Join timccc [0] (~timccc@112.166.15.141)
18:45:15 Quit JesusFreak316 (Remote host closed the connection)
18:45:34wodzZagor, Badger - may I ask to upload updated mkmpioboot binaries as well as hd300 bootloader binary? I posted links here http://www.rockbox.org/irc/log-20101221#10:13:51
18:48:39 Quit timccc (Ping timeout: 240 seconds)
18:55:12 Join domonoky1 [0] (~Domonoky@agsb-5d852045.pool.mediaWays.net)
18:57:27 Quit domonoky (Ping timeout: 272 seconds)
18:58:54 Join Keripo [0] (~Keripo@dhcp0101.kin.resnet.group.upenn.edu)
19:00
19:00:34 Join stoffel [0] (~quassel@51-19.0-85.cust.bluewin.ch)
19:07:16 Join Dreamxtreme [0] (~Dre@92.30.196.196)
19:09:15 Part marines
19:09:27LambdaCalculus37wodz: Have you seen FS #11796?
19:10:54 Join JesusFreak316 [0] (~JesusFrea@pool-173-65-66-169.tampfl.fios.verizon.net)
19:11:29 Join thomasjfox [0] (~thomasjfo@dslb-088-065-020-095.pools.arcor-ip.net)
19:12:13 Join marines [0] (~marines@marvin.uplink.cz)
19:13:14 Join TheSeven [0] (~TheSeven@rockbox/developer/TheSeven)
19:15:26pixelmaLambdaCalculus37: the comment should tell you...
19:15:29 Quit thomasjfox (Remote host closed the connection)
19:16:00LambdaCalculus37pixelma: I missed that. Thanks. :)
19:16:07 Quit toffe82 (Read error: Connection reset by peer)
19:29:01 Quit LambdaCalculus37 (Quit: back to work)
19:29:37 Join GeekShadow [0] (~Antoine@reactos/tester/GeekShadow)
19:34:05 Join crwl [0] (~crwlll@dsl-jklbrasgw1-fe8edf00-29.dhcp.inet.fi)
19:37:19 Quit kadoban (Ping timeout: 264 seconds)
19:39:55 Join JesusFreak316_ [0] (~JesusFrea@pool-173-65-66-169.tampfl.fios.verizon.net)
19:41:57 Quit JesusFreak316 (Ping timeout: 245 seconds)
19:43:07 Join kugel [0] (~kugel@rockbox/developer/kugel)
19:45:38 Quit opt1 (Ping timeout: 250 seconds)
19:51:10 Join Stephencc__ [0] (~stephen@86.46.31.151)
19:51:26 Join opt1 [0] (~opt1@81-226-51-125-no179.tbcn.telia.com)
19:55:51 Join BigBambi [0] (~alex@rockbox/staff/AlexP)
19:56:19 Nick JesusFreak316_ is now known as JesusFreak316 (~JesusFrea@pool-173-65-66-169.tampfl.fios.verizon.net)
19:57:35 Quit AlexP (Disconnected by services)
19:57:41 Nick BigBambi is now known as AlexP (~alex@rockbox/staff/AlexP)
19:58:31 Quit sideral (Quit: Leaving.)
20:00
20:00:00 Quit Keripo (Quit: Leaving.)
20:05:46 Quit amiconn (Quit: No Ping reply in 64 seconds.)
20:05:53 Join amiconn [0] (quassel@rockbox/developer/amiconn)
20:15:42 Quit Guinness (Read error: Connection reset by peer)
20:15:48***Saving seen data "./dancer.seen"
20:16:32 Join merbanan [0] (~banan@c-94-255-218-107.cust.bredband2.com)
20:17:07 Join Guinness [0] (Slayer@c-68-55-111-159.hsd1.va.comcast.net)
20:18:44 Join shai_ [0] (~Shai@l192-117-110-233.cable.actcom.net.il)
20:19:00 Join esperegu_ [0] (~quassel@145.116.10.163)
20:19:01 Quit esperegu_ (Read error: Connection reset by peer)
20:19:53 Quit esperegu (Ping timeout: 250 seconds)
20:21:38 Quit GeekShadow (Read error: Connection reset by peer)
20:23:06 Quit shai (Ping timeout: 276 seconds)
20:27:31 Quit stoffel (Remote host closed the connection)
20:35:02 Join WonTu [0] (~WonTu@p57B55ED6.dip.t-dialin.net)
20:35:24 Part WonTu
20:39:02 Nick shai_ is now known as shai (~Shai@l192-117-110-233.cable.actcom.net.il)
20:40:58 Quit freddyb (Ping timeout: 260 seconds)
20:44:12 Join akbarhash [0] (~User@85.154.179.203)
20:46:09 Join captainkewllllll [0] (2669ecc2@gateway/web/freenode/ip.38.105.236.194)
20:47:33 Join kadoban [0] (~kadoban@ip98-165-177-158.ph.ph.cox.net)
20:48:53 Quit captainkewllllll (Client Quit)
20:53:07 Join designate72 [0] (~aaron@adsl-065-013-002-216.sip.asm.bellsouth.net)
20:54:52 Part marines
20:55:03 Join marines [0] (~marines@marvin.uplink.cz)
20:58:00 Quit akbarhash (Quit: Leaving)
20:58:16 Join akbarhash [0] (~User@85.154.179.203)
20:58:16 Quit akbarhash (Client Quit)
20:58:49 Join Freddy-PSP [0] (~alfredo@host3-147-dynamic.13-79-r.retail.telecomitalia.it)
21:00
21:10:19 Join freddyb [0] (~chatzilla@216.8.239.112.etczone.com)
21:12:13 Part opt1
21:30:06 Join Pun [0] (~pun@c-24-14-166-48.hsd1.il.comcast.net)
21:36:01 Part Freddy-PSP ("I wish I had a bigger one")
21:37:14 Join sideral [0] (~sideral@unaffiliated/sideral)
21:39:27PunHello, I am running the latest build of rockbox (r28874-101221) on my Sandisk FuseV2... When in the "now playing" screen, the "play/pause", "skip foreward" and "skip backward" buttons do not do anything... These buttons work fine in the menus... This issue was present in older builds as well, but i couldn't tell you which ones... I am using the "CabbieV2" theme, but the issue happens even when using the failsafe theme... Can anyone help??
21:40:16gevaertsPun: do you have the "Party mode" setting enabled?
21:42:45PunWow, thank you!! I didn't remeber turning it on (nor did i even know what it did until now), but yes, it was on, and turning it off fixed the problem...
21:43:00gevaertsYes, that's what that setting is for :)
21:45:21PunThanks!! By the way, has any new work been done on making the FuseV2 do USB connections from within rockbox yet?? Last I heard, there was something unexplainable wrong so it was dumped back out onto the original firmware...
21:45:52gevaertsI don't think there's been much progress there yet
21:45:55AlexPStill not enabled
21:46:02gevaertsThe fuzev2 is not my area though
21:46:47 Part marines
21:46:58 Join marines [0] (~marines@marvin.uplink.cz)
22:00
22:01:01PunAlso, something little: when in the Main->Playlists->'View Current Playlist' menu, pressing the back button goes all the way back to the main menu... Is this intended, becuase it seems like it should go back to the playlists menu...
22:01:36 Part marines
22:01:45 Join marines [0] (~marines@marvin.uplink.cz)
22:07:07 Join Strife89 [0] (~Strife89@adsl-80-156-175.mcn.bellsouth.net)
22:09:01 Quit evilnick (Ping timeout: 265 seconds)
22:09:40 Quit evilnick_B (Quit: Page closed)
22:15:52***Saving seen data "./dancer.seen"
22:38:13 Join [Saint] [0] (S_a_i_n_t@203.184.2.115)
22:38:22 Quit bmbl (Quit: Verlassend)
22:47:46 Quit mc2739 (Ping timeout: 265 seconds)
22:49:11 Quit Guest60004 (Ping timeout: 255 seconds)
22:49:39 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
22:50:06 Quit mikroflops (Ping timeout: 265 seconds)
22:51:52 Join mikroflops [0] (~yogurt@h-34-71.A238.priv.bahnhof.se)
22:54:09wodzWhere is the file which define default FM screen layout? I thought it was .fms but can't find one
22:55:58 Quit benedikt93 (Quit: Bye ;))
22:57:04 Part marines
22:57:36 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon)
23:00
23:01:51 Quit amiconn (Disconnected by services)
23:01:52 Quit pixelma (Disconnected by services)
23:01:52 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
23:01:54 Join pixelma_ [0] (quassel@rockbox/staff/pixelma)
23:01:56 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma)
23:02:09 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
23:04:51 Join evilnick [0] (~evilnick@cpe-24-193-43-185.nyc.res.rr.com)
23:05:27 Join LambdaCalculus37 [0] (~rmenes@65.88.88.69)
23:05:27 Quit LambdaCalculus37 (Changing host)
23:05:27 Join LambdaCalculus37 [0] (~rmenes@rockbox/staff/LambdaCalculus37)
23:05:39 Join farlepet [0] (~42bcf0de@giant.haxx.se)
23:06:02pixelmawodz: it's built-in somewhere, you should find it when grepping for some specific tags. Why?
23:06:50 Quit farlepet (Client Quit)
23:08:51wodzI would like to have cabbie style FM :-)
23:09:12 Join Feisar [0] (~jljhook@irkki.fi)
23:09:38 Nick Feisar is now known as Guest30210 (~jljhook@irkki.fi)
23:10:18 Join thomasjfox [0] (~thomasjfo@dslb-088-065-020-095.pools.arcor-ip.net)
23:11:59pixelmanot an easy task, at least I don't want to lose important info and there is some especially on the hwcodec target's radio screen as they also record radio from the radio screen
23:12:22wodzno problem - I just want to do this for my own use
23:13:16wodza here it is: apps/radio/radio_skin.c
23:13:17pixelmaI think you are not the only one wanting it, and it makes sense to have one style for the complete UI as far as possible
23:14:09pixelmabut why would you want to change the hardcoded one for your use then and not just load your own fms?
23:14:56wodzI just want to have template, I don't want to change default
23:15:08 Quit JdGordon (Ping timeout: 264 seconds)
23:15:22pixelmaaha
23:24:06 Quit domonoky1 (Quit: Leaving.)
23:25:21 Quit designate72 (Ping timeout: 260 seconds)
23:26:55 Quit Guest30210 (Ping timeout: 276 seconds)
23:27:46 Quit komputes (Quit: I haven't slept for ten days, because that would be too long.)
23:28:59 Quit kevku (Read error: Operation timed out)
23:39:32 Quit LambdaCalculus37 (Quit: This computer has gone to sleep)
23:46:47 Quit TheLemonMan (Quit: free(me))
23:55:29 Quit thomasjfox (Remote host closed the connection)

Previous day | Next day