summaryrefslogtreecommitdiff
path: root/nuttx
Commit message (Collapse)AuthorAgeFilesLines
* Update ChangeLogGregory Nutt2015-01-141-1/+8
|
* Networking: (1) Copied all ICMP sources files to net/icmpv6 with proper ↵Gregory Nutt2015-01-1425-105/+1326
| | | | renaming and removal of IPv4 logic, (2) remove IPv6 logic from files in net/icmp, (3) copied include/nuttx/icmp.h to icmpv6.h and removed IPv4 specific logic, (4) removed all IPv6 logic from icmp.h, (5) IP_HDRLEN became IPv4_HDRLEN and IPv6_HDRLEN, (6) ip_chksum() became ipv4_chksum() and ipv6_chksum(), and (7) added partial support for ICMPv6 statistics.
* Update ChangeLogGregory Nutt2015-01-141-0/+6
|
* Networking: Remove all logic conditioned upon IPv6 from the net/icmp/directoryGregory Nutt2015-01-143-137/+3
|
* Networking: Make a home for ICMPv6Gregory Nutt2015-01-147-6/+76
|
* Networking: Add support for IPv6 ioctlsGregory Nutt2015-01-144-148/+283
|
* Network: Add an IPv4 configuration option. Hardcoded to =y for now, but I ↵Gregory Nutt2015-01-1483-1/+104
| | | | would like to be able to select IPv4 and/or IPv6 in the future
* Update ChangeLogGregory Nutt2015-01-141-3/+10
|
* Remove the px4-v2_upstream configuration. Moved to misc/Obsoleted/configs.Gregory Nutt2015-01-1416-3187/+0
| | | | This is not the official configuration for the PX4 board and has led to confusion by NuttX users. The board configuration also requires some ongoing maintenance and customization to support ongoing PX4 testing and evaluation. It is best retained the PX4 repositories where it can be properly maintained and not in the upstream NuttX repository.
* Update READMEGregory Nutt2015-01-141-0/+1
|
* Tiva Timer: Revert the previous change. Thre is a better way to handler ↵Gregory Nutt2015-01-146-176/+215
| | | | | | timerout interrupts. Removed setting of the initial timer interval load value (or, rather, it is always set to zero for a free-running timer). Also, do not unconditional enable the timer out interrupt. The timerout interrupt is not not enabled until tiva_timer32_setinterval() is called.
* Tiva Timer: Remove a big chunk of unnecessary logicGregory Nutt2015-01-131-183/+6
|
* Update READMEGregory Nutt2015-01-131-0/+39
|
* Update ChangeLogGregory Nutt2015-01-131-1/+4
|
* Tiva Timer: Timer test must attach a timer handler or the timer is stopped ↵Gregory Nutt2015-01-132-23/+22
| | | | at the first interrupt
* Timer Timer: Timer driver now initializes without complaints. Need a test ↵Gregory Nutt2015-01-133-31/+61
| | | | driver of some kind to make more testing progress.
* DK-TM3C129X Timer: Add timer initialization logic to the board bring-upGregory Nutt2015-01-137-4/+232
|
* Tiva Timer: Rename tiva_timerlow.c to tiva_timerlow32.c since it only ↵Gregory Nutt2015-01-133-8/+3
| | | | supports 32-bit periodic timers
* Tiva Timer: Completes implementation of the timer driver lower halfGregory Nutt2015-01-133-34/+202
|
* Tiva Timer: Allow timeout interrupts even if the reload value is zero. ↵Gregory Nutt2015-01-132-15/+112
| | | | That is the value that is need to get an interrupt on the wrap from 0xffffffff to 0x00000000
* Tiva Timer: Add conditional compilation to enable/disable each timer ↵Gregory Nutt2015-01-133-9/+231
| | | | feature. Not only does this reduce the footprint by suppressing unused features, it also protects from partially implemented features that are now conditioned on EXPERIMENTAL
* TM4C123G LaunchPad: Button support from Bradlye NoyesGregory Nutt2015-01-123-2/+177
|
* Tiva Timer: Rename tiva_timer.c to tiva_timerlib.cGregory Nutt2015-01-122-2/+2
|
* Tiva Timer: First cut at timer driver lower half (still incomplete)Gregory Nutt2015-01-124-34/+958
|
* Tiva Interrupts: Changes corresponding to the last needed in the Tiva ↵Gregory Nutt2015-01-122-3/+10
| | | | Kconfig file as well
* Tiva interrupts: Fix chip-specific interrupt un-definitionsGregory Nutt2015-01-121-9/+34
|
* Tiva Timers: Add interfaces to read the current timer valueGregory Nutt2015-01-122-7/+176
|
* Micro Python: Add logic to automatically download the Micro Python tarball ↵Gregory Nutt2015-01-112-2/+2
| | | | at download
* USB host drivers: Change all parmeters named class to usbclass to avoid C++ ↵Gregory Nutt2015-01-1112-153/+169
| | | | conflicts
* Tiva Timer: Fix a typoGregory Nutt2015-01-101-1/+1
|
* Tiva Timer: Implements configuration of the 32-bit RTC timerGregory Nutt2015-01-103-21/+66
|
* Tiva Timer: Add support for RTC match interruptsGregory Nutt2015-01-102-15/+163
|
* Tive Timer: Add support for ADC trigger generation from one-shot and ↵Gregory Nutt2015-01-102-10/+100
| | | | periodic timers for timeout and match evetns
* Tiva Timer: Add support to set the match regiser(s) relative to the timer ↵Gregory Nutt2015-01-103-42/+464
| | | | counter (and prescale) registers. Enable match interrupts. These are one time interruprts: After the match interrupt is dispatched, further match interrupts are disabled
* Tiva Timer: Add support for input clock prescaler in 16-bit ↵Gregory Nutt2015-01-093-16/+10
| | | | one-shot/periodic modes
* Tiva Timer: Add logic to acknowledge Tiva Timer interruptsGregory Nutt2015-01-092-25/+226
|
* Tive System Control: Add logic to configure the alternatie clock source ↵Gregory Nutt2015-01-094-6/+50
| | | | (ALTCLK). Needed by the Tiva timer module
* Tiva Timer: Add more interrupt management logicGregory Nutt2015-01-093-175/+238
|
* Tiva Timer: Add functions to set match registers; Add logic to select count ↵Gregory Nutt2015-01-093-122/+255
| | | | direction
* Tiva Timer: Add interfaces to start/stop timers and to set the interval ↵Gregory Nutt2015-01-092-1/+202
| | | | load registers.
* Tiva Timers: Add framework to support tmer interruptsGregory Nutt2015-01-092-55/+452
|
* drivers/mmcsd/Kconfig: ARCH_HAVE_SDIOWAIT_WRCOMPLETE should not depend on ↵Gregory Nutt2015-01-091-4/+4
| | | | MMCSD_SDIO
* STM32 SDIO: CONFIG_MMCSD_SDIOWAIT_WRCOMPLETE should not be available unless ↵Gregory Nutt2015-01-082-31/+28
| | | | CONFIG_MMCSD_SDIO=y
* STM32 SDIO: Don't let architectures select CONFIG_MMCSD_SDIOWAIT_WRCOMPLETE ↵Gregory Nutt2015-01-082-0/+6
| | | | unless they have implemented SDIOWAIT_WRCOMPLETE
* Tiva Timer: Partial support for 16- and 32-bit, oneshot and periodic timer ↵Gregory Nutt2015-01-083-83/+140
| | | | configurations
* Tiva Timer: Add support to select alternate clock source and 32-bit ↵Gregory Nutt2015-01-083-106/+158
| | | | register concatenation mode.
* Update ChangeLogGregory Nutt2015-01-081-0/+3
|
* Tiva Timer: Add register level debug supportGregory Nutt2015-01-082-56/+249
|
* Tiva Timer: Add basic framework to configure timers. Incomplete on initial ↵Gregory Nutt2015-01-087-55/+1036
| | | | commit
* Tiva Timer: SYNC regiser is only available on GPTM0Gregory Nutt2015-01-081-39/+4
|