- Apr 18, 2018
-
-
alessandro authored
-
- Mar 14, 2018
-
-
Daniel Agar authored
-
- Sep 29, 2017
-
-
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
-
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
-
- Sep 21, 2017
-
-
Henry Zhang authored
-
- Aug 02, 2017
-
-
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.
-
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.
-
- Jul 26, 2017
-
-
José Roberto de Souza authored
This can help "unbrick" AeroFC when a bad firmware is loaded and it keeps rebooting or it spinning in some loop. No need to request to stay in booloader as it will stay in bootloader because the pin is set.
-
- Apr 06, 2017
-
-
Lucas De Marchi authored
There's no USB, don't bring it in.
-
Lucas De Marchi authored
- There's no I2C2, so remove it - Fix alignments everywhere in board_config.h - Clarify STM32 ADC (not available) and the ADC on the FGPA - Fix format on some comments
-
Lucas De Marchi authored
-
Lucas De Marchi authored
-
- Mar 31, 2017
-
-
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
-
- Mar 10, 2017
-
-
José Roberto de Souza authored
-
- Feb 23, 2017
-
-
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.
-
- Feb 17, 2017
-
-
José Roberto de Souza authored
Also change the initial state of the leds to off.
-
- Feb 04, 2017
-
-
Lorenz Meier authored
-
Lorenz Meier authored
-
- Jan 21, 2017
-
-
David Sidrane authored
-
David Sidrane authored
aerofc-v1 does not used any user GPIO via the FMU Driver
-
David Sidrane authored
Changed the CONFIG_ARCH_BOARD_AEROFC_V1 in tap_esc.cpp to TAP_ESC_NO_VERIFY_CONFIG to maintian the commitment to not have CONFIG_ARCH_BOARD_xxxx ifdef litter in the PX4 code base. TAP_ESC_NO_VERIFY_CONFIG will be removed (see todo) in aerofc-v1/board_config.h
-
- Dec 26, 2016
-
-
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.
-
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.
-
- Dec 21, 2016
-
-
David Sidrane authored
-
- Dec 20, 2016
-
-
Lucas De Marchi authored
-
Lucas De Marchi authored
There are no blue/red LEDs and these names just causes confusion with the "always-on LEDs".
-
- Nov 28, 2016
-
-
José Roberto de Souza authored
For now it is only checking if there is a external HMC5883, if necessary more compass should be added and probe.
-
Lucas De Marchi authored
-
James Goppert authored
-
Lucas De Marchi authored
-
Lucas De Marchi authored
-
José Roberto de Souza authored
MPU6500, MS5611 and HMC5883 only power on when GPIO_SENSORS_POWER is set.
-
José Roberto de Souza authored
-
José Roberto de Souza authored
-
José Roberto de Souza authored
Battery voltage and current will be read in another way in future.
-
Lucas De Marchi authored
Like in bootloader, use the centered LED to show activity.
-
José Roberto de Souza authored
-
José Roberto de Souza authored
SPI bus 1 is the bus connected to MPU6500, so remove SPI bus 3 and 4. Also remove everything else related to SPI that this board doesn't have.
-
Lucas De Marchi authored
-
- Oct 28, 2016
-
-
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.
-