- Jun 14, 2017
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
pthreads: Move pthread_barrier_init, pthread_barrier_destroy, and pthread_barrier_wait from sched/pthreads to libc/pthreads. This just coordinate other OS interface calls but are not a fundamental OS interfaces and, hence, do not belong within the OS.
-
Gregory Nutt authored
pthreads: Move pthread_cond_init and pthread_cond_destory from sched/pthreads to libc/pthreads. This just coordinate other OS interface calls but are not a fundamental OS interfaces and, hence, do not belong within the OS.
-
Gregory Nutt authored
pthreads: Move pthread_once from sched/pthreads to libc/pthreads. pthread_once just coordinates other OS interface calls but is not a fundamental OS interface and, hence, does not belong within the OS.
-
Gregory Nutt authored
pthreads: Move pthread_yield from sched/pthreads to libc/pthreads. it is a simple wrapper for sched_yield and does not belong within the OS.
-
David Sidrane authored
Upstream kinetis Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
David Sidrane authored
Initalize SPI1 on connector J6. No real use, as of yet.
-
David Sidrane authored
-
David Sidrane authored
-
David Sidrane authored
-
- Jun 13, 2017
-
-
Gregory Nutt authored
-
David Sidrane authored
testbuild:Added -x to fail build on errors for CI Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
David Sidrane authored
On CI we want to know ASAP of a failure. This adds the -x (exit on build failures) option to faclitate that behavior. Use ${MAKE} ${MAKE_FLAGS} for make invocation. When -x is provided change MAKE_FLAGS to --silent --no-print-directory and set -e Ignore exit status when using grep for checking for CONFIG_NXWM=y
-
Jussi Kivilinna authored
mtd/w25: wait for BUSY flag to clear in w25_readid and w25_unprotect. W25Q128 datasheet says that all instructions expect 'Read Status Register' and 'Erase/Program Suspend' are ignored when BUSY flag in status register is '1'. Therefore wait for busy flag to clear in w25_readid() and w25_unprotect().
-
Jussi Kivilinna authored
-
Gregory Nutt authored
-
JM authored
stm32/stm32l4 PWM: While attempting to output a 70 MHz square wave from the timer output of a STM32 clocked at 140 MHz (which works fine in baremetal C), I stumbled on what I believe to be an error in arch/arm/src/stm32/stm32_pwm.c. Line 1304 we are told that reload = timclk / info->frequency; which I belive to be incorrect, it should be reload = timclk / info->frequency - 1; since starting to count from 0, if I want to output half of the TIM clock, I must count to 1 and not to 2. Surely enough, the original code did output 140/3=47 MHz, while this correction does allow the output up to 70 MHz. I am not sure this affects most users generating slow PWM (e.g. PX4) but for frequencies close to the PCLK, indeed the difference becomes significant.
-
- Jun 12, 2017
-
-
Mateusz Szafoni authored
stm32_hrtim: GPIOs configuration + EEV and FAULT strucutres Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
raiden00pl authored
-
Gregory Nutt authored
-
Sebastien Lorquet authored
MTD M2PX: If we READ while a write/erase is pending, the command is ignored and the write/erase continues. If we dont catch this situation we will return garbage to the user because the flash will not execute the command. So READ MUST wait for write completion, and before that, the bus must be locked since it's a precondition to calling waitwritecomplete().
-
Gregory Nutt authored
Revert "MTD: Fix problems in SPI locking in mp25x.c driver. Same problem probably in exists in several other drivers that derive from this this driver as well." This reverts commit 85645284.
-
Gregory Nutt authored
-
Sebastien Lorquet authored
MTD: Fix problems in SPI locking in mp25x.c driver. Same problem probably in exists in several other drivers that derive from this this driver as well.
-
Gregory Nutt authored
Based on the last PR, review all serial driver vector attachment. Found one additional error and updated all relevant drivers to current interrupt parameter passing.
-
Masayuki Ishikawa authored
i.MX6: Fix a wrong parameter passed when calling irq_attach() in imx_serial.c Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Masayuki Ishikawa authored
-
Gregory Nutt authored
-
- Jun 11, 2017
-
-
Mateusz Szafoni authored
stm32_hrtim: add character driver Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
raiden00pl authored
-
raiden00pl authored
-
raiden00pl authored
-
Gregory Nutt authored
-
Mateusz Szafoni authored
-
Gregory Nutt authored
-
Alan Carvalho de Assis authored
-
- Jun 10, 2017
-
-
Gregory Nutt authored
-