- May 16, 2018
-
-
Gregory Nutt authored
-
Jake Choy authored
-
Gregory Nutt authored
-
- May 15, 2018
-
-
Gregory Nutt authored
-
William Douglas authored
commit 7fd1f0d78546fa0315f4077b779efdd884e5bd53 Author: William Douglas <william@rocklandscientific.com> Date: Tue May 15 13:19:31 2018 -0700 Add support for the second SDMMC device. The second SDMMC device was already supported but the clock was never enabled. This fixes that.
-
Gregory Nutt authored
-
Anthony Merlino authored
sixlowpan: Preserve big-endian (network order) when uncompressing address. This change is the counterpart to another recent endianness fix that occurred on compression of the ip address. Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Jake Choy authored
-
Gregory Nutt authored
arch/arm/src/imxrt: Add missing support for the Cortex-M7 caches; configs/imxrt1050-evk: Enable I- and D-Caches in the nsh configuration. Calibrate the delay loop. Add support for the on-board LED.
-
Gregory Nutt authored
arch/arm/src/imxrt/imxrt_serial.c: Fix some interrupt instabilities; must be in a critical section when modifying serial interrupts. configs/imxrt1050-evk/nsh/defconfig: Use the BASEPRI register to enable/disable interrupts; enable the PROCFS file system.
-
Juha Niskanen authored
-
Gregory Nutt authored
-
- May 14, 2018
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Anthony Merlino authored
configs/photon: Fixes build error introduced in recent rgbled changes. Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Anthony Merlino authored
Photon rgbled fix * configs/photon: Simplifies RGB led start-up logic. * configs/photon: RGB led on Photon is common anode. CONFIGS_RGBLED_INVERT is now enabled Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Anthony Merlino authored
rgbled: Fixes led issues caused by uninitialized memory with CONFIG_RGBLED_MULTICHAN. The uninitialized pwm_info_s struct caused a rogue channel to be started causing errros in the pwm driver Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Gregory Nutt authored
-
- May 13, 2018
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
net/udp: Associated with last commit. Make sure that the new connection flag is cleared when a new UDP connection structure is allocated.
-
Gregory Nutt authored
In connection-mode UDP sockets, a remote address is retained in the UDP connection structure. This determines both there send() will send the packets and which packets recv() will accept. This same mechanism is used for connection-less UDP sendto: A temporary remote address is written into the connection structure to support the sendto() operation. That address persists until the next recvfrom() when it is reset to accept any address. When UDP read-ahead buffering is enabled, however, that means that the old, invalid remote address can be left in the connection structure for some time. This can cause read-ahead buffer to fail, dropping UDP packets. Shortening the time between when he remote address is reset (i.e., immediately after the sendto() completes) is not a solution, that does not eliminate the race condition; in only makes it smaller. With this change, a flag was added to the connection structure to indicate if the UDP socket is in connection mode or if it is connection-less. This change effects only UDP receive operations: The remote address in the UDP connection is always ignored if the UDP socket is not in connection-mode. No for connection-mode sockets, that remote address behaves as before. But for connection-less sockets, it is only used by sendto().
-
- May 12, 2018
-
-
Gregory Nutt authored
arch/arm/src/kinetis + SDHC configs: Make Kinetis SDHC pullups work the same as the STM32 SDIO pullups
-
Alan Carvalho de Assis authored
arch/arm/src/stm32: Add internal pull-up option for SDIO pins (also picks up an unrelated change to a README.txt file)
-
Andrey Zabolotnyi authored
LibTargets.mk, tools/Config.mk: Drop executable bit on installed libraries. The rules to install libraries under lib/ were modified to use mode 0644 instead of the default 0755.
-
Andrey Zabolotnyi authored
-
- May 11, 2018
-
-
Gregory Nutt authored
Documentation/NuttShell.html: Document the mkfatfs the -r option which can be used to specify the number of entries in the FAT12/FAT16 root directory.
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
Back out part of f4bcaa4f.If CONFIG_ARCH_IDLE_CUSTOM is defined, then it should not use the version of lc823450_idle.c in arch/arm/src/lc823450. That part was correct before the PR. If CONFIG_ARCH_IDLE_CUSTOM, then the build should use a custom IDLE loop in the board src/ directory.
-
Masayuki Ishikawa authored
arch/arm/src/lc823450: Fix some recently introduced build issues Reported-by: Wig Cheng <wig.cheng@relajet.com> Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com> Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
- May 10, 2018
-
-
Gregory Nutt authored
Clean up some spacing in the last commit... Seemed like a good idea at the time, but it is better to be consisten than better.
-
Michael Jung authored
libc/unistd: Initial, minimal implementation of sysconf(). Only sufficient to support the functionality of less standard getdtabilesize().
-
- May 09, 2018
-
-
Gregory Nutt authored
-
Gregory Nutt authored
Squashed commit of the following: configs/*/README.txt: Replace each occurrence of './configure.sh' with 'tools/configure.sh' configs/*/README.txt: Remove 'cd ..' after each './configure.sh' configs/*/README.txt: Remove 'cd -' after each './configure.sh' configs/*/README.txt: Remove 'cd tools' before each './configure.sh' configs/README.txt: Remove instruction to CD tools/ before running configure.sh.
-
Gregory Nutt authored
configs/teensy-3.x/usbnsh: Remove CONFIG_USBDEV_DUALSPEED from configuration. Hardware supports only FS.
-
- May 08, 2018
-
-
Jake Choy authored
-
Michał Łyszczek authored
-
Michał Łyszczek authored
-
- May 07, 2018
-
-
Gregory Nutt authored
-