summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Minor corrections during integration of link status monitorGregory Nutt2014-08-173-3/+4
|
* Update ChangeLogsGregory Nutt2014-08-171-0/+6
|
* Extend the NSH network initialization logic. There is now an option that ↵Gregory Nutt2014-08-174-10/+353
| | | | will create a network monitor thread that will monitor the state of the link. When the link goes down, the code will attempt to gracefully put the Ethernet driver in a down state; When the link comes back, the code will attempt to bring the network back up.
* CosmeticGregory Nutt2014-08-171-0/+1
|
* More of the PHY event notification logic change: Fix some compile errors ↵Gregory Nutt2014-08-161-1/+0
| | | | when full feature is enabled; Add some missing ioctol logic
* Update ChangeLogs and ReleaseNotes for 7.4 release (not complete)Gregory Nutt2014-08-141-2/+4
|
* Sudoku needs a .gitignoreGregory Nutt2014-08-131-0/+11
|
* Update ChangeLogGregory Nutt2014-08-111-0/+2
|
* Add a Sudoku gameGregory Nutt2014-08-117-4/+728
|
* Cosmetic changed, updated README files, improved commentsGregory Nutt2014-08-101-0/+1
|
* Change all time conversions. Yech. New timer units in microseconds breaks ↵Gregory Nutt2014-08-072-2/+2
| | | | all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-077-29/+21
|
* Update TODO and ChangeLogGregory Nutt2014-08-061-0/+5
|
* NSH networking: There is now a configuration option that will bring up the ↵Gregory Nutt2014-08-064-8/+117
| | | | network on an separate thread. Since the network bring-up is asynchronous, there are not serial console start-up delays due to the network negotiation time.
* Update ChangeLogsGregory Nutt2014-08-061-0/+4
|
* NSH Networking: Also add an option to let platform-specific logic select ↵Gregory Nutt2014-08-063-226/+295
| | | | the MAC address.
* NSH Networking: Software assigned MAC address is now configurable. From LazloGregory Nutt2014-08-063-6/+36
|
* Update ChangeLogsGregory Nutt2014-08-051-2/+6
|
* Break reading and enqueueing of audio buffers into two steps so that errors ↵Gregory Nutt2014-08-051-49/+189
| | | | in enqueueing can be distinguished for errors in reading. Errors in enqueueing signal a downstream decoder error. Add logic to gracefully recover from downstream decoder errors.
* Costmetic changesGregory Nutt2014-08-051-21/+20
|
* Update ChangeLogGregory Nutt2014-08-011-0/+4
|
* NxPlayer: Fix an error I introduced: Need to pass through final buffer even ↵Gregory Nutt2014-08-011-34/+40
| | | | if is it zero length because it contains the end of audio stream flag
* Update ChangeLogGregory Nutt2014-07-311-1/+7
|
* Audio: Change how the end of the audio stream is detected by the leaf audio ↵Gregory Nutt2014-07-311-9/+14
| | | | component. This used by be done by looking for the first partial buffer. That does not work with the in-place sub-sampling performed by the PCM decoder: That always reduces the size of the buffer so that all buffers only partially filled by the time they get to the leaf. Now, a flag is set in the audio buffer flags set to indicate the final buffer in the stream.
* Update ChangeLogGregory Nutt2014-07-311-0/+3
|
* NxPlayer: Fix some error handling, update comments, more debug outputGregory Nutt2014-07-311-36/+99
|
* dd support for a USB keyboard as the NxConsole and text widget input. Not ↵Gregory Nutt2014-07-302-7/+18
| | | | fully functional as of this initial check-in. Basic functionality is there, but there are conditions were the keyboard gets lost.
* SAMA5: Poll USB keyboard at a higher rate for better responseGregory Nutt2014-07-291-1/+1
|
* Update ChangeLogsGregory Nutt2014-07-281-0/+2
|
* uIP webserver: Missing logic to close sockets on loop termination. From Max.Gregory Nutt2014-07-281-1/+6
|
* Update ChangeLogsGregory Nutt2014-07-271-1/+3
|
* NxPlayer needs to set curbyte field to zero before enqueuing a buffer. ↵Gregory Nutt2014-07-271-1/+3
| | | | Otherwise, it looks like beginning of the buffer has already been consumed
* First cut implementation of fast forward and rewind controlsGregory Nutt2014-07-272-29/+115
|
* Update ChangeLogsGregory Nutt2014-07-271-0/+3
|
* Move subsampling rate definitions from nxplayer.h to audio.hGregory Nutt2014-07-272-20/+8
|
* NxWM: Fix default ICON name. g_playBitmap24x24 does not exist, should be ↵Gregory Nutt2014-07-251-3/+3
| | | | g_playBitmap
* Trivial things from the last commit left in the editorGregory Nutt2014-07-241-3/+4
|
* Update ChangeLogsGregory Nutt2014-07-241-0/+2
|
* Changes to integrate with Ken's NxWM::CMediaPlayerGregory Nutt2014-07-243-24/+37
|
* Convert ac_format and ac_controls to unions to make access a little cleanerGregory Nutt2014-07-241-27/+25
|
* Update ChangelogGregory Nutt2014-07-241-0/+3
|
* Audio: Add hooks for fast-forward and rewind needed by CMediaPlayer; add ↵Gregory Nutt2014-07-242-20/+242
| | | | hooks for equalizer settings needed by the WM8904
* Update ChangeLogsGregory Nutt2014-07-231-1/+2
|
* NxPlayer: Misc changes to better integrate with NxWM::CMediaPlayerGregory Nutt2014-07-233-7/+24
|
* NxWM: Beginning integration of NxPlayer into Nxwm::MediaPlayer. Gets handle, ↵Gregory Nutt2014-07-231-0/+14
| | | | sets device, and releases handle. Lots more to be done
* NxWM: Add configuration options to filter CMediaPlayer files based on extensionGregory Nutt2014-07-231-18/+80
|
* Fix error introduced in last commit: Can't call ferror AFTER closing fileGregory Nutt2014-07-231-2/+4
|
* Update ChangeLogGregory Nutt2014-07-231-1/+1
|
* Update ChangeLogGregory Nutt2014-07-231-0/+2
|
* NxPlayer: Check for read errors and end-of-file with nothing readGregory Nutt2014-07-231-24/+55
|