summaryrefslogtreecommitdiff
path: root/nuttx
Commit message (Collapse)AuthorAgeFilesLines
* Add an RTC upper half driver. This is the driver that is documented in ↵Gregory Nutt2015-02-132-30/+624
| | | | include/nutt/rtc.h
* Move timer-related drivers from drivers/ to drivers/timers.Gregory Nutt2015-02-136-92/+162
|
* Update ChangeLogGregory Nutt2015-02-131-0/+8
|
* Removed all of the old, malformed RTC interface definitions from ↵Gregory Nutt2015-02-132-0/+324
| | | | include/nuttx/rtc.h. The necessary prototypes have been removed, renamed, scattered to the wind, hidden under rocks, -- whatever it takes to make it clear that there is no RTC interface callable from application code.
* Forgot to add a file in the last commitGregory Nutt2015-02-131-0/+96
|
* RTC: Remove all backdoor interfaces from rtc.hGregory Nutt2015-02-1324-230/+322
|
* Update ChangeLogGregory Nutt2015-02-131-0/+9
|
* Fix a problem in clock_systimer64 that occurs when (1) the 64-bit system ↵Gregory Nutt2015-02-131-4/+3
| | | | | | | | time is enabled, and (2) the value of CONFIG_USEC_PER_TICK is less than 1 millisconds (such as when using the tickless mode of operation). In that case, the convertion of time to 64-bit millisecond value in clock_systmer64() causes some bad times to be returned. Time was converted to milliseconds, then to configured ticks. Precision was lost in the millisecond convertion. The fix is to first convert time to a 64-bit microsecond value, then to the configured tick value. Noted by David Sidrane.
* Update dates in all skeleton filesGregory Nutt2015-02-135-5/+5
|
* Cosmetic updates to commentsGregory Nutt2015-02-124-4/+6
|
* Renamed SPIDEV_GSENSOR to SPIDEV_ACCELEROMETER just because it looks better ↵Gregory Nutt2015-02-123-27/+27
| | | | beside SPIDEV_BAROMETER
* Update ChangeLogGregory Nutt2015-02-128-27/+75
|
* Add driver for the Feescale MPL115A baramoter. From Alan Carvalho de AssisGregory Nutt2015-02-122-0/+516
|
* Viewtool STM32F107: Add support for an optional, add-on Freescale MPL115A ↵Gregory Nutt2015-02-126-1/+165
| | | | baramoter. From Alan Carvalho de Assis
* Update ChangeLogGregory Nutt2015-02-122-1/+8
|
* gettimeofday() and settimeofday(): Move gittimeofdady() from sched/clock to ↵Gregory Nutt2015-02-1211-76/+196
| | | | | | libc/time. All remove gettimeofday() from NuttX system calls. It is only a wrapper around clock_settime() and does not need a trap. gettimeofday() is no longer tried as a core OS interface. gettimeofday has been decremented in POSIX 2008. settimeofday() was never part of POSIX, but I decided to add it to libc as well just for symmetry.
* More updates to README filesGregory Nutt2015-02-121-207/+4
|
* Updated README filesGregory Nutt2015-02-122-10/+184
|
* Purely costmetic updatesGregory Nutt2015-02-122-11/+17
|
* The TM4C1294 Launchpad has no on-board TMP100 temperature sensorGregory Nutt2015-02-125-156/+3
|
* Refresh configurationsGregory Nutt2015-02-122-27/+24
|
* Update ChangeLogGregory Nutt2015-02-111-1/+6
|
* Review/update of the TM4C1294 Launchpad codeGregory Nutt2015-02-1119-20/+61
|
* Merge commit 'd000b0ac237cb6b17e3d355b55250c3ca7e9f2d6'Gregory Nutt2015-02-1132-7/+5512
|\
| * Add TI EK-TM4C1294XL launchpad supportsauttefk2015-02-1232-7/+5512
| |
* | Prep for 7.8 releaseGregory Nutt2015-02-113-11/+341
| |
* | Networking: Fix a compilation error recently introduced into the raw packet ↵Gregory Nutt2015-02-111-1/+1
| | | | | | | | logic
* | Update DocumentationGregory Nutt2015-02-111-2/+26
| |
* | Update ChangeLogGregory Nutt2015-02-111-0/+4
| |
* | Add support for Freedom KL26Z board. From Derek B. NoonBurgGregory Nutt2015-02-1124-4/+4112
| |
* | Kinetis: Add architectural support for the K26Z128VLH4. From Derek B. NoonburgGregory Nutt2015-02-113-4/+93
| |
* | Update ChangeLogGregory Nutt2015-02-111-0/+3
| |
* | Some extensions to netinet/in.h adding some Linux compatible defintions. ↵Gregory Nutt2015-02-113-2/+81
| | | | | | | | From Macs N.
* | LP17 Ethernet Driver: Fix some compile problems when IPv6 is enabledGregory Nutt2015-02-101-5/+5
| |
* | Update ChangeLogGregory Nutt2015-02-101-0/+3
| |
* | LPC17xx: Add IPv6 support to the LPC17 Ethernet driver. Untested... I no ↵Gregory Nutt2015-02-103-13/+289
| | | | | | | | longer have a proper environment for LPC17 debug.
* | Added a forward reference to struct inode to avoid warning about mismatching ↵Gregory Nutt2015-02-103-4/+6
| | | | | | | | types in assignemnt
* | Update ChangeLogGregory Nutt2015-02-101-0/+5
| |
* | SAM4 Ethernet Driver: No supports operation using the high priority work ↵Gregory Nutt2015-02-103-47/+416
| | | | | | | | | | | | queue so that packet processing can occur outside of interrupt level processing. SAM4E-EK: The nsh configuration now configures the Ethernet driver for execution on the HP work thread.
* | Refresh configurationsGregory Nutt2015-02-102-17/+74
| |
* | Update ChangeLogGregory Nutt2015-02-101-1/+2
| |
* | Networking: Fix several build errors/warning with IPv4 + IPv6 + multiple ↵Gregory Nutt2015-02-102-13/+56
| | | | | | | | networks are enabled.
* | Refresh configurationGregory Nutt2015-02-102-10/+36
| |
* | Update changelogGregory Nutt2015-02-101-0/+3
| |
* | IOB Configuration: Default number of IOB changes must be more than zero is ↵Gregory Nutt2015-02-101-2/+2
| | | | | | | | UDP read-ahead is enabled.
* | Fix some warningGregory Nutt2015-02-093-0/+6
| |
* | Refresh ConfigurationGregory Nutt2015-02-092-23/+104
| |
* | Update ChangeLogGregory Nutt2015-02-091-1/+5
| |
* | net/: Lots of build problems introduced into multiple NIC support. Many ↵Gregory Nutt2015-02-0918-49/+56
| | | | | | | | places where conditional logic based on CONFIG_NETDEV_MULTINIC is confused with CONFIG_NET_MULTILINK. Lots of code changed with IPv6 that was never compiled with MULTINIC enabled. Still some problem with parameter passing.
* | Update ChangeLogGregory Nutt2015-02-091-0/+3
| |