summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Travel: Fix more initialization errors, mostly related to file path problemsGregory Nutt2014-12-087-17/+47
|
* Update ChangeLogGregory Nutt2014-12-081-0/+3
|
* Passing wrong string for the world pathGregory Nutt2014-12-081-1/+1
|
* stdint.h: Don't use hex values to specify minimum values of fixed width, ↵Gregory Nutt2014-12-081-106/+106
| | | | signed values. Hex values are inherently unsigned and not usable for this purpose in all contexts
* Extend the simulator to provide special initialization for the Traveler gameGregory Nutt2014-12-084-3/+101
|
* Update ChangeLogGregory Nutt2014-12-081-0/+6
|
* avsprintf(): Fix a bug in usage of va_list on x86. On x86, va_list is a ↵Gregory Nutt2014-12-081-3/+30
| | | | pointer to a single copy on the stack. avsprintf() calls lib_vsprintf() twice and so traverses the va_list twice using va_start. va_start modifies that single copy on the stack so that the second call to lib_vsprintf() fails. This appears to be an issue with x86 only so far
* Update ChangeLogGregory Nutt2014-12-081-1/+6
|
* Set the GPIO_SPEED_50MHz on all F2 and F4 SPI pin configurations. This is ↵Gregory Nutt2014-12-082-84/+84
| | | | based on an F411 SPI1 errata but the fixed is generalized to all SPI and all F2 and F4 (let me know if this introduces any other issues). Discovered and fixed by Sebastien Lorquet after much consternation.
* Cosmetic change to debug outputGregory Nutt2014-12-081-1/+1
|
* Update ChangeLogGregory Nutt2014-12-081-0/+2
|
* Traveler: Add build configuration for the simulated targetGregory Nutt2014-12-084-0/+929
|
* Traveler: Change the way that the world path is managed.Gregory Nutt2014-12-089-53/+95
|
* Update ChangeLogGregory Nutt2014-12-081-0/+4
|
* Allow building simulated framebuffer dirver is NX is not enabledGregory Nutt2014-12-081-5/+5
|
* Refresh configurationGregory Nutt2014-12-081-54/+144
|
* Fix a typo in a recent commitGregory Nutt2014-12-081-1/+1
|
* Remove warning about redefined strtok_rGregory Nutt2014-12-082-0/+2
|
* Fix compilation errors if CONFIG_DISABLE_MOUNTPOINT is selectedGregory Nutt2014-12-086-59/+169
|
* Merge branch 'traveller'Gregory Nutt2014-12-0788-103/+10891
|\
| * Merge remote-tracking branch 'origin/master' into travellerGregory Nutt2014-12-073-1/+63
| |\
| * | Add logic to build the demo world as a ROMFS file systemGregory Nutt2014-12-074-5/+155
| | |
| * | Add a demo worldGregory Nutt2014-12-0742-0/+55
| | |
| * | Fix mode of header file marked executableGregory Nutt2014-12-071-0/+0
| | |
| * | Add range palette table. Completes basic port of the gameGregory Nutt2014-12-073-1/+362
| | |
| * | Add world destruction logicGregory Nutt2014-12-077-10/+74
| | |
| * | Add logic to load texture images from a graphic fileGregory Nutt2014-12-075-27/+476
| | |
| * | Add higher logic to load bitmap texture filesGregory Nutt2014-12-063-1/+302
| | |
| * | Add logic to read bitmap textures from a fileGregory Nutt2014-12-066-5/+445
| | |
| * | Add more plan management logicGregory Nutt2014-12-064-16/+89
| | |
| * | Add the second of several world creation filesGregory Nutt2014-12-068-21/+215
| | |
| * | Merge remote-tracking branch 'origin/master' into travellerGregory Nutt2014-12-063-2/+6
| |\ \
| * | | Add the first of several world creation filesGregory Nutt2014-12-065-4/+464
| | | |
| * | | Add plane list operationsGregory Nutt2014-12-062-8/+225
| | | |
| * | | Merge remote-tracking branch 'origin/master' into travellerGregory Nutt2014-12-0611-70/+74
| |\ \ \
| * | | | Add last of several ray cast/rendering filesGregory Nutt2014-12-053-1/+1400
| | | | |
| * | | | Add fourth of several ray cast/rendering filesGregory Nutt2014-12-057-28/+1453
| | | | |
| * | | | Add third of several ray cast/rendering filesGregory Nutt2014-12-058-38/+900
| | | | |
| * | | | Add some global data declarations. Fix modes on some files marked as executableGregory Nutt2014-12-058-4/+134
| | | | |
| * | | | Add second of several ray cast/rendering filesGregory Nutt2014-12-055-11/+651
| | | | |
| * | | | Add trigonometric lookup tablesGregory Nutt2014-12-053-7/+1359
| | | | |
| * | | | Merge remote-tracking branch 'origin/master' into travellerGregory Nutt2014-12-0512-86/+300
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' into travellerGregory Nutt2014-12-050-0/+0
| |\ \ \ \ \
| * | | | | | Add first of several ray cast/rendering filesGregory Nutt2014-12-0510-10/+1735
| | | | | | |
| * | | | | | Add door animation logicGregory Nutt2014-12-0412-9/+482
| | | | | | |
| * | | | | | Correct some image scalingGregory Nutt2014-12-042-27/+24
| | | | | | |
| * | | | | | Correct graphics scaling logicGregory Nutt2014-12-033-33/+54
| | | | | | |
| * | | | | | Merge branch 'traveller' of ssh://git.code.sf.net/p/nuttx/git into travellerGregory Nutt2014-12-030-0/+0
| |\ \ \ \ \ \
* | \ \ \ \ \ \ Merge branch 'master' of ssh://git.code.sf.net/p/nuttx/gitGregory Nutt2014-12-0727-159/+443
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | / | | |_|_|_|_|/ | |/| | | | |
| * | | | | | Remove unused setting of a variableGregory Nutt2014-12-071-1/+0
| | | | | | |