summaryrefslogtreecommitdiff
path: root/nuttx/include
Commit message (Collapse)AuthorAgeFilesLines
* Trivial update to commentsGregory Nutt2015-03-201-1/+2
|
* Add Olimexino-STM32 board support from David SidraneGregory Nutt2015-03-201-1/+1
|
* SAMV71-XULT: Add support for a ConfigData device on the 256 AT24 EEPROMGregory Nutt2015-03-191-10/+1
|
* Extend the AT24 EEPROM driver so that it supports: (1) the byte-oriented ↵Gregory Nutt2015-03-171-0/+4
| | | | read() method, (2) parts with extended memory regions, and (3) parts with 8-bit addressing.
* Pass the umount2() flags to every unbind() implementation. That is where ↵Gregory Nutt2015-03-141-2/+3
| | | | the the decision to umount or not will be made.
* Add umount2(). umount() is now a macro that just calls umount2() with flags ↵Gregory Nutt2015-03-142-7/+45
| | | | = 0.
* Add TUN device. From Max NeklyudovGregory Nutt2015-03-112-1/+106
|
* Add support for dumping board-specific information on assertion. From David ↵Gregory Nutt2015-03-041-0/+30
| | | | Sidrane
* Fix issues when AES support was added for the STM32L1. From Juha NiskanenGregory Nutt2015-03-041-0/+2
|
* I2C interface: Add a parmeter to I2C slave callbackGregory Nutt2015-03-031-5/+8
|
* SPI: Add a board-specific SPI device valueGregory Nutt2015-03-021-1/+2
|
* Update comment and documentation for board interfacesGregory Nutt2015-02-281-3/+10
|
* Remove some prototypes from arch.h that do not belong thereGregory Nutt2015-02-271-22/+0
|
* Move board_ prototypes from arch.h to board.hGregory Nutt2015-02-272-78/+144
|
* included/nuttx/board.h: Move all board common prototypes to this header fileGregory Nutt2015-02-271-0/+147
|
* Costmetic updates comments and style; Add NFS dependency on IPv4Gregory Nutt2015-02-261-1/+1
|
* Add BSD and SYSV types to sys/types to simplify porting. From Max NeklyudovGregory Nutt2015-02-251-2/+18
|
* Adjust microMIPS compile options to enable interlinking with 32-bit codeGregory Nutt2015-02-251-2/+7
|
* Add some definitions expected by NFS. Noted by Orbital FoxGregory Nutt2015-02-251-0/+2
|
* netinet/in.h: Add some IPv6 macrosGregory Nutt2015-02-251-0/+22
|
* Extend the fd_set type definition so that it can handle more than 32 ↵Gregory Nutt2015-02-251-17/+26
| | | | descriptors (if so configured). From Max Neklyudov
* Fix PTHREAD_COND_INITIALIZERGregory Nutt2015-02-241-1/+1
|
* Some typos noted by David SidraneGregory Nutt2015-02-232-4/+4
|
* Add some commentsGregory Nutt2015-02-191-0/+16
|
* Back out definition of mbstate_t. That is a mistakeGregory Nutt2015-02-192-1/+4
|
* Add mbstate_t to wchar.h and cwcharGregory Nutt2015-02-192-6/+22
|
* Add an empty cwchar fileGregory Nutt2015-02-191-0/+49
|
* C++: Remove 'using ::timeval' from ctime. struct timeval was recently move ↵Gregory Nutt2015-02-181-1/+0
| | | | to sys/time.h where it belongs. Now there are problems when it is referenced in ctime. Fixed by just removing it from ctime. Is that correct? or should ctime include sys/time.h? Noted by David Sidrane
* VFS: The inode unlink method should not be support if operations on the root ↵Gregory Nutt2015-02-182-0/+6
| | | | pseudo-filesystem are disabled.
* The RTC ioctl() method is now a configuration optionGregory Nutt2015-02-181-1/+3
|
* Add an IOCTL method to the RTC interfaceGregory Nutt2015-02-181-0/+15
|
* Fix a couple of typos in recent commit. Found by David SidraneGregory Nutt2015-02-171-1/+1
|
* Ooops... accidentally backed out a good change. Must have had the wrong ↵Gregory Nutt2015-02-171-1/+1
| | | | version in the editor
* Fix a typo: include vs incldueGregory Nutt2015-02-171-2/+3
|
* include, not incldueGregory Nutt2015-02-171-1/+1
|
* Add a mostly-commented-out version of the standard netdb.h header fileGregory Nutt2015-02-171-0/+280
|
* Add support for the restrict keywordGregory Nutt2015-02-171-1/+4
|
* Move some useful internal logic from recvfrom.c and udp_callback.c and put ↵Gregory Nutt2015-02-171-5/+38
| | | | them in ip.h where they can be used more generally
* Move some useful internal macros from udp_send.c and put them in ip.h where ↵Gregory Nutt2015-02-171-0/+41
| | | | they can be used more generally
* Purely cosmetic changes resulting from last review IPv6 UDP changeGregory Nutt2015-02-161-29/+67
|
* Standardize some header filesGregory Nutt2015-02-1630-55/+63
|
* Some files that now include sys/time.h should no longer include timer.hGregory Nutt2015-02-151-1/+1
|
* Suffer the consequences of moving struct timeval to its correct locationGregory Nutt2015-02-154-11/+22
|
* Move struct timveval from include/time.h to include/sys/time.h where it belongs.Gregory Nutt2015-02-154-32/+49
|
* Add support for RTC driver to the STM32F4-Discovery boardGregory Nutt2015-02-151-1/+1
|
* RTC: A little more clean-up of the RTC driverGregory Nutt2015-02-151-0/+16
|
* Networking: Divide net_intiialize() into net_setup() and net_initialize() to ↵Gregory Nutt2015-02-141-17/+44
| | | | | | solve a chicken-and-egg problem. net_setup() must be caleld before up_initialize() is called so that networking data structures are ready to register new network devices. net_initialize() now does only timer related operations and is called AFTER up_initialize() where the timers are configured. This is really.
* STM32 RTC driver lower half: Implement the settime method of the RTC interfaceGregory Nutt2015-02-131-1/+2
|
* Break out a new internal interface, stm32_rtc_setdatetime(). This ↵Gregory Nutt2015-02-131-1/+3
| | | | | | eliminates some un-necessary time conversions. From Freddie Chopin. Add a skeleton implementation of the RTC lower half interface at arch/arm/src/stm32/stm32_rtc_lowerhalf.c. This is just the framework for the RTC lower half. None of the interface methods have yet been implemetned.
* Add an RTC upper half driver. This is the driver that is documented in ↵Gregory Nutt2015-02-131-30/+35
| | | | include/nutt/rtc.h