summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* PCM decoder: Fix a logic error in a DEBUG assertionGregory Nutt2014-07-281-2/+1
|
* Update ChangeLogsGregory Nutt2014-07-282-0/+5
|
* LPC17xx: DC updates from Max. Also fixes some syntax errors that I ↵Gregory Nutt2014-07-282-85/+71
| | | | introduced in the last commit.
* uIP webserver: Missing logic to close sockets on loop termination. From Max.Gregory Nutt2014-07-281-1/+6
|
* PCM: Forget to increment pointers in one part of sub-samplingGregory Nutt2014-07-271-0/+10
|
* PCM: Major simplification of the sub-sampling design. Now need no extra ↵Gregory Nutt2014-07-271-551/+92
| | | | buffers because sub-sampling is done in place
* PCM: remove partial sample buffer. Not neededGregory Nutt2014-07-271-78/+53
|
* Update ChangeLogsGregory Nutt2014-07-272-1/+5
|
* NxPlayer needs to set curbyte field to zero before enqueuing a buffer. ↵Gregory Nutt2014-07-272-3/+3
| | | | Otherwise, it looks like beginning of the buffer has already been consumed
* Update ChangeLogsGregory Nutt2014-07-272-2/+11
|
* Misc bugfixes while integrating fast forward by sub-samplingGregory Nutt2014-07-272-11/+28
|
* CNxWM::CMediaPlayer: Correct handling of increments to sub-sampling rateGregory Nutt2014-07-272-22/+23
|
* PCM: First cut at fast forward by subsamplingGregory Nutt2014-07-272-34/+829
|
* First cut implementation of fast forward and rewind controlsGregory Nutt2014-07-272-29/+115
|
* Add definitions to support fast forward and rewind configurationGregory Nutt2014-07-272-14/+15
|
* NxWM::CMediaPlayer: successive presses on fast forward or rewind button now ↵Gregory Nutt2014-07-272-17/+47
| | | | increase the subsampling, wrapping back to 2X when the maximum of 16x is reached.
* Update ChangeLogsGregory Nutt2014-07-272-0/+6
|
* Move subsampling rate definitions from nxplayer.h to audio.hGregory Nutt2014-07-273-20/+20
|
* Updated ChangeLogGregory Nutt2014-07-271-0/+3
|
* NxWM::CMediaPlayer: Need to remember last text box selection or else each ↵Gregory Nutt2014-07-272-1/+12
| | | | new Value Change event from the volume slider is confused with a new file selection
* ARM: Move L2 cache initialization to much later in the sequenceGregory Nutt2014-07-278-38/+47
|
* Update ChangeLogGregory Nutt2014-07-261-0/+17
|
* ARMv7-A L2 Cache currently depends on EXPERIMENTAL because it does not yet ↵Gregory Nutt2014-07-261-1/+1
| | | | work properly
* ARMv7 L2 Cache: Minor bugfixes/improvementsGregory Nutt2014-07-262-16/+41
|
* Enables cache early in boot-up sequenceGregory Nutt2014-07-261-2/+7
|
* Change naming from cp_XYZ_cache() to arch_XYP_cache() so that all cache ↵Gregory Nutt2014-07-2614-107/+107
| | | | operations will pick up L2 support if it is enabled
* New cache.h file. Renames cp15_XYZ_cache() to arch_XYZ_cache() and addes ↵Gregory Nutt2014-07-261-0/+191
| | | | L2 cache support if L2 cache is enabled
* Rename ARMv7-A cache.h to cp15_cache.h. Things will be broken on this ↵Gregory Nutt2014-07-261-5/+5
| | | | commit until I get the new cache.h in place.
* arch/arm/src/armv7-a/arm_l2cc_pl310.c, l2cc.h, l2cc_pl310.h, Kconfig: Add ↵Gregory Nutt2014-07-265-20/+1217
| | | | initiali support for the ARM L2CC-PL310 L2 cache.
* ARMv7-A: L2CC PL310 address filtering is an optional featureGregory Nutt2014-07-252-3/+10
|
* ARMv7-A: Add missing L2CC PL310 bit definitionsGregory Nutt2014-07-252-5/+85
|
* Update ChangeLogsGregory Nutt2014-07-251-0/+3
|
* rch/arm/armv7-a/l2cc_pl310.h: Move arch/arm/sama5/chip/sam_l2cc.h to ↵Gregory Nutt2014-07-254-75/+96
| | | | arch/arm/armv7-a/l2cc_pl310.h. Adjust the two corresponding Kconfig files as well.
* NxWM: Fix default ICON name. g_playBitmap24x24 does not exist, should be ↵Gregory Nutt2014-07-252-6/+6
| | | | g_playBitmap
* Audio: Fix some compilation issues introduced with some of the recent changesGregory Nutt2014-07-253-10/+12
|
* Update ChangeLogsGregory Nutt2014-07-252-0/+5
|
* NxWM::CMediaPlayer: Revise state logic. We need an additional state for the ↵Gregory Nutt2014-07-252-58/+98
| | | | case where a file is selected, but playing has not yet start. Several other state-related fixes
* PCM Decoder: Add missing audio callback forwarding logicGregory Nutt2014-07-251-1/+62
|
* Costmetic changeGregory Nutt2014-07-251-13/+13
|
* Updated READMEGregory Nutt2014-07-251-9/+32
|
* NxWM:CMediaPlayer: Fix some string handling and memory allocation errorsGregory Nutt2014-07-241-7/+8
|
* Remove some warningsGregory Nutt2014-07-241-3/+9
|
* 3rd time is a charm. Max is right, the initial priority setting should be ↵Gregory Nutt2014-07-241-1/+1
| | | | NVIC_SYSH_PRIORITY_MIN
* Update ChangeLogGregory Nutt2014-07-241-0/+20
|
* Oops, should have been NVIC_SYSH_PRIORITY_DEFAULTGregory Nutt2014-07-241-1/+1
|
* LPC17 Ethernet: Added option to use the kernel worker thread to do most of ↵Gregory Nutt2014-07-242-21/+133
| | | | the workload with CONFIG_NET_WORKER_THREAD option in Kconfig. Eliminated a problem with PHY DP83848C : it doesn't need a specific initialization on mbed. Critical bufix: From time to time (after some hours) the Ethernet receiver would lose one receive interrupt and the IP stack never recover because there is no receive watchdog as the transmit watchdog. From Max
* Added burstmode ADC conversion mode, with CONFIG_ADC_BURSTMODE option in ↵Gregory Nutt2014-07-241-8/+223
| | | | Kconfig. From Max
* Mostly cosmetic changes from MaxGregory Nutt2014-07-243-66/+25
|
* Eliminate warnings. From MaxGregory Nutt2014-07-241-13/+6
|
* Port ADC, DAC, and PWM logic from the configs/zkit-arm-1769. From Max.Gregory Nutt2014-07-245-11/+502
|