/hardware/bsp/intel/peripheral/libmraa/src/i2c/ |
D | i2c.c | 134 mraa_board_t* board = plat; in mraa_i2c_init() local 135 if (board == NULL) { in mraa_i2c_init() 142 board = board->sub_platform; in mraa_i2c_init() 143 if (board == NULL) { in mraa_i2c_init() 151 if (board->i2c_bus_count == 0) { in mraa_i2c_init() 155 if (bus >= board->i2c_bus_count) { in mraa_i2c_init() 160 if (board->i2c_bus[bus].bus_id == -1) { in mraa_i2c_init() 162 bus = board->def_i2c_bus; in mraa_i2c_init() 164 if (!board->no_bus_mux) { in mraa_i2c_init() 165 int pos = board->i2c_bus[bus].sda; in mraa_i2c_init() [all …]
|
/hardware/libhardware/modules/ |
D | README.android | 10 /system/libs/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so 11 /system/libs/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so 17 A module can have several variants: "default", "arch" and "board", and they're 18 loaded in the "board", "arch" and "default" order. 19 The source code for the "board" variant, usually lives under partners/...
|
/hardware/bsp/intel/peripheral/libmraa/docs/ |
D | edison.md | 5 Edison also features 4GB of storage, 1GB ram and on-board WiFi and Bluetooth. 8 - Intel Arduino board 9 - Intel breakout board 13 On both the Arduino board and the breakout board, The available UART interface is on /dev/ttyMFD1 15 Intel Arduino board 17 The Edison used with the Arduino board has the following limitations 29 This ADC is only included on the Arduino board. 35 of the Arduino breakout board, this is not supported officially so asking for 39 Because of the way IO is setup with the tristate on the Arduino breakout board 44 Intel(R) breakout board
|
D | galileorevd.md | 4 Galileo is a microcontroller board based on the Intel(R) Quark(TM) SoC X1000 7 The rev D board has the following limitations in libmraa:
|
/hardware/qcom/display/msm8909/ |
D | common.mk | 28 ifeq ($(call is-board-platform-in-list, $(MSM_VIDC_TARGET_LIST)), true) 34 ifeq ($(call is-board-platform-in-list, msm8974 msm8226 msm8610 apq8084 \ 38 ifeq ($(call is-board-platform-in-list, msm8909), true) 57 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
D | Android.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/bsp/intel/peripheral/libupm/docs/ |
D | knownlimitations.md | 4 Some sensors do not work seamlessly with a specific board. This means that they 11 Edison using the Arduino board, but will work with the Mini-breakout if 16 Intel Edison Arduino board but will work with the Mini-breakout. 18 Edison Arduino board when powered from the 3.3V line. 20 on the Intel Edison Arduino board and newer revisions might not work at all. 35 Edison with the Arduino board. 40 * **Grove BLE** (HM-11) does not return data on the Intel Galileo board due to 60 Arduino breakout board, thus the signal sticks to a logic 1. When this happens, 63 Edison Mini-breakout. When this board is not an option, the sensor can be
|
/hardware/bsp/intel/peripheral/libmraa/src/x86/ |
D | intel_minnow_byt_compatible.c | 42 mraa_set_pininfo(mraa_board_t* board, int mraa_index, char* name, mraa_pincapabilities_t caps, int … in mraa_set_pininfo() argument 44 if (mraa_index < board->phy_pin_count) { in mraa_set_pininfo() 46 mraa_pininfo_t* pin_info = &board->pins[mraa_index]; in mraa_set_pininfo() 74 mraa_get_pin_index(mraa_board_t* board, char* name, int* pin_index) in mraa_get_pin_index() argument 77 for (i = 0; i < board->phy_pin_count; ++i) { in mraa_get_pin_index() 78 if (strncmp(name, board->pins[i].name, MAX_LENGTH) == 0) { in mraa_get_pin_index()
|
/hardware/bsp/intel/peripheral/libmraa/src/usb/ |
D | usb.c | 35 mraa_usb_platform_extender(mraa_board_t* board) in mraa_usb_platform_extender() argument 61 board->sub_platform = sub_plat; in mraa_usb_platform_extender()
|
/hardware/bsp/intel/peripheral/libmraa/examples/java/ |
D | Example.java | 42 String board = mraa.getPlatformName(); in main() local 46 System.out.println(String.format("Running on %s", board)); in main()
|
D | GpioMmapped.java | 43 String board = mraa.getPlatformName(); in main() local
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/ |
D | Android.mk | 36 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_USE_HEVC_ADSP_HEAP)),true) 40 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_HAVE_VENUS_HEVC)),true) 49 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_SUPPORT_UBWC)),true) 61 ifeq ($(call is-board-platform-in-list, $(MASTER_SIDE_CP_TARGET_LIST)),true) 140 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_NEED_HEVC_LIB)),true) 158 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_NEED_SW_HEVC)),true) 179 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_NEED_SW_VDEC)),true)
|
/hardware/bsp/intel/peripheral/libmraa/examples/ |
D | mraa-i2c.c | 62 print_bus(mraa_board_t* board) in print_bus() argument 65 for (i = 0; i < board->i2c_bus_count; ++i) { in print_bus() 67 switch (board->platform_type) { in print_bus() 87 int id = board->i2c_bus[i].bus_id; in print_bus() 89 if (i == board->def_i2c_bus) in print_bus()
|
/hardware/bsp/intel/peripheral/libmraa/src/gpio/ |
D | gpio.c | 132 mraa_board_t* board = plat; in mraa_gpio_init() local 133 if (board == NULL) { in mraa_gpio_init() 140 board = board->sub_platform; in mraa_gpio_init() 141 if (board == NULL) { in mraa_gpio_init() 148 if (pin < 0 || pin > board->phy_pin_count) { in mraa_gpio_init() 152 if (board->pins[pin].capabilites.gpio != 1) { in mraa_gpio_init() 156 if (board->pins[pin].gpio.mux_total > 0) { in mraa_gpio_init() 157 if (mraa_setup_mux_mapped(board->pins[pin].gpio) != MRAA_SUCCESS) { in mraa_gpio_init() 163 mraa_gpio_context r = mraa_gpio_init_internal(board->adv_func, board->pins[pin].gpio.pinmap); in mraa_gpio_init()
|
/hardware/qcom/display/msm8996/ |
D | common.mk | 28 ifeq ($(call is-board-platform-in-list, $(MSM_VIDC_TARGET_LIST)), true) 32 ifeq ($(call is-board-platform-in-list, $(MASTER_SIDE_CP_TARGET_LIST)), true)
|
D | Android.mk | 7 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/qcom/display/msm8226/ |
D | common.mk | 30 ifeq ($(call is-board-platform-in-list, msm8974 msm8226 msm8610 apq8084 \ 53 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
D | Android.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/ |
D | Android.mk | 44 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_USE_FLAG_MSM8226)),true) 52 ifeq ($(call is-board-platform-in-list, $(MASTER_SIDE_CP_TARGET_LIST)),true) 100 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_NEED_SW_VENC_MPEG4)),true) 128 ifeq ($(call is-board-platform-in-list, $(TARGETS_THAT_NEED_SW_VENC_HEVC)),true)
|
/hardware/qcom/camera/ |
D | common.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/bsp/intel/peripheral/libmraa/include/ |
D | mraa_internal.h | 68 mraa_platform_t mraa_usb_platform_extender(mraa_board_t* board);
|
/hardware/qcom/display/msm8994/ |
D | Android.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/qcom/display/msm8084/ |
D | Android.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/qcom/display/msm8960/ |
D | Android.mk | 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
|
/hardware/bsp/intel/peripheral/libmraa/ |
D | README.md | 6 API where port names/numbering matches the board that you are on. Use of 7 libmraa does not tie you to specific hardware with board detection done at 37 Installing on your board
|