SaeHie Park
e983e547e1
Networking: Correct return value from psock_tcp_accept(). From SaeHie Park
2015-08-25 07:15:21 -06:00
Gregory Nutt
ccb24e1766
drivers/net: Add a basic prototype for a local loopback device
2015-08-24 11:03:36 -06:00
Gregory Nutt
07bdff9ef7
Networking: Add NetDB support for the local loopback device
2015-08-24 10:08:26 -06:00
Gregory Nutt
569ff602ea
Networking: Remove bogus references to PPP as a link layer protocol
2015-08-24 08:29:07 -06:00
Gregory Nutt
6fc449f689
Moving canned_symtab from nuttx/libc to apps/system
2015-08-23 11:33:29 -06:00
Pavel Pisa
9ab3f03153
Define some symbol export conditions, correct errno and add sleep and usleep. From Pavel Pisa
2015-08-23 09:05:40 -06:00
Pavel Pisa
81a257eeb0
Optional canned symtab inclusion to the build. When option CONFIG_LIBC_SYMTAB is selected and symbol table file libc/symtab/canned_symtab.inc is prepared then application can use system provided complete symbol table. The option has substantial effect on system image size. Mainly code/text. If loading of applications at runtime is not planned do not select this. From Pavel Pisa.
2015-08-23 08:38:58 -06:00
Gregory Nutt
7f3a36fb78
Update ChangeLog
2015-08-21 18:36:12 -06:00
Pavel Pisa
23035ca68d
[PATCH] gethostbyname(): correct returned address format when DNS is used. The hostent.h_addr_list should point to raw in_addr or in6_addr as defined in the standard. Original implementation used that
...
for numeric addresses but for DNS lookup returned pointer to whole sockaddr_in or sockaddr_in6.
getaddrinfo() should be preferred in a long term perspective. Return of complete addresses from the lookup would be better in such case but it requires significant changes anyway - multiple addresses support and most probably dynamic memory allocation which is bad for many RT applications. So gethostbyname() is sufficient for most applications now.
Signed-off-by: Pavel Pisa <ppisa@pikron.com>
2015-08-21 18:33:03 -06:00
Gregory Nutt
89b5ef8d35
wdogs: Fix counting of free, pre-allocated wdog timers. The could could get decremented below zero in some situations
2015-08-21 11:30:22 -06:00
Pavel Pisa
12b1c04508
recvfrom(): Correct wait for new data when NET_UDP_READAHEAD is enabled. Fix size accounting when recvfrom_udpreadahead() sets state.rf_recvlen == -1. I have not checked if data are accumulated to the right position in the buffer however.
...
Signed-off-by: Pavel Pisa <ppisa@pikron.com>
2015-08-21 09:15:06 -06:00
Gregory Nutt
2a81a76c33
Update ChangeLog
2015-08-20 07:56:20 -06:00
Gregory Nutt
a987379e64
Add an error bit to the CAN message report
2015-08-18 07:27:00 -06:00
Max Neklyudov
425146255a
Network drivers: Fix bug in tun interface driver. From Max Neklyudov
2015-08-17 09:04:58 -06:00
Gregory Nutt
51f386d08a
Fix more common typos
2015-08-16 11:07:23 -06:00
Gregory Nutt
77f5c34af0
Fix some common typos
2015-08-16 11:00:30 -06:00
Gregory Nutt
a33bcc42fd
Update ChangeLog
2015-08-14 18:13:57 -06:00
Gregory Nutt
eb19e0c0e2
Add two files that I forgot in a previous commit
2015-08-14 10:12:04 -06:00
Gregory Nutt
6df94096ca
Add ldiv() and lldiv() too
2015-08-14 08:45:59 -06:00
Gregory Nutt
48107bf073
poll() now returns POLLERR for any file descriptor that returns a failure during the poll setup
2015-08-13 14:58:52 -06:00
Gregory Nutt
5323597c3f
Prep for 7.11 release
2015-08-13 11:51:53 -06:00
Gregory Nutt
a543dfbcec
Update ChangeLog; Convert a few tabs to spaces
2015-08-11 21:12:15 -06:00
Gregory Nutt
530d229361
net/udp: Add support for send() with connected UDP sockets
2015-08-11 19:17:55 -06:00
Gregory Nutt
29a0d5d23c
Update ChangeLog
2015-08-11 12:30:07 -06:00
Max Neklyudov
7d04104485
Networking: Allow receipt of empty UDP packets. From Max Neklyudov
2015-08-11 08:34:16 -06:00
Gregory Nutt
9f1d7cddd8
Merged in paulpatience/nuttx (pull request #14 )
...
Converted the AS5048B to use the quadrature encoder interface, changed copyright notice to my boss's preference, and updated ChangeLog to use my full name
2015-08-10 12:22:30 -06:00
Paul A. Patience
dc773a06d8
Updated ChangeLog to use my full name.
2015-08-10 14:15:20 -04:00
David Sidrane
c83d92e846
RAMTRON: Update driver to include support for newer RAMTRON parts.
2015-08-10 11:30:37 -06:00
Gregory Nutt
c74dc5f83f
Changes from review epoll() implementation for consistency with NuttX naming and coding style
2015-08-10 10:38:41 -06:00
Gregory Nutt
0c34ef7468
Update ChangeLog
2015-08-10 10:18:42 -06:00
Gregory Nutt
5848101c1f
Fix/improve some issues in the SPI slave interface header file
2015-08-09 12:06:46 -06:00
Gregory Nutt
b9503c4dbc
Update ChangeLog
2015-08-08 10:47:12 -06:00
Gregory Nutt
fcf1743c0a
Update ChangeLog
2015-08-07 15:45:57 -06:00
Gregory Nutt
6d59603610
Trivial updates from review of LM92 driver; Update ChangeLog
2015-08-06 16:33:02 -06:00
Gregory Nutt
1ff1cd6c0c
Update ChangeLog
2015-08-06 14:07:59 -06:00
Gregory Nutt
007e258c2b
Update some function headers
2015-08-05 16:22:40 -06:00
Gregory Nutt
15db2a45a4
drivers/net/slip.c: Fix another compilation error
2015-08-02 07:20:36 -06:00
Gregory Nutt
2c66e0eb2a
sem_tickwait(): Add a new, non-standard function to perform timed semaphore waits. It is functionally equialent to the standard sem_timedwait(), but more efficient for use in higher performance device drivers. Requested by Max Neklyudov
2015-08-01 07:31:09 -06:00
Gregory Nutt
a0dc5b0123
Update changelog, refresh gitmodules
2015-07-30 12:13:03 -06:00
Gregory Nutt
8935ff34d5
16550 UART Driver: Add a configuration option to indicate the the THR empty bit is inverted. This is the the case for the moxART SoC. Based comments from Anton D. Kachalov
2015-07-29 16:31:21 -06:00
Anton D. Kachalov
88861e562a
Add support for a Faraday FTMAC100 Ethernet MAC Driver. From Anton D. Kachalov
2015-07-29 15:57:58 -06:00
Gregory Nutt
80d934406f
Update ChangeLog; refresh submodules
2015-07-29 14:13:31 -06:00
Gregory Nutt
0d71260bf2
sched/: Separate the round-robin logic into a separate file so that it is symmetric with the sporadic stuff. Integrate the sporadic scheduler into the time tick interrupt handling and into the tickless operation.
2015-07-24 11:49:28 -06:00
Gregory Nutt
55ba5f8f5d
Update ChangeLog
2015-07-23 13:17:44 -06:00
Gregory Nutt
9095e8eab4
include/, sched/, and libc/: Add support for sporadic scheduling parameters in struct sched_param, posix_spawnattr_t, and pthread_attr_t. Update all user interfaces to pass sporadic scheduling parameters. Feature is dependent on EXPERIMENTAL and no changes have yet been made to core scheduling logic.
2015-07-23 13:16:32 -06:00
Gregory Nutt
aa90da2bc8
pthread_create: Fix an (unlikely) error in fallback value in the event of a failure (which should never occur)
2015-07-23 11:25:25 -06:00
Gregory Nutt
146bdc3c93
TCB: Increase the size of the scheduling policy field from 1 to 2 bits to allow additional, planned scheduling policies
2015-07-23 10:15:07 -06:00
Gregory Nutt
3092e46f01
Update ChangeLog
2015-07-22 07:33:15 -06:00
Gregory Nutt
c51828fb2c
Update ChangeLog
2015-07-21 07:18:07 -06:00
Gregory Nutt
c1e1c5759d
STM32 F7: Port the STM32 F7
2015-07-20 13:54:41 -06:00
Gregory Nutt
37b956f83d
STM32 F7 Ethernet: With these last changes, the STM32 F7 Ethernet driver is functional
2015-07-20 10:57:06 -06:00
Gregory Nutt
32aa2e937e
Update ChangeLog
2015-07-20 07:25:13 -06:00
Gregory Nutt
4b9b7589b9
STM32 F7: Add logic to enable I-/D-Cache, ITCM and DTCM
2015-07-19 10:43:26 -06:00
Gregory Nutt
0aefd55383
Update ChangeLog
2015-07-17 07:46:40 -06:00
Gregory Nutt
652371c919
Add CONFIG_NETDEV_LATEINIT that can be used to suppress calls to up_netinitialize() from early initialization
2015-07-17 07:20:16 -06:00
Gregory Nutt
27f6509022
Add initial support for the STM32 F7 Discovery board
2015-07-16 11:43:25 -06:00
Gregory Nutt
320c584888
CAN driver: Fix a problem where the rx_sem count can grow without bounds
2015-07-15 18:20:08 -06:00
Gregory Nutt
e803ffa082
Update ChangeLog
2015-07-15 11:23:35 -06:00
Gregory Nutt
ffcf173850
Update ChangeLog
2015-07-14 10:20:50 -06:00
Gregory Nutt
95424d9ef3
NETDB: Add support for caching DNS name resultion mappings
2015-07-13 10:41:32 -06:00
Gregory Nutt
9a6cf5724e
DNS: Finish off low-level DNS IPv6 request processing. Untested on initial commit
2015-07-12 16:23:08 -06:00
Gregory Nutt
67378ed65e
Upate ChangeLog
2015-07-12 11:59:23 -06:00
Gregory Nutt
5ace3311d9
Repartitioning of DNS client logic in preparation for IPv6 support
...
- Rename include/nuttx/net/dnsclient.h to dns.h
- Move internal DNS prototypes from dns.h to libc/netdb/lib_dns.h
- Global standard DNS definitions from libc/netdb/dns_soccket.c to dns.h
- Eliminate dns_gethostip(). This is now an internal part of gethostbyname()
- Eliminate interface dns_whois(). Not needed in this new context.
2015-07-12 09:19:40 -06:00
Gregory Nutt
a4a29f4ead
Update ChangeLog
2015-07-10 15:27:11 -06:00
Gregory Nutt
b7708f8479
Update ChangeLog
2015-07-10 13:35:13 -06:00
Gregory Nutt
b7bc6ce598
Update ChangeLog
2015-07-10 08:45:35 -06:00
Gregory Nutt
b22769cd14
Update ChangeLog
2015-07-09 12:11:02 -06:00
Gregory Nutt
3971d97332
Update ChangeLog
2015-07-09 08:27:08 -06:00
Gregory Nutt
299782e8ec
Add support for gethostbyaddr()
2015-07-08 14:33:23 -06:00
Gregory Nutt
e1c306f2dd
Add support for sethostname
2015-07-05 08:42:32 -06:00
Gregory Nutt
4c54db68bd
Implementment board_power_off() for the simulation platform.
2015-07-04 07:22:38 -06:00
Gregory Nutt
a7efa2fa2b
Update ChangeLog
2015-07-02 09:40:06 -06:00
Gregory Nutt
ce6291b579
Update ChangeLog
2015-07-02 08:22:28 -06:00
Gregory Nutt
c1d12c5063
Update ChangeLog
2015-07-01 11:58:16 -06:00
Gregory Nutt
ff389b15ab
LPC17xx: Fix a warning about an unused local variable
2015-07-01 09:36:39 -06:00
Gregory Nutt
6e591f6f52
arch/arm/src/sama5/sam_ehci.c: Fix some bad conditional compilation that left a function undefined if CONFIG_USBHOST_ASYNCH is not selected.
2015-07-01 07:04:02 -06:00
Gregory Nutt
31e815b364
Update ChangeLog
2015-07-01 06:27:50 -06:00
Gregory Nutt
092a8a8aed
tools/testbuild.sh: Add a script that can be used perform test builds on a set of board configurations
2015-06-30 14:38:01 -06:00
Gregory Nutt
10e8f13eb5
Update ChangeLog
2015-06-30 11:44:48 -06:00
Gregory Nutt
5545e6a4d7
Update ChangeLog
2015-06-30 08:43:48 -06:00
Gregory Nutt
d1ab9c2e0a
Remove the configs/ directory
2015-06-29 13:12:29 -06:00
Gregory Nutt
40f52f72d7
Documentation directory is now a submodule
2015-06-29 11:04:08 -06:00
Gregory Nutt
30280a913b
Remove the Documentation/ directory
2015-06-29 10:57:05 -06:00
Gregory Nutt
342f5fe33d
Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation
2015-06-28 08:08:57 -06:00
Gregory Nutt
3d0a53cf2b
Update ChangeLog
2015-06-26 07:09:35 -06:00
Gregory Nutt
003bacdf91
Update ChangeLog
2015-06-26 06:56:57 -06:00
Gregory Nutt
ccadb28730
Update ChangeLog
2015-06-22 09:33:42 -06:00
Gregory Nutt
2a41e5ce95
Update ChangeLog
2015-06-22 07:49:52 -06:00
Gregory Nutt
0e89d32e8f
Update ChangeLog
2015-06-22 07:13:30 -06:00
Gregory Nutt
80f39d5940
Update ChangeLog
2015-06-21 07:49:39 -06:00
Gregory Nutt
b4682bd839
Update ChangeLog
2015-06-20 14:42:23 -06:00
Gregory Nutt
79935b7816
Update ChangeLog
2015-06-18 14:00:41 -06:00
Gregory Nutt
3cd35c2265
Update ChangeLogs
2015-06-16 10:04:25 -06:00
Gregory Nutt
41fa4c7dbe
Updata ChangeLog
2015-06-13 15:09:06 -06:00
Gregory Nutt
a0d55ca97b
Update ChangeLog
2015-06-12 19:17:21 -06:00
Gregory Nutt
00a9f8fdc3
Update ChangeLog
2015-06-12 18:09:03 -06:00
Gregory Nutt
bbe54afd14
Update ChangeLogs
2015-06-12 11:56:23 -06:00
Gregory Nutt
343981b6c7
Update ChangeLog
2015-06-11 14:43:56 -06:00
Gregory Nutt
db3e3e5ce5
Update ChangeLog
2015-06-11 10:11:45 -06:00
Gregory Nutt
92a471e4b5
Update ChangeLog
2015-06-11 08:14:18 -06:00
Gregory Nutt
8e21bac5d4
Update ChangeLog
2015-06-10 11:48:00 -06:00
Gregory Nutt
8ec52df2cb
Update ChangeLog
2015-06-10 08:40:41 -06:00
Gregory Nutt
d18a6b638c
Update ChangeLog
2015-06-09 17:04:38 -06:00
Gregory Nutt
ef4fc3b21b
Update ChangeLog
2015-06-09 12:52:13 -06:00
Gregory Nutt
8be0822b98
Prep for the NuttX-7.10 Release
2015-06-09 11:33:50 -06:00
Gregory Nutt
ce8f026a32
Update ChangeLog
2015-06-07 13:15:35 -06:00
Gregory Nutt
5956960145
Update ChangeLog
2015-06-07 08:19:37 -06:00
Gregory Nutt
1c09361e2a
Update ChangeLog
2015-06-06 19:16:16 -06:00
Gregory Nutt
a9b5145525
Update ChangeLog
2015-06-06 19:16:14 -06:00
Gregory Nutt
2b65030b39
Update ChangeLog
2015-06-05 15:03:12 -06:00
Gregory Nutt
6f258f062c
Update ChangeLog
2015-06-05 14:28:10 -06:00
Gregory Nutt
93d66a8531
Update ChangeLog
2015-06-05 13:20:14 -06:00
Gregory Nutt
5ad6514ec0
Update ChangeLog
2015-06-04 06:55:49 -06:00
Gregory Nutt
eb35f48fca
Update ChangeLog
2015-06-03 18:49:03 -06:00
Gregory Nutt
4620695bd9
Update ChangeLog
2015-06-03 17:36:50 -06:00
Gregory Nutt
f676e1f8c5
Upate ChangeLog
2015-06-03 10:47:13 -06:00
Gregory Nutt
f4dde423c9
Update ChangeLog
2015-06-03 09:29:47 -06:00
Gregory Nutt
932ffd0291
Update ChangeLog
2015-06-03 08:13:31 -06:00
Gregory Nutt
7fee026a5d
Update ChangeLog
2015-06-03 07:28:37 -06:00
Gregory Nutt
15b0f7e89a
Update ChangeLog
2015-06-02 14:28:43 -06:00
Gregory Nutt
e2f04ec796
Update ChangeLog
2015-06-02 11:02:17 -06:00
Gregory Nutt
2e78f2235b
Update ChangeLog
2015-06-01 14:19:40 -06:00
Gregory Nutt
114b8c015c
ChangeLog
2015-06-01 08:38:14 -06:00
Gregory Nutt
64bf18cfbd
Update ChangeLog
2015-05-31 13:09:21 -06:00
Gregory Nutt
01873babea
Update ChangeLog
2015-05-31 12:51:42 -06:00
Gregory Nutt
678dd26205
Update ChangeLog
2015-05-31 11:40:47 -06:00
Gregory Nutt
d5282359c7
Update ChangeLog
2015-05-31 08:41:46 -06:00
Gregory Nutt
cf3003786d
Update ChangeLog
2015-05-30 10:02:11 -06:00
Gregory Nutt
5142a1a1db
Update ChangeLog
2015-05-30 09:31:31 -06:00
Gregory Nutt
75346a4f0d
Merge branch 'master' of ssh://git.code.sf.net/p/nuttx/git into multinic
...
Conflicts:
nuttx/ChangeLog
2015-05-29 14:36:20 -06:00
Gregory Nutt
94727492fb
Update ChangeLogs
2015-05-29 12:11:14 -06:00
Gregory Nutt
e5033d3037
Update ChangeLog
2015-05-29 10:22:38 -06:00
Gregory Nutt
988fbf0dcc
Merge branch 'master' of ssh://git.code.sf.net/p/nuttx/git into multinic
...
Conflicts:
nuttx/ChangeLog
2015-05-29 08:15:17 -06:00
Gregory Nutt
4a66e5e1bb
Update ChangeLog
2015-05-29 07:23:47 -06:00
Gregory Nutt
b5c005d5a4
Merge remote-tracking branch 'origin/master' into multinic
...
Conflicts:
nuttx/ChangeLog
2015-05-28 19:30:48 -06:00
Gregory Nutt
cc1469a364
Update ChangeLog
2015-05-28 12:13:03 -06:00
Gregory Nutt
b450226296
Update ChangeLog
2015-05-28 08:28:45 -06:00
Gregory Nutt
7f71905725
Update ChangeLog
2015-05-27 17:18:58 -06:00
Gregory Nutt
f65b86f9e3
Update ChangeLog
2015-05-27 12:14:21 -06:00
Gregory Nutt
f703b66152
Update ChangeLog
2015-05-26 15:05:51 -06:00
Gregory Nutt
db72167ea5
Update ChangeLog
2015-05-26 08:14:03 -06:00
Gregory Nutt
339d60525e
Update ChangeLog
2015-05-26 07:42:24 -06:00
Gregory Nutt
e0eb1d3d1c
Update changeLog
2015-05-25 18:30:40 -06:00
Gregory Nutt
7cdef22288
Update ChangeLog
2015-05-24 07:50:57 -06:00
Gregory Nutt
4adda9d428
Fix numerous typos in configuration variable names. Tracked down by Alan Carvalho de Assis
2015-05-23 17:08:35 -06:00
Gregory Nutt
3c71b5dbfa
Update ChangeLog
2015-05-23 09:54:10 -06:00
Gregory Nutt
c5f4a2c84d
Update ChangeLog
2015-05-23 06:51:22 -06:00
Gregory Nutt
4a3e287565
Update ChangeLog
2015-05-22 14:38:45 -06:00
Gregory Nutt
6946402fce
Update ChangeLog
2015-05-21 07:10:02 -06:00
Gregory Nutt
0885317600
Update ChangeLog
2015-05-20 18:40:00 -06:00
Gregory Nutt
5ef695f3b7
Update ChangeLog
2015-05-19 14:53:59 -06:00
Gregory Nutt
fc91646daf
Update ChangeLogs
2015-05-19 12:28:58 -06:00
Gregory Nutt
eb7e66c945
Update Documentation
2015-05-18 13:41:35 -06:00
Gregory Nutt
5e6e6fac05
Update ChangeLog
2015-05-18 08:56:31 -06:00
Gregory Nutt
9bb4d116d0
Update ChangeLog
2015-05-14 14:17:09 -06:00
Gregory Nutt
d89c29abdf
Update ChangeLog
2015-05-13 14:47:46 -06:00
Gregory Nutt
2b30f35890
Update changeLog
2015-05-13 07:29:48 -06:00
Gregory Nutt
390ae171ba
Update ChangeLog and README
2015-05-12 17:59:45 -06:00
Gregory Nutt
49fafd6d36
Update ChangeLog
2015-05-12 14:49:17 -06:00
Gregory Nutt
eab41c3e5c
Update ChangeLogs
2015-05-12 07:55:54 -06:00
Gregory Nutt
04a409aba0
Update ChangeLog
2015-05-12 07:12:28 -06:00
Gregory Nutt
89c0e3faa0
Update ChangeLog
2015-05-11 07:23:18 -06:00
Gregory Nutt
bd437bfb03
Update ChangeLog
2015-05-09 16:23:19 -06:00
Gregory Nutt
063be9f7f3
Update ChangeLog
2015-05-09 06:07:53 -06:00
Gregory Nutt
318649bbba
Update ChangeLog
2015-05-08 18:09:48 -06:00
Gregory Nutt
009d470ded
Update ChangeLog
2015-05-08 14:14:05 -06:00
Gregory Nutt
8f9c9352ae
Update ChangeLog
2015-05-07 17:17:55 -06:00
Gregory Nutt
2e6657fbf6
Upddate ChangeLog
2015-05-07 07:10:13 -06:00
Gregory Nutt
ca4b66774a
Update ChangeLog
2015-05-06 14:14:15 -06:00
Gregory Nutt
651c79327c
Update ChangeLog
2015-05-06 12:50:50 -06:00
Gregory Nutt
47a112974d
USB host: Modify the transfer() and asynch() methods so that the actual size of the transfer is returned. Unverified on initial commit.
2015-05-05 13:14:22 -06:00
Gregory Nutt
57c966c67d
Update ChangeLog
2015-05-04 09:11:24 -06:00
Gregory Nutt
10652e8c9b
Update ChangeLog
2015-05-03 16:16:34 -06:00
Gregory Nutt
e24598e1b7
Update ChangeLog
2015-05-03 13:25:56 -06:00
Gregory Nutt
149839facc
Update ChangeLog
2015-05-02 14:16:09 -06:00
Gregory Nutt
84983b0ab2
Merge remote-tracking branch 'origin/master' into usbhub
2015-05-02 11:39:08 -06:00
Gregory Nutt
af68a2d484
Update ChangeLog
2015-05-02 11:02:08 -06:00
Gregory Nutt
0577a54d18
Update ChangeLog
2015-05-02 06:32:22 -06:00
Gregory Nutt
d1283484ac
Merge remote-tracking branch 'origin/master' into usbhub
2015-05-01 15:38:48 -06:00
Gregory Nutt
49fef8bacc
Update ChangeLog
2015-05-01 07:34:54 -06:00
Gregory Nutt
086bb52a37
Merge remote-tracking branch 'origin/master' into usbhub
2015-04-28 12:22:20 -06:00
Gregory Nutt
2afe1e869b
Update ChangeLog
2015-04-28 06:41:21 -06:00
Gregory Nutt
c9da86b4f0
Merge remote-tracking branch 'origin/master' into usbhub
2015-04-24 07:55:02 -06:00
Gregory Nutt
35299de347
Update ChangeLog
2015-04-24 07:47:14 -06:00
Gregory Nutt
d11af85ddf
Merge remote-tracking branch 'origin/master' into usbhub
2015-04-23 14:06:18 -06:00
Gregory Nutt
0092f79696
Two r's and only two r's in the word interrupt
2015-04-23 14:04:43 -06:00
Gregory Nutt
0076e6b3b5
Merge from master
2015-04-23 07:17:28 -06:00
Gregory Nutt
093a144934
sem_wait(): Missing comma on debug statement caused compile error with DEBUG on. Why hasn't that been noted before?
2015-04-23 07:15:55 -06:00
Gregory Nutt
be2ed7eba7
Merge in from Master
2015-04-23 06:34:49 -06:00
Gregory Nutt
4c997edc04
Update ChangeLog
2015-04-22 07:36:24 -06:00
Gregory Nutt
6b27c48068
Merge in from master
2015-04-21 09:32:19 -06:00
Gregory Nutt
bb2bffa626
Update ChangeLogs
2015-04-21 09:27:52 -06:00
Gregory Nutt
5b106c5060
Update ChangeLog
2015-04-19 10:57:31 -06:00
Gregory Nutt
ce566286c0
Merge from master
2015-04-19 09:01:28 -06:00
Gregory Nutt
7fcfca40b5
Bring in more logic from https://github.com/kaushalparikh/nuttx
2015-04-19 08:55:48 -06:00
Gregory Nutt
84eded8a31
Update ChangeLog
2015-04-19 06:59:58 -06:00
Gregory Nutt
153ddf9007
Update ChangeLog
2015-04-18 16:23:15 -06:00
Gregory Nutt
175a9387e1
Update ChangeLog
2015-04-18 11:40:20 -06:00
Gregory Nutt
a822e0ad52
Update ChangeLog
2015-04-18 07:34:13 -06:00
Gregory Nutt
9c5bdc97d9
Update ChangeLog
2015-04-17 07:11:27 -06:00
Gregory Nutt
759f8f8e78
Update ChangeLogs
2015-04-16 09:36:10 -06:00
Gregory Nutt
4c74c83c97
Update ChangeLog
2015-04-16 09:14:11 -06:00
Gregory Nutt
6c17a4978d
Update ChangeLog
2015-04-15 21:40:18 -06:00
Gregory Nutt
0893a37b2b
Update ChangeLogs
2015-04-15 11:05:05 -06:00
Gregory Nutt
6b283c303c
Prep for 7.9 release
2015-04-14 14:17:55 -06:00
Gregory Nutt
660fe03ce7
Update ChangeLog
2015-04-14 07:33:52 -06:00
Gregory Nutt
490a2a5ebd
Remove all traces of the Galileo board. That port is not going to happen -- I dont' even have the Galileo board anymore.
2015-04-13 15:36:50 -06:00
Gregory Nutt
4fc5bcef27
Update ChangeLog
2015-04-13 14:03:52 -06:00
Gregory Nutt
bf59ead547
Update ChangeLog
2015-04-12 14:25:15 -06:00
Gregory Nutt
68bd885112
Update ChangeLog
2015-04-12 09:03:55 -06:00
Gregory Nutt
70ad9a6bcf
Update ChangeLog
2015-04-11 12:49:40 -06:00
Gregory Nutt
fdf27b83e1
Update ChangeLog
2015-04-09 15:55:03 -06:00
Gregory Nutt
c7b0be2583
Update ChangeLog
2015-04-09 10:42:00 -06:00
Gregory Nutt
018cbc75dc
Update ChangeLog
2015-04-09 10:17:28 -06:00
Gregory Nutt
35fd164c54
Update ChangeLog
2015-04-09 08:09:34 -06:00
Gregory Nutt
e113be1bff
SAMA5 Serial: Reading IMR and disabling interrupt must be atomic
2015-04-08 15:27:31 -06:00
Gregory Nutt
2ba3ccbde0
Update ChangeLog
2015-04-08 14:19:41 -06:00
Gregory Nutt
6ed119da6b
Update ChangeLog
2015-04-08 07:00:38 -06:00
Gregory Nutt
9d87e9279e
Update ChangeLogs
2015-04-05 09:46:39 -06:00
Gregory Nutt
070b940523
Upate ChangeLogs
2015-04-04 11:52:18 -06:00
Gregory Nutt
89c9c48391
Update ChangeLog
2015-04-02 13:02:07 -06:00
Gregory Nutt
10e6738abe
Update ChangeLog
2015-04-01 12:38:32 -06:00
Gregory Nutt
526739a74e
Update ChangeLogs
2015-03-31 17:05:05 -06:00
Gregory Nutt
fa35aa59e2
Update ChangeLog
2015-03-31 16:31:35 -06:00
Gregory Nutt
6abae1202f
Update ChangeLogs
2015-03-31 15:06:05 -06:00
Gregory Nutt
ba169b69f9
Update ChangeLogs
2015-03-31 13:26:33 -06:00
Gregory Nutt
dd7d6d269c
Update ChangeLogs
2015-03-31 12:16:43 -06:00
Gregory Nutt
cc5c243fb8
Update ChangeLog
2015-03-31 11:32:00 -06:00
Gregory Nutt
cf77f8f28f
Update ChangeLog
2015-03-31 10:22:50 -06:00
Gregory Nutt
805be6fee2
Update ChangeLog
2015-03-29 15:39:08 -06:00
Gregory Nutt
eb304951b4
Minor Documentation update
2015-03-29 14:46:52 -06:00
Gregory Nutt
f67c489756
Update documentation
2015-03-29 07:52:52 -06:00
Gregory Nutt
e898573f38
Trivial removal of trailing whitespace
2015-03-23 09:34:47 -06:00
Gregory Nutt
e22a3a24af
Update ChangeLog
2015-03-23 09:17:33 -06:00
Gregory Nutt
af185a9c7c
Update ChangeLog
2015-03-22 08:37:17 -06:00
Gregory Nutt
56e24b561f
Add Olimexino-STM32 board support from David Sidrane
2015-03-20 18:00:10 -06:00
Gregory Nutt
dd94bc44c5
Update ChangeLog
2015-03-20 09:20:55 -06:00
Gregory Nutt
4915c29e42
Update ChangeLog
2015-03-19 12:58:54 -06:00
Gregory Nutt
480bb3c395
Cosmetic update to README
2015-03-17 17:10:44 -06:00
Gregory Nutt
bb67dad770
Update ChangeLog
2015-03-17 14:49:24 -06:00
Gregory Nutt
586eb6162c
Update Changelog
2015-03-15 09:38:46 -06:00
Gregory Nutt
400451c74b
Update ChangeLog
2015-03-15 07:46:49 -06:00
Gregory Nutt
2258189a11
Update ChangeLog
2015-03-14 17:39:29 -06:00
Gregory Nutt
f8aa0ec741
Update ChangeLog
2015-03-14 14:48:59 -06:00
Gregory Nutt
a45d7ca909
Update ChangeLog
2015-03-13 07:31:26 -06:00
Gregory Nutt
a614fd8d6e
Update ChangeLog
2015-03-12 08:14:26 -06:00
Gregory Nutt
298cf7e8e3
Update ChangeLog
2015-03-11 13:14:15 -06:00
Gregory Nutt
634762cfda
Update ChangeLog
2015-03-11 07:56:37 -06:00
Gregory Nutt
e23002fcfc
Update ChangeLog
2015-03-10 12:17:54 -06:00
Gregory Nutt
c5c963c55d
Update ChangeLog
2015-03-10 09:51:05 -06:00
Gregory Nutt
fc937b746c
Update ChangeLog
2015-03-06 08:59:09 -06:00
Gregory Nutt
4963ea97ec
Update ChangeLog
2015-03-06 08:27:53 -06:00
Gregory Nutt
26705141f2
Update ChangeLog
2015-03-05 17:46:25 -06:00
Gregory Nutt
182fa1cd79
Update ChangeLog
2015-03-05 11:26:49 -06:00
Gregory Nutt
9bb707b58d
Update ChangeLog
2015-03-05 10:01:48 -06:00
Gregory Nutt
d68594d6fa
Update ChangeLog
2015-03-04 07:25:01 -06:00
Gregory Nutt
a7a33c8bdf
Update ChangeLog
2015-03-04 07:02:19 -06:00
Gregory Nutt
81ac04bbaf
Update ChangeLog
2015-03-04 06:53:54 -06:00
Gregory Nutt
6f0bec7dfa
Update ChangeLog
2015-03-04 06:41:09 -06:00
Gregory Nutt
153cd7f4f2
Update ChangeLog
2015-03-03 14:50:28 -06:00
Gregory Nutt
bdde81a392
Update ChangeLog
2015-03-03 08:59:34 -06:00
Gregory Nutt
ea5dc09912
Update ChangeLog
2015-03-02 10:36:47 -06:00
Gregory Nutt
b068063933
Update ChangeLog
2015-03-02 10:30:34 -06:00
Gregory Nutt
f01c03025d
Update ChangeLog
2015-03-02 09:59:08 -06:00
Gregory Nutt
f28420195e
Update ChangeLog
2015-02-27 17:23:00 -06:00
Gregory Nutt
52e911a033
Update ChangeLog
2015-02-27 08:27:25 -06:00
Gregory Nutt
54c8efab69
Update ChangeLog
2015-02-25 08:07:55 -06:00
Gregory Nutt
d2bd1c9de0
Update ChangeLog
2015-02-25 07:48:02 -06:00
Gregory Nutt
4521e082a9
Update ChangeLog
2015-02-25 07:26:07 -06:00
Gregory Nutt
a8f3049d3f
Update ChangeLog
2015-02-24 20:28:01 -06:00
Gregory Nutt
f9290f2bfa
Update ChangeLog
2015-02-24 07:30:45 -06:00
Gregory Nutt
3e12bb9963
Update ChangeLog
2015-02-23 19:31:59 -06:00
Gregory Nutt
4506980f8b
Update ChangeLog
2015-02-23 11:07:06 -06:00
Gregory Nutt
d7f3f43392
Update ChangeLog
2015-02-22 10:55:23 -06:00
Gregory Nutt
ea1640a0a8
Update ChangeLog
2015-02-22 08:48:11 -06:00
Gregory Nutt
96b61a2bdb
Update ChangeLog
2015-02-21 19:45:31 -06:00
Gregory Nutt
bf11793fc2
Fix some minor typos in the uClibc++ install script
2015-02-21 15:54:11 -06:00
Gregory Nutt
7ab3afaa07
Oops.. accidentally deleted a line from the ChangeLog
2015-02-21 15:46:13 -06:00
Gregory Nutt
a826bfb5c4
Update ChangeLog
2015-02-21 15:19:13 -06:00
Gregory Nutt
de24be267f
Update ChangeLog
2015-02-20 13:42:27 -06:00
Gregory Nutt
1c9144c5a6
Update ChangeLog
2015-02-20 13:32:37 -06:00
Gregory Nutt
680d39a520
Update ChagneLog
2015-02-20 12:33:32 -06:00
Gregory Nutt
d6790d2759
Update ChangeLog
2015-02-20 07:09:30 -06:00
Gregory Nutt
c3e9eac800
Update ChangeLog
2015-02-18 09:38:04 -06:00
Gregory Nutt
3346dfc2d0
Update ChangeLog
2015-02-17 17:00:12 -06:00
Gregory Nutt
a9081d4d22
Update ChangeLog
2015-02-17 13:53:33 -06:00
Gregory Nutt
4560e5184b
Update ChangeLog
2015-02-17 08:28:15 -06:00
Gregory Nutt
29b819365b
Update ChangeLog
2015-02-16 15:48:09 -06:00
Gregory Nutt
f03c1d5a8e
Updata ChangeLog
2015-02-16 07:20:04 -06:00
Gregory Nutt
c2234e058f
Update ChangeLog
2015-02-15 13:02:29 -06:00
Gregory Nutt
eb868b57d8
Update ChangeLog
2015-02-14 06:41:42 -06:00
Gregory Nutt
a1d3faaa8a
Update ChangeLog
2015-02-13 18:39:43 -06:00
Gregory Nutt
8cb4b8c101
Update ChangeLog
2015-02-13 13:46:20 -06:00
Gregory Nutt
7168170142
Update ChangeLog
2015-02-13 13:00:56 -06:00
Gregory Nutt
5c75c8ad1d
Update ChangeLog
2015-02-13 11:49:20 -06:00
Gregory Nutt
ebfc797f9d
Update ChangeLog
2015-02-13 10:10:11 -06:00
Gregory Nutt
d52482606e
Update ChangeLog
2015-02-13 06:22:35 -06:00
Gregory Nutt
38aa31dea2
Update ChangeLog
2015-02-12 12:21:05 -06:00
Gregory Nutt
b6e399cc65
Update ChangeLog
2015-02-12 11:17:23 -06:00
Gregory Nutt
e043ce1268
Update ChangeLog
2015-02-11 18:30:01 -06:00
Gregory Nutt
fb796f6b9f
Prep for 7.8 release
2015-02-11 11:05:45 -06:00
Gregory Nutt
0f7fafe43c
Update ChangeLog
2015-02-11 07:18:40 -06:00
Gregory Nutt
d379a67b8b
Update ChangeLog
2015-02-11 06:37:40 -06:00
Gregory Nutt
13d273a260
Update ChangeLog
2015-02-10 14:06:07 -06:00
Gregory Nutt
9e2702fa52
Update ChangeLog
2015-02-10 11:13:59 -06:00
Gregory Nutt
6583a331be
Update ChangeLog
2015-02-10 06:56:20 -06:00
Gregory Nutt
cca957bdfb
Update changelog
2015-02-10 06:28:09 -06:00
Gregory Nutt
828e922929
Update ChangeLog
2015-02-09 18:21:12 -06:00
Gregory Nutt
85d83108ed
Update ChangeLog
2015-02-09 17:19:06 -06:00
Gregory Nutt
a585669ccc
Update ChangeLog
2015-02-09 16:37:01 -06:00
Gregory Nutt
67bc1d465b
Update ChangeLog
2015-02-09 16:18:24 -06:00
Gregory Nutt
3080ed6549
Update ChangeLog
2015-02-09 15:30:09 -06:00
Gregory Nutt
b78a9fc290
Update ChangeLog
2015-02-09 10:53:22 -06:00
Gregory Nutt
3b61f2c734
Update ChangeLog
2015-02-09 08:53:52 -06:00
Gregory Nutt
7403121729
Update ChangeLog
2015-02-09 08:37:28 -06:00
Gregory Nutt
2ae737f906
Update ChangeLog
2015-02-08 06:58:23 -06:00
Gregory Nutt
7ac36f7de6
Update ChangeLog
2015-02-07 14:02:08 -06:00
Gregory Nutt
bc11940650
Update ChangeLog
2015-02-05 18:01:57 -06:00
Gregory Nutt
663e7ddb59
Update ChangeLog
2015-02-05 17:42:52 -06:00
Gregory Nutt
5ec3693bb7
Update ChangeLog
2015-02-05 13:55:36 -06:00
Gregory Nutt
f7aefb1617
Update ChangeLog
2015-02-05 12:51:01 -06:00
Gregory Nutt
93a59a7fc4
Update ChangeLog
2015-02-05 11:24:11 -06:00
Gregory Nutt
27a115a31d
Update ChangeLog
2015-02-05 09:45:50 -06:00
Gregory Nutt
937a5ecd97
Update ChangeLog
2015-02-05 09:30:35 -06:00
Gregory Nutt
f735e16bdf
Update ChangeLog
2015-02-04 07:27:58 -06:00
Gregory Nutt
a03b5cd3e3
Update ChangeLog
2015-02-03 15:43:13 -06:00
Gregory Nutt
2c14d4ef93
Update ChangeLog
2015-02-03 13:37:54 -06:00
Gregory Nutt
8ced2c2fda
Update ChangeLog
2015-02-03 13:27:52 -06:00
Gregory Nutt
5da997b43f
Update ChangeLog
2015-02-03 07:33:04 -06:00
Gregory Nutt
88bcb98424
Update ChangeLog
2015-02-02 14:53:09 -06:00
Gregory Nutt
7985df9363
Update ChangeLog
2015-02-02 13:47:16 -06:00
Gregory Nutt
4529dcaaf3
Update ChangeLog
2015-02-01 07:29:01 -06:00
Gregory Nutt
962e22e795
Update ChangeLog
2015-02-01 06:46:41 -06:00
Gregory Nutt
3969dd4380
Update ChangeLog
2015-01-31 14:25:01 -06:00
Gregory Nutt
b526350baa
Upate ChangeLog
2015-01-31 13:21:49 -06:00
Gregory Nutt
3e072ae23e
Update ChangeLog
2015-01-31 12:06:52 -06:00
Gregory Nutt
05e82a88a7
Update ChangeLog
2015-01-31 11:32:55 -06:00
Gregory Nutt
e025094593
Update ChangeLog
2015-01-31 07:08:38 -06:00
Gregory Nutt
ff2a0d2df4
Update ChangeLog
2015-01-30 11:22:49 -06:00
Gregory Nutt
b480e5574e
Update ChangeLog
2015-01-30 08:20:41 -06:00
Gregory Nutt
478e363200
Update ChangeLog
2015-01-30 08:12:19 -06:00
Gregory Nutt
3eacc1e486
Update ChangeLog
2015-01-30 07:47:04 -06:00
Gregory Nutt
68418c241e
Update ChangeLog
2015-01-30 07:30:55 -06:00
Gregory Nutt
5a2bcb9fc2
Update ChangeLog
2015-01-29 16:35:02 -06:00
Gregory Nutt
f645c10f40
Resolve merge conflict
2015-01-29 11:50:36 -06:00
Gregory Nutt
6ac0e90692
Update ChangeLog
2015-01-29 11:48:46 -06:00
Gregory Nutt
447ec3cae7
Update ChangeLog
2015-01-29 06:38:45 -06:00
Gregory Nutt
9c2af5317f
Merge remote-tracking branch 'origin/master' into afunix
2015-01-28 12:03:43 -06:00
Gregory Nutt
09972a7812
Update ChangeLog
2015-01-28 11:58:39 -06:00
Gregory Nutt
5f9837dcc8
Merge remote-tracking branch 'origin/master' into afunix
...
Conflicts:
nuttx/ChangeLog
2015-01-27 21:47:12 -06:00