Browse Source

Rename asc board to aerofc

sbg
Lucas De Marchi 9 years ago committed by Lorenz Meier
parent
commit
0cd7984b7f
  1. 4
      Images/aerofc-v1.prototype
  2. 2
      Makefile
  3. 2
      cmake/configs/nuttx_aerofc-v1_default.cmake
  4. 0
      nuttx-configs/aerofc-v1/include/board.h
  5. 0
      nuttx-configs/aerofc-v1/include/nsh_romfsimg.h
  6. 0
      nuttx-configs/aerofc-v1/nsh/Make.defs
  7. 0
      nuttx-configs/aerofc-v1/nsh/defconfig
  8. 0
      nuttx-configs/aerofc-v1/nsh/setenv.sh
  9. 0
      nuttx-configs/aerofc-v1/scripts/ld.script
  10. 0
      nuttx-configs/aerofc-v1/src/Makefile
  11. 0
      nuttx-configs/aerofc-v1/src/empty.c
  12. 12
      src/drivers/boards/aerofc-v1/CMakeLists.txt
  13. 0
      src/drivers/boards/aerofc-v1/aerofc_init.c
  14. 0
      src/drivers/boards/aerofc-v1/aerofc_led.c
  15. 0
      src/drivers/boards/aerofc-v1/aerofc_pwr.c
  16. 4
      src/drivers/boards/aerofc-v1/aerofc_spi.c
  17. 0
      src/drivers/boards/aerofc-v1/aerofc_usb.c
  18. 4
      src/drivers/boards/aerofc-v1/board_config.h
  19. 3
      src/drivers/drv_gpio.h

4
Images/asc-v1.prototype → Images/aerofc-v1.prototype

@ -1,10 +1,10 @@ @@ -1,10 +1,10 @@
{
"board_id": 65,
"magic": "PX4FWv1",
"description": "Firmware for the ASCv1 board",
"description": "Firmware for the Intel Aero FC board",
"image": "",
"build_time": 0,
"summary": "ASCv1",
"summary": "AEROFCv1",
"version": "0.1",
"image_size": 0,
"git_identity": "",

2
Makefile

@ -224,7 +224,7 @@ check: check_px4fmu-v1_default \ @@ -224,7 +224,7 @@ check: check_px4fmu-v1_default \
check_mindpx-v2_default \
check_posix_sitl_default \
check_tap-v1_default \
check_asc-v1_default \
check_aerofc-v1_default \
check_px4-stm32f4discovery_default \
check_crazyflie_default \
check_tests \

2
cmake/configs/nuttx_asc-v1_default.cmake → cmake/configs/nuttx_aerofc-v1_default.cmake

@ -11,7 +11,7 @@ set(config_module_list @@ -11,7 +11,7 @@ set(config_module_list
drivers/stm32/adc
drivers/led
#drivers/px4fmu
drivers/boards/asc-v1
drivers/boards/aerofc-v1
drivers/rgbled_pwm
drivers/tap_esc
drivers/mpu6500

0
nuttx-configs/asc-v1/include/board.h → nuttx-configs/aerofc-v1/include/board.h

0
nuttx-configs/asc-v1/include/nsh_romfsimg.h → nuttx-configs/aerofc-v1/include/nsh_romfsimg.h

0
nuttx-configs/asc-v1/nsh/Make.defs → nuttx-configs/aerofc-v1/nsh/Make.defs

0
nuttx-configs/asc-v1/nsh/defconfig → nuttx-configs/aerofc-v1/nsh/defconfig

0
nuttx-configs/asc-v1/nsh/setenv.sh → nuttx-configs/aerofc-v1/nsh/setenv.sh

0
nuttx-configs/asc-v1/scripts/ld.script → nuttx-configs/aerofc-v1/scripts/ld.script

0
nuttx-configs/asc-v1/src/Makefile → nuttx-configs/aerofc-v1/src/Makefile

0
nuttx-configs/asc-v1/src/empty.c → nuttx-configs/aerofc-v1/src/empty.c

12
src/drivers/boards/asc-v1/CMakeLists.txt → src/drivers/boards/aerofc-v1/CMakeLists.txt

@ -32,15 +32,15 @@ @@ -32,15 +32,15 @@
#
############################################################################
px4_add_module(
MODULE drivers__boards__asc-v1
MODULE drivers__boards__aerofc-v1
COMPILE_FLAGS
SRCS
../common/board_name.c
asc_init.c
asc_timer_config.c
asc_spi.c
asc_usb.c
asc_led.c
aerofc_init.c
aerofc_timer_config.c
aerofc_spi.c
aerofc_usb.c
aerofc_led.c
DEPENDS
platforms__common
)

0
src/drivers/boards/asc-v1/asc_init.c → src/drivers/boards/aerofc-v1/aerofc_init.c

0
src/drivers/boards/asc-v1/asc_led.c → src/drivers/boards/aerofc-v1/aerofc_led.c

0
src/drivers/boards/asc-v1/asc_pwr.c → src/drivers/boards/aerofc-v1/aerofc_pwr.c

4
src/drivers/boards/asc-v1/asc_spi.c → src/drivers/boards/aerofc-v1/aerofc_spi.c

@ -64,7 +64,7 @@ @@ -64,7 +64,7 @@
* Name: stm32_spiinitialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the tap-v1 board.
* Called to configure SPI chip select GPIO pins for the AEROFC-v1 board.
*
************************************************************************************/
@ -197,4 +197,4 @@ __EXPORT void stm32_spi4select(FAR struct spi_dev_s *dev, enum spi_dev_e devid, @@ -197,4 +197,4 @@ __EXPORT void stm32_spi4select(FAR struct spi_dev_s *dev, enum spi_dev_e devid,
__EXPORT uint8_t stm32_spi4status(FAR struct spi_dev_s *dev, enum spi_dev_e devid)
{
return SPI_STATUS_PRESENT;
}
}

0
src/drivers/boards/asc-v1/asc_usb.c → src/drivers/boards/aerofc-v1/aerofc_usb.c

4
src/drivers/boards/asc-v1/board_config.h → src/drivers/boards/aerofc-v1/board_config.h

@ -37,7 +37,7 @@ @@ -37,7 +37,7 @@
* @author David Sidrane <david_s5@nscdg.com>
* @author Lorenz Meier <lorenz@px4.io>
*
* TAP_V1 internal definitions
* AEROFC_V1 internal definitions
*/
#pragma once
@ -201,7 +201,7 @@ @@ -201,7 +201,7 @@
#define HRT_TIMER 3 /* use timer8 for the HRT */
#define HRT_TIMER_CHANNEL 4 /* use capture/compare channel */
#define BOARD_NAME "TAP_V1"
#define BOARD_NAME "AEROFC_V1"
/* By Providing BOARD_ADC_USB_CONNECTED this board support the ADC
* system_power interface, and herefore provides the true logic

3
src/drivers/drv_gpio.h

@ -219,7 +219,7 @@ @@ -219,7 +219,7 @@
/* no GPIO driver on the PX4_STM32F4DISCOVERY board */
#endif
#ifdef CONFIG_ARCH_BOARD_ASC_V1
#ifdef CONFIG_ARCH_BOARD_AEROFC_V1
/* no GPIO driver on the ASC board */
#endif
@ -239,6 +239,7 @@ @@ -239,6 +239,7 @@
!defined(CONFIG_ARCH_BOARD_SITL) && \
!defined(CONFIG_ARCH_BOARD_TAP_V1) && \
!defined(CONFIG_ARCH_BOARD_ASC_V1) && \
!defined(CONFIG_ARCH_BOARD_AEROFC_V1) && \
!defined(CONFIG_ARCH_BOARD_CRAZYFLIE)
# error No CONFIG_ARCH_BOARD_xxxx set
#endif

Loading…
Cancel
Save