Skip to content
Snippets Groups Projects
  1. Apr 18, 2018
  2. Mar 14, 2018
  3. Sep 29, 2017
    • Daniel Agar's avatar
      NuttX upgrade cmake wrapper (#7873) · 01b3e6fd
      Daniel Agar authored
      * NuttX cmake
      
      * px4_macros:Pass the stringified predicate as second arg to static assert
      
         CC_ASSERT mapes to the c++ static_assert or provides the same
         funtionality for c via the other macros. The c++ static assert
         takes 2 argumants the prdicate and a message. This fixes the
         lacking second argument.
      
      * Updated nuttx and apps submodule to upstream nuttx 7.21+==master
      
         This is the latest uptake of upstream nuttx and apps.
      
      * ROMFS generate with xxd instead of objcopy
      
      * delete nuttx-patches
      
      * NuttX update submodules to latest px4_nuttx-master
      
      * fix nuttx apps and board dependency
      
      * docker_run update to latest container 2017-08-29
      
      * cmake ROMFS portable sed usage
      
      * NuttX update submodules to latest px4_nuttx-master
      01b3e6fd
    • David Sidrane's avatar
      aerofc-v1:spi_dev_e is now uint32_t in NuttX · 40a6de58
      David Sidrane authored
         Using new type of uint32_t for spi device and macros
         that define a PX4 device on a given BUS and Chip Select
      40a6de58
  4. Sep 21, 2017
  5. Aug 02, 2017
    • José Roberto de Souza's avatar
      aerofc: Use the additional I2C · 7d46858a
      José Roberto de Souza authored
      This change plus the new FPGA RTL(version 0xC1 or higher) will make
      use of the new I2C bus, this new bus will be shared between aerofc_adc
      and ll40ls(if connected) and leaving the old bus just to IST8310.
      7d46858a
    • José Roberto de Souza's avatar
      aerofc: Move GPS to UART7 · ce180af4
      José Roberto de Souza authored
      The UART3 also have the I2C bus 2 functions so moving GPS to UART7 to
      have one additional I2C.
      To keep GPS working is also necessary update the FPGA RTL to version
      0xC1 or higher.
      ce180af4
  6. Jul 26, 2017
  7. Apr 06, 2017
  8. Mar 31, 2017
    • David Sidrane's avatar
      aerofc-v1 Remove GPIO_RC_OUT and vetted RC_IN wiring · 9f0ea7ff
      David Sidrane authored
         Removed the legacy FMUv4 define that was activating a nonexistent
         pull up and on some HW driving the PPM_IN aka RC_IN aka SPEKTRUM_RX
         to VDD.
      
         Also detailed the connections of this pins for the board.
      
         The simplest connection is RC_IN to a timer capture pin
         and a UART.
         In this case the UART_RX pin and just be left as is.
         While the pin can be configured as the PPM_IN (Timer capture)
         or as SPEKTRUM_RX_AS_GPIO_OUTPUT to use it as and GPIO to
         facilitate binding.
      
        Renamed the macros and defines to be more explicit as to what
        Is being done and the sense of the parameters
      9f0ea7ff
  9. Mar 10, 2017
  10. Feb 23, 2017
    • José Roberto de Souza's avatar
      boards: AeroFC: Make it a memory constrained system · ef228b82
      José Roberto de Souza authored
      The maximum number of missions was increased in almost 8 times in
      recent commit: 9369262e navigator: allow more mission items.
      
      As this board loads missions in RAM, now it don't have enough memory
      to allocate causing dataman start to fail, so mark it as a memory
      constrained system and reduce the number of maximum missions
      supported.
      ef228b82
  11. Feb 17, 2017
  12. Feb 04, 2017
  13. Jan 21, 2017
  14. Dec 26, 2016
    • Lucas De Marchi's avatar
      aerofc: add some fixes to adc driver · 0341af48
      Lucas De Marchi authored
        - Other channels are irrelevant since they aren't physically
          connected. Avoid the I2C transaction to get invalid data
        - Port the driver to use only one address, as it should be
        - Minor changes here and there
        - Add test() method to read the latest value - helpful during
          debugging.
      0341af48
    • José Roberto de Souza's avatar
      aerofc: Implement ADC · 53f2c1eb
      José Roberto de Souza authored
      Measure the battery voltage of Aero RTF kit will be done by FPGA
      and read by AeroFC using I2C bus.
      
      The protocol is a little bit odd, it have different I2C slave
      address for each "register", in future the FPGA RTL will
      have a protocol more similar to other I2C sensors.
      
      Also Aero RTF don't have a ADC line to measure current consumption.
      53f2c1eb
  15. Dec 21, 2016
  16. Dec 20, 2016
  17. Nov 28, 2016
  18. Oct 28, 2016
    • Carlo Wood's avatar
      Do not include headers inside __BEGIN_DECLS ... __END_DECLS blocks. · 90f3e3b5
      Carlo Wood authored
      We don't have C++ unsafe headers (anymore).
      
      I added a test to fix_headers.sh that checks if certain "unsafe"
      headers are ONLY included inside a __BEGIN_DECLS ... __END_DECLS
      (because after all, they are unsafe), as well as checking that
      no other header files are included inside such a block. The rationale
      of the latter is that if a file is a C header and it declares
      function prototypes (otherwise it doesn't matter) and is sometimes
      included outside a __BEGIN_DECLS ... __END_DECLS block (from a C++
      source file) then it has to be C++ safe and doesn't ever to be
      included from inside such a block; while if a file is a C++ header
      then obviously it should never be included from such a block.
      
      fix_headers.sh subsequently found several safe headers to be
      included from inside such a block, and those that were (apparently
      in the past) unsafe were included only sometimes inside such a
      block and often outside it. I had a look at those files and saw
      that at least an attempt has been made to make them C++ safe,
      but especially because they already are included OFTEN outside
      a __BEGIN_DECLS ... __END_DECLS (from C++ source files) the
      best decision seems to treat them as safe.
      
      This is not risky: .c files that define such functions still
      generate C-linkage for their functions. If a C++ unsafe C header
      is included outside a __BEGIN_DECLS ... __END_DECLS block then
      the only possible result would be an undefined reference to
      a function with C++-linkage that will not exist. Aka, when
      something links after this commit, then the commit was correct.
      I did build all targets and they all linked.
      90f3e3b5
Loading