.. |
common
|
Fixed FS#7849
|
2008-04-15 18:34:20 +00:00 |
decompressor
|
Removed executable flag
|
2007-01-09 23:29:07 +00:00 |
drivers
|
Make the transparent bitmaps work on Gigabeat S.
|
2008-04-15 13:06:29 +00:00 |
export
|
Make the gigabeat S bootloader compile again. Don't know if it still works.
|
2008-04-15 13:35:41 +00:00 |
include
|
FS#7598 - Dircache support for multivolume targets (by Phil Light).
|
2008-03-11 19:39:26 +00:00 |
target
|
Kill some D2 yellows with a simplistic Rolo implementation and NAND driver cleanup. Correct some comments in crt0.s and remove two erroneous null words from rockbox.bin
|
2008-04-15 20:02:24 +00:00 |
test
|
Do core interrupt masking in a less general fashion and save some instructions to decrease size and speed things up a little bit. Small fix to a few places where interrupts would get enabled again where they shouldn't have been (context switching calls when disabled).
|
2008-03-26 01:50:41 +00:00 |
usbstack
|
only reconnect mass storage if there is actually an active usb connection, with mass storage enabled
|
2008-04-13 17:16:50 +00:00 |
arabjoin.c
|
|
|
arabjoin.h
|
|
|
ata_idle_notify.c
|
It makes more sense for the callback registrar to decide if its a "oneshot" then the callback caller.
|
2008-03-17 05:22:53 +00:00 |
backlight.c
|
1st/2nd Gen: Make backlight inversion adaption in the greyscale library work again. is_backlight_on() can now be called from COP.
|
2008-04-06 15:15:44 +00:00 |
bidi.c
|
code police, no functional changes
|
2007-07-30 22:33:31 +00:00 |
buffer.c
|
|
|
COPYING
|
|
|
debug.c
|
Fix SH1 debug builds.
|
2007-03-02 20:03:41 +00:00 |
eeprom_settings.c
|
Prepare core support for the iriver bootloader supporting ROM images
|
2007-01-12 18:34:00 +00:00 |
enc_base.c
|
Recording: Add AIFF recording to SWCODEC. Note: AIFF playback chokes on sample rates other than 44.1kHz whether recorded or created and saved with an external program. Recorded files will still open in an external editor however.
|
2006-11-24 19:49:04 +00:00 |
events.c
|
It makes more sense for the callback registrar to decide if its a "oneshot" then the callback caller.
|
2008-03-17 05:22:53 +00:00 |
font.c
|
Fix 64 bit simulator warning.
|
2007-10-02 17:04:56 +00:00 |
font_cache.c
|
Make a couple of private functions static
|
2008-04-12 17:08:35 +00:00 |
general.c
|
mpegplayer: Make playback engine fully seekable and frame-accurate and split into logical parts. Be sure to have all current features work. Actual UI for seeking will be added soon. Recommended GOP size is about 15-30 frames depending on target or seeking can be slow with really long GOPs (nature of MPEG video). More refined encoding recommendations for a particular player should be posted soon.
|
2007-12-29 19:46:35 +00:00 |
hangul.c
|
|
|
hotswap.c
|
Hotswap code shuffling: Fix yellow. Simplify some target function access. Keep fat lock access from compiling for Ondios - think of a nicer way later.
|
2008-03-12 11:08:41 +00:00 |
id3.c
|
Move a function to gwps-common.c because it belongs there
|
2008-04-12 13:25:16 +00:00 |
ifp_usb_serial.c
|
move the ifp7xx usb serial driver files to more specific names, to make the "usb_serial" name available for more general usb class driver use
|
2008-03-02 18:16:24 +00:00 |
kernel.c
|
Serial driver for imx31. Perhaps not 100% but maybe 80-90% (future developments will tell). Factor-out the mc13783 stuff and make that driver a layer above the SPI. TODO: start processing PMIC interrupts. Start a clkctl API for imx31 (we'll see if this sticks around but it seems reasonable here). Misc. stuff for convenience/neatness.
|
2008-04-11 08:51:27 +00:00 |
logf.c
|
implement logf over usb-serial. Needs USB_SERIAL defined in usb_core.h to work, and needs to be enabled in the debug menu.
|
2008-03-02 20:45:33 +00:00 |
lru.c
|
|
|
Makefile
|
Prevent sysfont.h being regenerated during every build.
|
2007-01-18 00:46:52 +00:00 |
mp3_playback.c
|
Do core interrupt masking in a less general fashion and save some instructions to decrease size and speed things up a little bit. Small fix to a few places where interrupts would get enabled again where they shouldn't have been (context switching calls when disabled).
|
2008-03-26 01:50:41 +00:00 |
mp3data.c
|
Some more debug output disabling.
|
2008-04-07 19:33:48 +00:00 |
mpeg.c
|
Revert my earlier const madness, we'll keep the parameter lists simple.
|
2008-03-28 12:51:33 +00:00 |
panic.c
|
iAudio M3: ADC driver, making buttons and battery voltage reading work. * Disable the multi-colour LED for now to save power. Proper handling will be added later. * Make reboot on button press work on iAudio X5, M5, M3 in panicf(), and on M3 in UIE().
|
2008-03-17 00:19:23 +00:00 |
pcm.c
|
Enable nocache sections using the linker. PP5022/4 must use SW_CORELOCK now with shared variables in DRAM (it seems swp(b) is at least partially broken on all PP or I'm doing something very wrong here :\). For core-shared data use SHAREDBSS/DATA_ATTR. NOCACHEBSS/DATA_ATTR is available whether or not single core is forced for static peripheral-DMA buffer allocation without use of the UNCACHED_ADDR macro in code and is likely useful on a non-PP target with a data cache (although not actually enabled in config.h and the .lds's in this commit).
|
2008-04-06 04:34:57 +00:00 |
pcm_record.c
|
Enable nocache sections using the linker. PP5022/4 must use SW_CORELOCK now with shared variables in DRAM (it seems swp(b) is at least partially broken on all PP or I'm doing something very wrong here :\). For core-shared data use SHAREDBSS/DATA_ATTR. NOCACHEBSS/DATA_ATTR is available whether or not single core is forced for static peripheral-DMA buffer allocation without use of the UNCACHED_ADDR macro in code and is likely useful on a non-PP target with a data cache (although not actually enabled in config.h and the .lds's in this commit).
|
2008-04-06 04:34:57 +00:00 |
pcm_sampr.c
|
Forgot to use cvs add on a few new files in the fresh checkout I used. woops.
|
2006-11-06 18:18:05 +00:00 |
powermgmt.c
|
FS#8871 by Tomasz Wasilczyk, avoid negative runtime estimation (that would later be cast to an unsigned giving huge values
|
2008-04-12 07:14:13 +00:00 |
profile.c
|
|
|
README
|
|
|
replaygain.c
|
Remove some debug code. Remove some unnecessary checks.
|
2007-08-25 10:56:22 +00:00 |
rolo.c
|
Kill some D2 yellows with a simplistic Rolo implementation and NAND driver cleanup. Correct some comments in crt0.s and remove two erroneous null words from rockbox.bin
|
2008-04-15 20:02:24 +00:00 |
rom.lds
|
Fixed the rombox generation for SH1.
|
2007-01-08 19:19:23 +00:00 |
scroll_engine.c
|
Add viewport capabilities to all the LCD drivers, and adapt scrolling code. This is the firmware/ part of FS#8385 - the changes to the WPS code still need more work and will be committed at a later date. NOTE: There are no user-visible changes with this commit - just the infrastructure.
|
2008-01-07 20:34:11 +00:00 |
sound.c
|
Kill warnings that annoy me when building for Gigabeat S.
|
2008-04-15 14:44:32 +00:00 |
SOURCES
|
Add GPIO manager. Get the PMIC interrupt handling working (along with power button and HP detect). Add some reg field defined instead of using raw numbers. Add PMIC info to debug ports screen. Refine PMIC driver ops a little bit.
|
2008-04-12 16:56:45 +00:00 |
system.c
|
Enable nocache sections using the linker. PP5022/4 must use SW_CORELOCK now with shared variables in DRAM (it seems swp(b) is at least partially broken on all PP or I'm doing something very wrong here :\). For core-shared data use SHAREDBSS/DATA_ATTR. NOCACHEBSS/DATA_ATTR is available whether or not single core is forced for static peripheral-DMA buffer allocation without use of the UNCACHED_ADDR macro in code and is likely useful on a non-PP target with a data cache (although not actually enabled in config.h and the .lds's in this commit).
|
2008-04-06 04:34:57 +00:00 |
thread.c
|
iPod Video 30Gig doesn't seem to need the ata locking hack so we'll just attempt to remove it for this one. Works for me on 5.5g.
|
2008-04-11 10:39:24 +00:00 |
timer.c
|
Kill warnings that annoy me when building for Gigabeat S.
|
2008-04-15 14:44:32 +00:00 |
tuner.c
|
e200: Tuner driver needs to yield alot and also be mutexed. FM debug screen got broken again and was ignoring cancellation and not drawing the lines.
|
2007-07-14 22:00:50 +00:00 |
usb.c
|
Hopefully fix FS#8506 (OF cant be loaded on some PP targets). also hopefully fixes usb detection for at least e200
|
2008-04-07 13:00:28 +00:00 |