Skip to content
  1. Oct 30, 2017
  2. Oct 28, 2017
  3. Oct 27, 2017
  4. Oct 26, 2017
    • Gregory Nutt's avatar
      Correct a problem that was causing an apparent directory to be reported as a... · ea13e243
      Gregory Nutt authored
      Correct a problem that was causing an apparent directory to be reported as a file instead of a directory by opendir.
      
      This happened after adding these three new procfs entries:
      
        fs/block
        fs/mount
        fs/usage
      
      Of course, there is no directory fs in this case, only three files that have fs/ in their relative pathnames.  The logic was detecting that fs was the name of the enty to report, but it was then declaring that fs was a file (because fs/block is of type file).
      
      This was fixed by adding a check for matching lenghts.  i.e., if strlen(fs) != strlen(fs/block), then report fs as a directory instead of a file.
      ea13e243
    • Gregory Nutt's avatar
      Squashed commit of the following: · 1ed816de
      Gregory Nutt authored
          fs/mount:  Implements procfs /proc/fs/blocks and /proc/fs/usage files, replacing the NSH df command.
          fs/mount:  Implements procfs /proc/fs/mount file, replacing the NSH mount command when there are not arguments.
          fs/: Move prototype of foreach_mountpoint out of include/nuttx/fs/fs.h to fs/mount/mount.h.  Add framework for the mount procfs (initial commit is just a close of the net/route table procfs.
      1ed816de
    • Gregory Nutt's avatar
      4d344b36
    • Jussi Kivilinna's avatar
      e557c3e8
    • Jussi Kivilinna's avatar
      Merged in jussi_kivilinna/nuttx/stm32l4_i2c_rewrite (pull request #519) · bcf4a5d0
      Jussi Kivilinna authored
      
      
      Port STM32F7 I2C driver to STM32L4
      
      * arch/stm32l4: port STM32F7 I2C driver to STM32L4
      
          STM32L4 I2C driver is in work-in-progress state (plentiful of
          TODOs and #warnings) and lags many features found in more
          up-to-date STM32 I2C drivers. The peripheral on STM32F7 and
          STM32L4 are identical except for L4's 'wakeup from stop mode'
          flag and STM32F7's I2C driver is in more 'ready to use' state.
      
          Patch ports the STM32F7 I2C driver to STM32L4. The I2C clock
          configuration is kept the same as before (I2CCLK = PCLK1 80 Mhz)
          instead of switching to STM32F7 arch default that is I2CCLK=HSI.
          Further work would be to add configuration option for choosing
          I2C clock source instead of current hard-coded default.
      
      * arch/arm/stm32f7: i2c: restore bus frequency after I2C reset
      
          Copy frequency restoration fix from STM32L4 I2C driver to STM32F7 I2C driver.
      
      * arch/arm/stm32f7: i2c: remove unused Kconfig option
      
      * configs/nucleo-l496zg/nsh: enable I2C4 bus with i2ctool
      
      Approved-by: default avatarGregory Nutt <gnutt@nuttx.org>
      bcf4a5d0
    • Jan Pobříslo's avatar
      Merged in ccxcz/nuttx/olimex-stm32-h407-v2 (pull request #518) · 7a530c40
      Jan Pobříslo authored
      
      
      Olimex stm32-h407 serial support for the on-board UEXT connector (fixed style & defconfig)
      
      * olimex-stm32-h407: Add USART6 for UEXT connector.
      
      * olimex-stm32-h407: nsh_uext configuration and README update.
      
      Approved-by: default avatarGregory Nutt <gnutt@nuttx.org>
      7a530c40
  5. Oct 25, 2017
  6. Oct 24, 2017
  7. Oct 23, 2017
  8. Oct 22, 2017
    • Mateusz Szafoni's avatar
      Merged in raiden00/nuttx (pull request #516) · 9105ac3e
      Mateusz Szafoni authored
      
      
      Master
      
      * stm32_hrtim: fix warnings related with RCC
      
      * stm32f33xxx_adc: add some publicly visable interfaces and some code to support injected channels
      
      * stm32f33xxx_dma: add public interface to handle with DMA interrupts
      
      * stm32_hrtim: change some names and add some coments
      
      * chip/stm32f33xxx_adc.h: cosmetics
      
      * nucleo-f334r8: add logic for zero latency high priority interrupts example
      
      * stm32: update some ADC-related configuration in Kconfig
      
      Approved-by: default avatarGregory Nutt <gnutt@nuttx.org>
      9105ac3e
  9. Oct 20, 2017