summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add memory map for the TM4C129XGregory Nutt2014-12-172-7/+144
|
* Add interrupt definitions for the TM4C129XGregory Nutt2014-12-177-37/+300
|
* DK-TM4C129X: Switch to Windows/Cygwin + CodeSourceryGregory Nutt2014-12-172-7/+16
|
* Tiva: Better distinguish features of the TM4C1294xx and the TM4C129XxxGregory Nutt2014-12-161-5/+68
|
* ADXL345: Free allocations on failureGregory Nutt2014-12-161-0/+1
|
* Remove packaging indications for TM4C129 configuration variablesGregory Nutt2014-12-166-80/+80
|
* Add TM4C129XNCZAD and TM4C1294NCPDT to the Tiva configuration systemGregory Nutt2014-12-163-3/+61
|
* Update README filesGregory Nutt2014-12-162-1/+5
|
* Update ChangeLogGregory Nutt2014-12-161-0/+4
|
* Add basic board support for the DK-TM4C129X Connected Development Kit. The ↵Gregory Nutt2014-12-163-2/+19
| | | | initial commit is simply the TM4C123G Launchpad with naming changes
* Remove EXPERIMENTAL dependency from the Traveler game. It is basically ↵Gregory Nutt2014-12-1617-0/+2680
| | | | functional now.
* Update README filesGregory Nutt2014-12-163-16/+20
|
* Fix some typos ADXL (adxl) vs ADX1 (adx1)Gregory Nutt2014-12-161-4/+4
|
* A few bugs/typos introduced with my last changeGregory Nutt2014-12-161-2/+2
|
* Update the ADXL345 interface following the current interface schemeGregory Nutt2014-12-164-54/+65
|
* Minor clean-up associated with the ADX345 driverGregory Nutt2014-12-162-60/+24
|
* Updata ChangeLogGregory Nutt2014-12-161-0/+10
|
* Unify sensor debug. ADX driver was using input debug; LM75 and QENCODE that ↵Gregory Nutt2014-12-1616-216/+114
| | | | their own custom debug. Now all use CONFIG_DEBUG_SENSOR, sndbg()
* Add ADXL345 accelerometer driver. From Alan Carvalho de AssisGregory Nutt2014-12-1612-9/+1623
|
* Update a README fileGregory Nutt2014-12-161-0/+4
|
* Forgot to add file before last commitGregory Nutt2014-12-161-0/+289
|
* Freedom-KL25Z: Add board specific code to interface with ADXL345 driver. ↵Gregory Nutt2014-12-165-2/+30
| | | | From Alan Carvalho de Assis
* Update README filesGregory Nutt2014-12-153-22/+55
|
* Traveler: Make updated to build available toolsGregory Nutt2014-12-152-7/+12
|
* Traveler: Add another trivial plane management toolGregory Nutt2014-12-155-6/+208
|
* Traveler: Add another trivial plane management toolGregory Nutt2014-12-152-3/+319
|
* Traveler: Add the first of several game-related toolsGregory Nutt2014-12-144-2/+307
|
* Fix door open detectionGregory Nutt2014-12-141-3/+2
|
* Traveler: Slow movement downGregory Nutt2014-12-141-20/+32
|
* More fixes to traveler input handlingGregory Nutt2014-12-141-10/+11
|
* Various fixes to traveler joystick input logic and to simulated joystick deviceGregory Nutt2014-12-144-51/+61
|
* Mouse simulatin should receive mouse positional input even if no button is ↵Gregory Nutt2014-12-141-1/+1
| | | | pressed
* SIM: Several fixes to the simulated joystick driver. Still buggyGregory Nutt2014-12-143-58/+44
|
* Update ChangeLogGregory Nutt2014-12-141-0/+4
|
* SIM: Add an X11 mouse-based simulation of an analog joystick deviceGregory Nutt2014-12-1410-10/+348
|
* Traveler: Add support for analog joystickGregory Nutt2014-12-146-50/+482
|
* Include sched.h to avoid warningGregory Nutt2014-12-141-0/+1
|
* Update ChangeLogGregory Nutt2014-12-131-0/+5
|
* More changes associated with GPIO interrupt for the KL architecture from ↵Gregory Nutt2014-12-133-2/+70
| | | | Alan Carvalho de Assis
* Add GPIO interrupt capability for the KL architecture. The patch is almost ↵Gregory Nutt2014-12-133-16/+392
| | | | the same as kinetis_pinirq.c, just minor modifications and rename kl_pinirq to kl_gpioirq to make it more generic to developers. From Alan Carvalho de Assis
* Update TODO listGregory Nutt2014-12-131-1/+17
|
* apps/system/cu: Add a some configurable defaults (only to reduce my ↵Gregory Nutt2014-12-133-7/+35
| | | | keystrokes in repetitive testing)
* FS: Add a check for a NULL pathname.Gregory Nutt2014-12-131-1/+1
|
* SIM: Fix simulated console... it needs to return immediately when even one ↵Gregory Nutt2014-12-133-6/+41
| | | | byte is read
* Update ChangeLogGregory Nutt2014-12-131-1/+5
|
* Sempahores: Add logic to clean up after task_delete() or pthread_cancel() ↵Gregory Nutt2014-12-137-22/+304
| | | | if the task happens to be waiting on a semaphore when it is cancelled
* Cosmetic fix to a commentGregory Nutt2014-12-131-1/+1
|
* Update ChangeLogsGregory Nutt2014-12-132-1/+10
|
* Costmetic change to a commentGregory Nutt2014-12-131-1/+1
|
* Add a minimalist implemention of the 'cu' terminal program (part of Taylor ↵Gregory Nutt2014-12-136-9/+36
| | | | | | UUCP for ages). Using it, you can simply open a serial port and interact with it. Using '~.' you can leave the terminal program and drop back to nsh. This might come in handy for other people that have e.g. GSM modems, GPS receivers or other devices with text based serial communications attached to their Nuttx systems.