- Apr 09, 2017
-
-
Gregory Nutt authored
stm32 COMP: Logic in stm32_comp.h must be configured on CONFIG_STM32_COMP or otherwise it causes an error via #error on every platform without COMP support.
-
Gregory Nutt authored
net procfs: Some long lines were being generated that cause buffer-related problems and corrupted output
-
Gregory Nutt authored
Add support for NuttX controlled LEDS and for board_initialize. Separate initialize logic to stm32_bringup.c so that in initialization can occur either through board_initialize() or through board_app_initialize(). Same as with most other newer board configurations.
-
Gregory Nutt authored
Fix photon/nsh/defconfig, was turning on non-existent LED support when the configuration was refreshed.
-
Gregory Nutt authored
Buttons: Change return value of board_buttons() and the type of btn_buttonset_t to uint32_t so that more than 8 buttons can be supported.
-
Gregory Nutt authored
-
- Apr 08, 2017
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Mark Schulte authored
-
Gregory Nutt authored
6loWPAN: Fix breakage in IPv6 dispatch caused by fixes to HC1 dispatch; Move some standard definitions from internal header file to include/nuttx/net/sixlowpan.h. Update a README.
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
pthread.h: Remove duplicate, possible erroneous definitino of PTHREAD_MUTEX_INITIALIZER that crept in with some recent changes.
-
Gregory Nutt authored
Restore TCP_HDRLEN to MSS calculation. Also add to UDP MSS calculation where it never appearred. Add some missing MSS and RDVWNDO definitinos for 6loWOPAN.
-
Gregory Nutt authored
-
- Apr 07, 2017
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Mark Schulte authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Mark Schulte authored
Adding an implementation for read/write locks into the pthread library. These locks are writer priority, such that if any writers come in they are given priority for writing.
-
Bob Ryan authored
Disable serial console on stm32f103-minimum usbnsh example project config. Devices enumerate after this change. Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Bob Ryan authored
Disable serial console on stm32f103-minimum usbnsh example project config. Devices enumerate after this change.
-
Gregory Nutt authored
6loWPAN: Back out part of the last commit. That included two fixes for a problem. One that didn't work and is unnecessary and one that is necessary. The commit removes the former.
-
- Apr 06, 2017
-
-
Gregory Nutt authored
-
Masayuki Ishikawa authored
EFM32 I2C: Fix timeout calculation Approved-by: Gregory Nutt <gnutt@nuttx.org>
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Jussi Kivilinna authored
New interface allows checking if RTC time has been set. This allows to application to detect if RTC has valid time (after reset) or should application attempt to get real time by other means (for example, by launching ntpclient or GPS).
-
Gregory Nutt authored
-
Frank Benkert authored
According the Datasheet the WDD Value is the lower bound of a so called Forbidden Window and to disable this we have to set the WDD Value greater than or equal to the WDV Value. This seems to be a bug in the datasheet. It looks like we have to set it to a greater value than the WDV to realy disable this Thing. When triggering the Watchdog faster than the (very slow) clock source of the Watchdog fires, this Forbidden Window Feature resets the System if WDD equals to WDV. This Changeset disables the Forbidden Window by setting the WDD Value to the Maximum (0xfff) Value possible.
-
Gregory Nutt authored
-
Jussi Kivilinna authored
Combination of RXDMA + IFLOWCONTROL does not work as one might expect. Since RXDMA uses circular DMA-buffer, DMA will always keep reading new data from USART peripheral even if DMA buffer underruns. Thus this combination only does following: RTS is asserted on USART setup and deasserted on shutdown and does not perform actual RTS flow-control. Data loss can be demonstrated by doing long up_mdelay inside irq critical section and feeding data to RXDMA+IFLOWCONTROL UART.
-
Jussi Kivilinna authored
-
Jussi Kivilinna authored
STM32F7: default CONFIG_STM32F7_DMACAPABLE to 'n'. STM32F7 does not have CCM RAM but DTCM, so this option does not need to enabled. DTCM RAM is DMA-able through CPU AHBS bus.
-
Jussi Kivilinna authored
-