summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-05-01Use FIQ register + comments.Maurus Cuelenaere
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17297 a1c6a512-1295-4272-9138-f99709370657
2008-05-01Change the default of accessory power supply to <true>.Andree Buschmann
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17296 a1c6a512-1295-4272-9138-f99709370657
2008-05-01Introduce a small helper function that asks the user if the dynamic playlist ↵Nils Wallménius
should be erased to increase code re-use git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17295 a1c6a512-1295-4272-9138-f99709370657
2008-04-30Remove unused #define.Steve Bavin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17294 a1c6a512-1295-4272-9138-f99709370657
2008-04-30found (and fixed) by Stephane Doyon...Jonathan Gordon
"A glitch was recently introduced when backing out of context menu functions. When exiting for example the playlist viewer, or the id3 viewer, it will speak the name of the menu entry used to access that function. That's pretty confusing because it sounds like you dropped back into the menu system while we have in fact exited the context menu completely." git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17293 a1c6a512-1295-4272-9138-f99709370657
2008-04-30remove the 2nd last evil use of ata_disk_is_active() in apps/Jonathan Gordon
the last abuse is in battery bench git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17292 a1c6a512-1295-4272-9138-f99709370657
2008-04-29Fix skipping back to the start of WMA files, broken by the addition of ↵Magnus Holmgren
resume support. Not the most elegant fix perhaps, but it works for me. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17291 a1c6a512-1295-4272-9138-f99709370657
2008-04-29Remove wrong usage of '.global'. These symbols are imported, not exported.Jens Arnold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17290 a1c6a512-1295-4272-9138-f99709370657
2008-04-29Make sure the linker considers crt0*.o before all files specified on the ↵Jens Arnold
command line by using STARTUP() instead of INPUT() in the .lds. Using INPUT() makes the linker process crt0*.o after all files specified on the command line, making linking fail if there are librockbox.a members which are only referenced by crt0*.o. Remove the hackaround that was needed for building the gigabeat S bootloader before (aka UIE() problem). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17289 a1c6a512-1295-4272-9138-f99709370657
2008-04-29Cleanup some tabs and whitespaceKarl Kurbjun
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17288 a1c6a512-1295-4272-9138-f99709370657
2008-04-29yep.. I really cant spellJonathan Gordon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17287 a1c6a512-1295-4272-9138-f99709370657
2008-04-28undo some changes of my last patch... should fix wm8751 based targetsChristian Gmeiner
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17286 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Added #include <string.h> to memmove.c, memcpy.c and strcat.cBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17285 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Moved private types and constants from profile.h to profile.cBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17284 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Forgot to #include stdlib.h for atoi implementation.Bertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17283 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Small tweak for festival to correct the spelling of 'A', fixes FS#8889Nils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17282 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Cleaned up header files in bookmark.cBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17281 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Moved atoi declaration to stdlib.h. Deleted atoi.hBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17280 a1c6a512-1295-4272-9138-f99709370657
2008-04-28now build the ARM crosscompiler with support for big-endian targetsMarcoen Hirschberg
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17279 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Fixed prototype of i2c_write for plugins and for i2c-telechips (fix red/yellow).Bertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17277 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Cleaned up playblack.h header file and usage of it.Bertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17276 a1c6a512-1295-4272-9138-f99709370657
2008-04-28Update source files to include the header file for the functions they ↵Bertrik Sikken
implement, to make sure the header and the implementation is consistent (and fix it for a case where it wasn't). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17275 a1c6a512-1295-4272-9138-f99709370657
2008-04-28* introduce AUDIOHW_CAPS to define which audio codec can do what kind of ↵Christian Gmeiner
operations in hw, e.g. setting bass * added documentation why and when we need the software based prescaler * implement audiohw_set_bass and audiohw_set_treble for mas35xx * clean up sound_set_bass and sound_set_treble * simplify some #ifdef logic * fix special handling of WM8751 - looking for tester :) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17274 a1c6a512-1295-4272-9138-f99709370657
2008-04-28get rid of the last mr500 yellow (again :p )Jonathan Gordon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17273 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Gigabeat S: Define the used ADC channels, get the channel order correct, ↵Michael Sevakis
enable charge current channel conversion. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17272 a1c6a512-1295-4272-9138-f99709370657
2008-04-27IMX31: Try to catch the interrupt that was the reason irq_handler was called ↵Michael Sevakis
since it never should be. The bootloader occasionally shows one but it's not saying what. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17271 a1c6a512-1295-4272-9138-f99709370657
2008-04-27IMX31: Use template structures to access modules' registers from a base ↵Michael Sevakis
address (as for i2c) which makes drivers look nicer and makes array accesses of registers simpler. Throw in minor fix to fiq_handler dispatcher, otherwise no functional changes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17270 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Add USB PID for Ipod Classic as incompatible variant of the Video. Remove ↵Dominik Riebeling
PID for Nano -- detection is done using ipodpatcher only (PIDs are not unique). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17269 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Fix red (missing header file)Bertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17268 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Updated use of events.h header file.Bertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17267 a1c6a512-1295-4272-9138-f99709370657
2008-04-27FS#8916 - updated chinese translations by harry tuBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17266 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Updated panicf in remove_event. Also fixed some comments.Bertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17265 a1c6a512-1295-4272-9138-f99709370657
2008-04-27rbutil: fix a broken setting.Dominik Wenger
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17264 a1c6a512-1295-4272-9138-f99709370657
2008-04-27percent-encode the query parts of a request too, not only the path.Dominik Riebeling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17263 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Fix red (#ifdef hell).Rob Purchase
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17262 a1c6a512-1295-4272-9138-f99709370657
2008-04-27FS#8708: D2/m:robe500 touchscreen keymaps by Andreas Mueller.Rob Purchase
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17261 a1c6a512-1295-4272-9138-f99709370657
2008-04-27fix redJonathan Gordon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17260 a1c6a512-1295-4272-9138-f99709370657
2008-04-27add more registers for the tsc2100Jonathan Gordon
hopefully working volume control, mute definatly works. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17259 a1c6a512-1295-4272-9138-f99709370657
2008-04-27remove the last mr500 yelloJonathan Gordon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17258 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Enable 'touchscreen areas' on the D2, based on JdGordon's m:robe code. ↵Rob Purchase
Disable the bootloader debug screen, as that stuff is all available from the Debug menu now. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17257 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Use smaller data types in structs which are in big arrays to save memoryNils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17256 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Add description of the s/pdif-enable option to the manual (work actually ↵Frank Gevaerts
done by Alex Parker) (FS#8941) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17255 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Gigabeat S: Implement i2c driver - transmit works but no testing of ↵Michael Sevakis
receiving which will get a chance later. Add some seeds for codec driver. Correct a few #defines. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17254 a1c6a512-1295-4272-9138-f99709370657
2008-04-27Move the Telechips TCC77x SSD1815 LCD driver up a level in the target tree - ↵Dave Chapman
it isn't specific to the DAX. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17253 a1c6a512-1295-4272-9138-f99709370657
2008-04-26- change the usb class driver framework to allow for device classes with ↵Frank Gevaerts
more than one interface or more than one endpoint pair - move the charging-only dummy driver out of usb_core git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17252 a1c6a512-1295-4272-9138-f99709370657
2008-04-26Const police raid, making a lot of pointers to lang strings const and ↵Nils Wallménius
removing some ugly casting git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17251 a1c6a512-1295-4272-9138-f99709370657
2008-04-25minor code policing and some warning removalsDaniel Stenberg
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17249 a1c6a512-1295-4272-9138-f99709370657
2008-04-25m:robe 100 - backlight PWM fadingRobert Kukla
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17248 a1c6a512-1295-4272-9138-f99709370657
2008-04-25rbutil: fix another warningDominik Wenger
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17247 a1c6a512-1295-4272-9138-f99709370657
2008-04-24Kill some warnings.Dominik Riebeling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17246 a1c6a512-1295-4272-9138-f99709370657