blob: 803ef62efcd5052199f1f47f9fd9a7b4416c6e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# vim:ft=make
#
# Copyright 2020 Daniel Friesel
#
# SPDX-License-Identifier: CC0-1.0
ifdef app
override arch_drivers += ,adc,i2c
CONFIG_driver_mpu9250 = y
CONFIG_meta_driver_i2c = y
CONFIG_meta_driver_hardware_i2c = y
COMMON_FLAGS += -DCONFIG_driver_mpu9250 -DCONFIG_meta_driver_i2c -DCONFIG_meta_driver_hardware_i2c
endif
|