Update Changelog

This commit is contained in:
Gregory Nutt
2014-06-23 19:38:10 -06:00
parent 7330704d36
commit 9022bc63cf
3 changed files with 16 additions and 4 deletions
+10 -1
View File
@@ -7475,4 +7475,13 @@
* arch/arm/src/lpc17xx and configs/lpcexpresso-lpc1768: Added support
for the lpcxpresso's rtc handler, adc, dac, timers, pwm and mcpwm
drivers. From Max (himax) (2014-6-23).
* net/tcp/Kconfig: Cannot enable bother TCP write buffering AND raw
packet sockets. This should not logically be the case, but is because
the implementations are presently too coupled. The logic packet
socket logic in net/net_send_unbuffered.c needs to be broken out into
a separate file so that write buffered TCP and packet socket transfers
can co-exist (2014-6-23).
* net/uip/uip_pktsend.c: Move the logic that copies data into the
device buffer from net/net_send_unbuffered.c to net/uip/uip_pktsend.c.
This makes the packet socket design more consistent with TCP and UDP
(2014-6-23).
+3
View File
@@ -88,6 +88,9 @@
* Called from socket logic in response to a xmit or poll request from the
* the network interface driver.
*
* This is identical to calling uip_send() except that the data is
* in an I/O buffer chain, rather than a flat buffer.
*
* Assumptions:
* Called from the interrupt level or, at a minimum, with interrupts
* disabled.
+3 -3
View File
@@ -87,9 +87,9 @@
* Called from socket logic in order to send a raw packet in response to
* an xmit or poll request from the the network interface driver.
*
* This is almost identical to calling uip_send() except that the data to
* be sent is copied into dev->d_buf (vs. dev->d_snddata), since there is
* no header on the data.
* This is almost identical to calling uip_send() except that the data to
* be sent is copied into dev->d_buf (vs. dev->d_snddata), since there is
* no header on the data.
*
* Assumptions:
* Called from the interrupt level or, at a minimum, with interrupts