summaryrefslogtreecommitdiff
path: root/apps/system
Commit message (Collapse)AuthorAgeFilesLines
* Sudoku needs a .gitignoreGregory Nutt2014-08-131-0/+11
|
* Add a Sudoku gameGregory Nutt2014-08-116-3/+727
|
* 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
|
* 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
* 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.
* NxPlayer: Fix some error handling, update comments, more debug outputGregory Nutt2014-07-311-36/+99
|
* 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-271-21/+105
|
* Move subsampling rate definitions from nxplayer.h to audio.hGregory Nutt2014-07-271-5/+6
|
* Trivial things from the last commit left in the editorGregory Nutt2014-07-241-3/+4
|
* Changes to integrate with Ken's NxWM::CMediaPlayerGregory Nutt2014-07-241-18/+29
|
* Convert ac_format and ac_controls to unions to make access a little cleanerGregory Nutt2014-07-241-27/+25
|
* Audio: Add hooks for fast-forward and rewind needed by CMediaPlayer; add ↵Gregory Nutt2014-07-241-0/+110
| | | | hooks for equalizer settings needed by the WM8904
* NxPlayer: Misc changes to better integrate with NxWM::CMediaPlayerGregory Nutt2014-07-231-1/+1
|
* Fix error introduced in last commit: Can't call ferror AFTER closing fileGregory Nutt2014-07-231-2/+4
|
* NxPlayer: Check for read errors and end-of-file with nothing readGregory Nutt2014-07-231-24/+55
|
* Flesh out a few more PCM methods, still incomplete. Re-vision PCM structure ↵Gregory Nutt2014-07-221-14/+16
| | | | definition
* nxplayer: Add more debug output so that those of use who are not Ken can ↵Gregory Nutt2014-07-222-24/+57
| | | | follow what is happening
* WM8904 w/NxPlayer: Fix some compile errors and warnings with debug enabledGregory Nutt2014-07-201-9/+10
|
* NET: emoved all includes of uip.h; added includes of ip.h wherever needed. ↵Gregory Nutt2014-07-041-0/+1
| | | | Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed.
* Updates for coding styleGregory Nutt2014-06-271-57/+64
|
* Add apps/system/mdio from LazloGregory Nutt2014-06-274-0/+372
|
* Add support for a network device IOCTL to access PHY registers. Ioctls only ↵Gregory Nutt2014-06-273-0/+9
| | | | implemented for STM32. From Lazlo
* The hex2bin library did not build with debug offGregory Nutt2014-06-261-1/+1
|
* hex2bin: Add alternative interface layers to illustrate how to load programsGregory Nutt2014-06-166-17/+245
|
* hex2bin: Fix un-necessary seeks because expected address was not being updatedGregory Nutt2014-06-161-1/+7
|
* hex2mem: Like hex2bin, but writes Intel HEX files directly to memoryGregory Nutt2014-06-164-15/+346
|
* hex2bin: Fix some indexing errorsGregory Nutt2014-06-161-25/+30
|
* hex2bin: Fix a typo in the stack sizeGregory Nutt2014-06-161-1/+1
|
* hex2bin: Needs a little larger stackGregory Nutt2014-06-162-2/+17
|
* hex2bin: Various bugfixesGregory Nutt2014-06-161-10/+17
|
* hex2dump: Needs to read new character at end of the loopGregory Nutt2014-06-151-2/+7
|
* hex2bin: Start code should not be in bufferGregory Nutt2014-06-151-1/+8
|
* Fix an error in exec(). argv[] has not being passedGregory Nutt2014-06-151-2/+6
|
* Add conversion of Intel HEX to binaryGregory Nutt2014-06-159-4/+1135
|
* CLE: Last bugfix commit was insufficientGregory Nutt2014-05-231-25/+11
|
* CLE: Was not returning the terminating newline characterGregory Nutt2014-05-231-0/+9
|
* Change all variadic macros to C99 styleGregory Nutt2014-05-225-18/+18
|
* Move prun from interpreters/ to system/; And an NSH built-in appliation ↵Gregory Nutt2014-05-094-3/+234
| | | | that can be used to execute P-Code files from the NSH command line
* Move P-Code execution logic from interpreters/prun to system/prunGregory Nutt2014-05-098-0/+367
|
* P-code BINFMT: Add logic to pass information from the binfmt logic to the ↵Gregory Nutt2014-05-081-1/+4
| | | | P-code interpreter. This includes some extension to the binfmt interfaces.
* Update the displayed I2C on each get iteraction (not the same starting ↵Gregory Nutt2014-05-081-1/+2
| | | | address). From Ryan VanSickle
* Minor/cosmetic changesGregory Nutt2014-04-271-15/+15
|
* Remove an STM32 dependencyGregory Nutt2014-04-211-5/+2
|
* nxplayer: Complilation failure in one configuration reported by Manuel StühnGregory Nutt2014-04-211-1/+1
|
* More trailing whilespace removalGregory Nutt2014-04-1331-40/+40
|
* Make sure that there is one space after forGregory Nutt2014-04-121-1/+1
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-121-2/+2
|
* Make sure that there is one space between if and conditionGregory Nutt2014-04-121-1/+1
|