c6355f58d6
boards: add stub drivers folder for later use * boards: add stub drivers folder for later use The board/drivers folder is added for future use. In this folder we should place drives that are platform specific and depend on HW that is present only on a specific platform. NOTE: All shared drivers should go to the regular driver folder Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * tools: shift BOARD_DIR one level up In preparation for drivers and common folders we are moving the BOARD_DIR path up one level. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * tools: add drivers/platform symlink Link the boards/<arch>/<chip>/drivers dir to drivers/platform Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * drivers: add platform specifc drivers extension There are platforms that use specific drivers and we should be able to include those drivers in the build Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * board: cxd56xx: drivers: add AK09912 driver for SCU This is a platform specific driver connected on the SCU unit. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> Approved-by: Gregory Nutt <gnutt@nuttx.org>
21 lines
454 B
Plaintext
21 lines
454 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menuconfig SCU_SENSORS
|
|
bool "SCU Sensor Drivers"
|
|
|
|
if SCU_SENSORS
|
|
|
|
config SENSORS_AK09912_SCU
|
|
bool "Asahi AK09911/AK09912 Compass Sensor"
|
|
default n
|
|
select CXD56_I2C
|
|
select CXD56_SCU
|
|
---help---
|
|
Enable driver for AK09911/AK09912 Compass sensor.
|
|
NOTE: This sensor is connected to the SCU unit
|
|
|
|
endif # SCU_SENSORS
|