- Aug 29, 2017
-
-
Gregory Nutt authored
Networking: Clean up some naming that has bothered me for a long time... There are no interrupts and no interrupt handlers in the network. There are events and event handler (there used to to be interrupt logic in there years ago but that is long, long gone).
-
Gregory Nutt authored
Networking: A placeholder for some missing logic in the previous change related to monitoring network status for dup'ed sockets. If one of the dup'ed socket's is closed, then network monitor resources associated with that one socket must be recovered. Also, in the event that socket is being used on one thread, but then closed on another, any threads waiting for events from the socket should be informed of the closure. That latter requirement is not implemented because current data structures do not support it.
-
Gregory Nutt authored
Networking: Fix a runaway recursion problem introduced the previous fixe for shutting down dup'ed sockets.
-
Gregory Nutt authored
-
Gregory Nutt authored
Networking: TCP disconnection callbacks are not retained in a list. This will support mutiple callbacks per lower-level TCP connection structure. That is necessary for the cae where a socket is dup'ed and shares the same lower-level connection structure. NOTE: There still needs to be a call to tcp_start_monitor() when the socket is dup'ed.
-
Gregory Nutt authored
Networking: Move two more TCP specific files from inet/ to tcp/. There is other TCP-specific logic in inet/ that should be moved sometime, but those are more entangled.
-
Gregory Nutt authored
Networking: Move net/inet/net_monitor.c to net/tcp/tcp_monitor.c in preparation for design change to fix monitoring of duplicated sockets.
-
- Aug 28, 2017
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Mateusz Szafoni authored
stm32_hrtim: add DMA configuration Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
raiden00pl authored
-
Gregory Nutt authored
work_queue() must cancel existing work prior to queuing new work, otherwise the work queue can become corrupted. Problem noted by Pascal Speck.
-
Juha Niskanen authored
-
Juha Niskanen authored
-
Juha Niskanen authored
-
Juha Niskanen authored
-
Alan Carvalho de Assis authored
-
- Aug 27, 2017
-
-
Mateusz Szafoni authored
stm32_dac.c: support external triggering for DMA transfer Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
raiden00pl authored
-
Mateusz Szafoni authored
Master * stm32f0/Kconfig: remove references to HRTIM * STM32F33: missing SYSCFG CFGR3 definitions * stm32_hrtim.h: remove redundant definitions * stm32_hrtim.c: fix DAC triggers configuration * stm32_hritm.c: warning message when default value selected * stm32_hrtim.c: missing master timer logic * stm32_hrtim.c: add more assertions * stm32_dac.c: fix conditional * stm32_dac.c: conditional logic for timer triggering * stm32_dac.c: fix TSEL configuration when HRTIM * stm32_dac.c: unnecessary condition * stm32_dac.c: DMA request remapping * stm32_dac.c: fix commpilation errors * stm32_dac.c: add DMA buffers initialization logic * stm32_hrtim.c: enable DAC triggering * analog/comp.c: fix compilation errors when poll disabled * stm32_hrtim.c: remove doubled assertions Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Gregory Nutt authored
-
Masayuki Ishikawa authored
eMMC/SD and USB support for LC823450 Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Masayuki Ishikawa authored
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
-
Masayuki Ishikawa authored
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
-
Masayuki Ishikawa authored
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
-
Masayuki Ishikawa authored
-
- Aug 26, 2017
-
-
Nickolay Semyonov (RPI) authored
-
Gregory Nutt authored
-
Nickolay Semyonov (RPI) authored
-
Gregory Nutt authored
Simulator: Adds necessary functionality to build Simulator under ARM Linux. Tested only on Raspberry3. Currently setjmp/longjmp do not save/restore floating point registers. Patch provided by Bitbucket user nbkolchin.
-
Gregory Nutt authored
6LoWPAN: The original, Contiki-based design used only a single buffer for reassemblying larger packets. This could be a problem issue for hub configurations which really need the capability concurrently reassemble multiple incoming streams concurrently. These was also a design issue in that the reassembly buffer could be corrupted by outgoing packets. The design was extended to support multiple reassembly buffers, each associated with the reassembly tag and source address. This assures that there can be be no corruption of the reassembly once it has started.
-
- Aug 25, 2017
-
-
Gregory Nutt authored
-
Juha Niskanen authored
-
Juha Niskanen authored
-
Juha Niskanen authored
STM32L4 DAC: report transfer as completed in DMA callback. Without this even O_NONBLOCK writes block the calling task if DAC was using DMA.
-
Juha Niskanen authored
-
Gregory Nutt authored
-
Masayuki Ishikawa authored
-
- Aug 24, 2017
-
-
Gregory Nutt authored
-
Gregory Nutt authored
drivers/audio: Fix naming of configurations to be compliant for vs1053 audio driver. One file was not saved before last commit.
-