.. |
common
|
Fix FS#12325 - screen corruption on early usb.
|
2011-10-28 16:38:52 +00:00 |
decompressor
|
Fix assembler .size directives. Currently used binutils don't complain, but 2.21.1 treats these as errors.
|
2011-11-09 19:20:33 +00:00 |
drivers
|
Commit FS#12352 by Stanislav Chizhik. Add support for the PCF50635. Enables detection of USB power sources.
|
2011-11-15 20:37:47 +00:00 |
export
|
fuze+: fix backlight to have a real zero
|
2011-11-14 19:46:09 +00:00 |
include
|
Finish r30818 revert
|
2011-10-22 08:23:52 +00:00 |
libc
|
Fix reds, inclusion of C files into plugins is tricky.
|
2010-12-02 21:29:05 +00:00 |
target
|
Commit FS#12352 by Stanislav Chizhik. Add support for the PCF50635. Enables detection of USB power sources.
|
2011-11-15 20:37:47 +00:00 |
test
|
Added dummy autoconf.h for fat test.
|
2011-02-28 10:51:45 +00:00 |
usbstack
|
Use array index 'i' only -after- bounds check
|
2011-10-21 18:51:19 +00:00 |
arabjoin.c
|
|
|
arabjoin.h
|
|
|
ata_idle_notify.c
|
Correct wrong usage of event callbacks all over the place. It's not supposed to return anything, and should take a data parameter.
|
2009-10-20 21:54:44 +00:00 |
backlight-sw-fading.c
|
|
|
backlight.c
|
All kernel objects in code shared amongs targets (core, plugins, codecs) should be declared SHAREDBSS_ATTR as any core could potentially touch them even though they seem only to involve threads on one core. The exception is target code for particular CPUs where proper allocation is fixed. playlist.c was a little odd too-- use one mutex for the current playlist and a separate one for created playlists (still pondering the necessity of more than one).
|
2011-02-14 11:27:45 +00:00 |
bidi.c
|
Fix further tabs
|
2010-01-03 10:50:34 +00:00 |
buffer.c
|
Fix errors and warnings.
|
2011-08-14 15:37:05 +00:00 |
buflib.c
|
Fix audio_get_buffer() implementation on hwcodec, to be similar to the swcodec one. Should make hwcodec bood again.
|
2011-10-09 12:30:37 +00:00 |
COPYING
|
|
|
core_alloc.c
|
core_alloc: Provide a tiny test allocation, which can be freed for debug purposes.
|
2011-10-05 18:32:19 +00:00 |
debug.c
|
Redirect (L)DEBUGFs to adb logcat in DEBUG enabled builds.
|
2010-09-20 17:38:47 +00:00 |
eeprom_settings.c
|
|
|
enc_base.c
|
|
|
events.c
|
Convert lcd_activation callbacks to use the event system to allow for multiple parallel callbacks (for custom statusbar).
|
2009-10-20 21:54:59 +00:00 |
firmware.make
|
Rename/change SIMVER to APP_TYPE in the Makefiles.
|
2010-07-10 13:49:49 +00:00 |
font.c
|
Redo r30826 (and hopefully not reintroduce font issues) which cleans up the font API. FONT_UI is deprecated, use screens[screen].getuifont() instead (and .setuifont() to set it after a font has been loaded)
|
2011-11-08 10:09:33 +00:00 |
font_cache.c
|
Make local functions and variables static where possible
|
2011-11-03 23:32:49 +00:00 |
general.c
|
Ged rid of uisimulator/common/io.c for android builds.
|
2010-09-01 21:29:34 +00:00 |
hangul.c
|
|
|
ifp_usb_serial.c
|
firmware/ : use lcd_putsf() (only in debug code)
|
2010-08-28 23:12:11 +00:00 |
kernel.c
|
Fix "variable 'result' set but not used" warning
|
2011-07-19 21:06:30 +00:00 |
load_code.c
|
Disable buffering codecs (and code generally) on RaaA.
|
2011-02-09 20:27:23 +00:00 |
logf.c
|
Fix a logf bug which would trigger undefined behaviour(and probably crash) when both DEBUG, CONFIG_PLATFORM & PLATFORM_HOSTED are enable
|
2010-08-02 09:10:35 +00:00 |
lru.c
|
Revert r30818
|
2011-10-22 08:02:38 +00:00 |
panic.c
|
Rockbox as an application: Replace many occurences of #ifdef SIMULATOR with #if (CONFIG_PLATFORM & PLATFORM_HOSTED) (or equivalently).
|
2010-06-21 16:53:00 +00:00 |
pcm.c
|
Shuffle some functions around so that interfacing with playback.c in particular isn't required. Though playback does finish the audio init, pcm doesn't care who does it.
|
2011-09-01 12:15:43 +00:00 |
pcm_mixer.c
|
Use playback channel directly for peakmeters and plugins using peak calculation. Also, for now, don't allow mixer playback to overlap recording, even if full duplex works.
|
2011-07-02 11:55:38 +00:00 |
pcm_sampr.c
|
|
|
powermgmt.c
|
FS:12299 Font glyph cache is no longer saved. Each font will now have its own glyph cache file with the extension '.gc' Includes a temporary fix that delays saving the file to prevent the creation of multiple gc files with same name. Mostly JD Gordon's code.
|
2011-10-16 13:18:46 +00:00 |
profile.c
|
Remove last traces of sprintf.h
|
2010-05-07 02:13:47 +00:00 |
README
|
|
|
rolo.c
|
GSoC/Buflib: Add buflib memory alocator to the core.
|
2011-08-30 14:01:33 +00:00 |
rom.lds
|
|
|
screendump.c
|
Really fix yellow: Rename BMP_LINESIZE and BMP_BPP to get rid of the macro name collision
|
2010-10-25 12:52:02 +00:00 |
scroll_engine.c
|
All kernel objects in code shared amongs targets (core, plugins, codecs) should be declared SHAREDBSS_ATTR as any core could potentially touch them even though they seem only to involve threads on one core. The exception is target code for particular CPUs where proper allocation is fixed. playlist.c was a little odd too-- use one mutex for the current playlist and a separate one for created playlists (still pondering the necessity of more than one).
|
2011-02-14 11:27:45 +00:00 |
sdmmc.c
|
Various minor cleanups
|
2010-08-01 10:07:05 +00:00 |
sound.c
|
imx233/fuze+: add volume handling to sound.c
|
2011-10-18 22:00:53 +00:00 |
SOURCES
|
imx233: don't include debug-imx233.c in bootloader
|
2011-11-06 13:30:09 +00:00 |
storage.c
|
Change the thread api a bit.
|
2011-03-05 17:48:06 +00:00 |
system.c
|
Rockbox as an application: Replace many occurences of #ifdef SIMULATOR with #if (CONFIG_PLATFORM & PLATFORM_HOSTED) (or equivalently).
|
2010-06-21 16:53:00 +00:00 |
thread.c
|
Change the thread api a bit.
|
2011-03-05 17:48:06 +00:00 |
timer.c
|
|
|
tuner.c
|
Implement tea5767 tuner detection - FS#11714 by me
|
2010-11-05 17:04:18 +00:00 |
usb.c
|
usb: add forgotten break in usb switch, this could lead to unwanted code being execute like USB_QUIT to be sent on hotswap !
|
2011-10-27 10:35:45 +00:00 |