..
common
Tagcache update: Support removal of entries and no longer the need for
2006-07-10 16:22:03 +00:00
decompressor
Fixed dependency problem in compressed firmware build. (archos recorder v1)
2006-03-07 23:52:33 +00:00
drivers
H300: Rudimentary driver for the ISP1362 USB on-the-go controller. For now it just sends the chip to sleep, solving the poor battery runtime issue.
2006-06-16 17:34:18 +00:00
export
Tagcache update: Support removal of entries and no longer the need for
2006-07-10 16:22:03 +00:00
include
Tagcache update: Support removal of entries and no longer the need for
2006-07-10 16:22:03 +00:00
target/coldfire/iaudio /x5
While waiting further and better improvements, this fixes the bug to
2006-04-27 21:11:18 +00:00
test
Replaced remaining '#pragma interrupt' with __attribute__((interrupt_handler)). It's cleaner this way, and fixes sh-elf-gcc 3.4.x builds with -Os or -O2.
2006-04-26 20:22:27 +00:00
app.lds
moved the LCD framebuffer to IRAM for iAudio X5 - gives ~40% speed boost
2006-04-11 10:37:37 +00:00
arabjoin.c
move some code from .h files to .c files and polish unicode.c a bit
2005-12-06 15:04:48 +00:00
arabjoin.h
arabjoin.h was emptied by accident
2005-12-06 15:15:54 +00:00
backlight.c
Work-in-progress rework of charging status reading & display: * Changed several charging related HAVE_* macros into one multi-value CONFIG_CHARGING. * Always use proper macros for charging states. * Battery symbol charging animation now starts from current level on all targets with charging. Two-colour animation kept for non-b&w targets. Round down fill level while charging as before, but round to nearest pixel value for discharging on all targets. * Charging anim fixed on player. * Some code cleanup.
2006-06-06 22:23:52 +00:00
bidi.c
move some code from .h files to .c files and polish unicode.c a bit
2005-12-06 15:04:48 +00:00
bitswap.S
Added header file for bitswap, and made the fliptable global for re-use
2004-09-26 09:25:59 +00:00
boot.lds
first gigabeat commit
2006-02-24 15:42:52 +00:00
buffer.c
mp3buf renamed to audiobuf
2005-04-05 11:33:58 +00:00
COPYING
iRiver scramble and descramble code from Dave Cooper
2005-01-24 09:01:48 +00:00
crt0.S
H300: Rudimentary driver for the ISP1362 USB on-the-go controller. For now it just sends the chip to sleep, solving the poor battery runtime issue.
2006-06-16 17:34:18 +00:00
debug.c
Fixed warnings in the iFP target.
2006-02-12 23:26:18 +00:00
descramble.S
Fixed two more than 3 years old bugs in RoLo: (1) Read start address from image instead of using hard coded loadaddress+0x200. (2) Set desired stack pointer. The stack pointer used to remain wherever it was when invoking RoLo...
2005-11-28 22:42:38 +00:00
FILES
include x5 files from the target tree
2006-04-07 21:15:52 +00:00
font.c
Use correct file mode when creating files. Fixes task 5452
2006-05-30 11:26:41 +00:00
font_cache.c
Font cache now uses memmove().
2006-02-06 17:24:47 +00:00
hangul.c
Add support for loadable vkeyboard layouts
2006-03-29 16:21:42 +00:00
hwcompat.c
hw compat stub for the gmini series
2005-02-04 16:15:19 +00:00
id3.c
Fix red builds
2006-04-17 20:55:53 +00:00
kernel.c
Further iPod 3G work from Seven Le Mesle
2006-02-05 17:34:49 +00:00
logf.c
better logf
2005-06-30 15:14:33 +00:00
lru.c
waiting is over: initial unicode commit
2005-12-06 13:27:15 +00:00
Makefile
Add the target directory tree to the include path, and set the TARGET_TREE macro for the targets that use it
2006-03-07 12:45:45 +00:00
mp3_playback.c
Properly set audio_is_initialized flag for swcodec devices ad use it when initializing crossfade. This should fix the problems with resuming playback at startup.
2006-05-01 18:18:54 +00:00
mp3data.c
killed warning due to comparison signed/unsigned
2006-04-02 23:06:20 +00:00
mpeg.c
Recording buffer offset must be passed on to the firmware calls, not the other way around. Should fix yellow builds.
2006-04-30 23:18:21 +00:00
panic.c
Let panicf() also check on/play button on h300
2006-06-08 22:08:24 +00:00
pcm_playback.c
Coldfire: Use the auto-align feature in conjunction with line reads for the playback DMA. Saves a bit of memory bandwidth.
2006-05-09 23:50:50 +00:00
pcm_record.c
For iriver recording: do not boost while recording unless source is spdif. When saving to disk, boost if needed. Decreased max file size a bit for safety. Increases runtime while recording analog sources.
2006-06-30 21:24:20 +00:00
powermgmt.c
Work-in-progress rework of charging status reading & display: * Changed several charging related HAVE_* macros into one multi-value CONFIG_CHARGING. * Always use proper macros for charging states. * Battery symbol charging animation now starts from current level on all targets with charging. Two-colour animation kept for non-b&w targets. Round down fill level while charging as before, but round to nearest pixel value for discharging on all targets. * Charging anim fixed on player. * Some code cleanup.
2006-06-06 22:23:52 +00:00
profile.c
Fix profiling compilation for non-m68k targets
2006-03-09 01:37:52 +00:00
README
lets point to ../docs/README
2002-08-21 11:13:46 +00:00
replaygain.c
Allow lower cuts than -23 dB, since the code seems to work then anyway.
2006-04-06 20:33:35 +00:00
rolo.c
Show RoLo messages on remote.
2006-04-24 06:45:27 +00:00
rom.lds
Two new sections for IRAM usage: .irodata (selectable with the ICONST_ATTR attribute macro), allowing to put 'const' data into IRAM without causing a section type conflict, and .ibss (selectable with the IBSS_ATTR attribute macro) for uninitialised data. * Rockbox core: Adjusted the linker scripts and init code to not include the .ibss section in the binary, it is cleared instead. Saves ~500 bytes on archos and ~30KB on iriver. Codecs and plugins don't handle .ibss in a special way yet. * The init code properly handles empty sections now (except .stack, which should never be empty). * Unified the init code for SH1 and coldfire a bit.
2005-10-19 19:35:24 +00:00
sound.c
Iriver: Moved the handling of the UDA1380 split gain (analog preamp + decimator gain) into the UDA driver. * All: Settings structure sorted & cleaned up.
2006-05-14 23:34:24 +00:00
SOURCES
H300: Rudimentary driver for the ISP1362 USB on-the-go controller. For now it just sends the chip to sleep, solving the poor battery runtime issue.
2006-06-16 17:34:18 +00:00
system.c
Iriver: Faster ata timing.
2006-06-16 18:13:35 +00:00
thread.c
Sleep PP5020 CPU on idle.
2006-02-08 21:30:35 +00:00
timer.c
Simplification for user timer on coldfire. We define TIMER_FREQ separately anyway.
2006-04-04 01:16:11 +00:00
tuner_philips.c
H1x0: More precise tuning; corrected xtal frequency in comments + #defines.
2005-09-24 09:06:31 +00:00
tuner_samsung.c
Renamed CONFIG_HWCODEC and MASNONE to the more appropriate CONFIG_CODEC and SWCODEC, respectively.
2005-08-29 21:15:27 +00:00
usb.c
Get rid of the redundant APPLE_* macros. * Fix wrong comments in lcd-ipod.c
2006-04-08 09:08:38 +00:00
usb_serial.c
Changed endpoint 0 max packet size to 64 in order to make the driver
2006-02-12 23:18:36 +00:00