OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:platform_type
(Results
1 - 7
of
7
) sorted by null
/hardware/bsp/intel/peripheral/libmraa/src/arm/
arm.c
39
mraa_platform_t
platform_type
= MRAA_UNKNOWN_PLATFORM;
local
48
platform_type
= MRAA_RASPBERRY_PI;
51
platform_type
= MRAA_RASPBERRY_PI;
54
platform_type
= MRAA_BEAGLEBONE;
57
platform_type
= MRAA_96BOARDS;
61
platform_type
= MRAA_BANANA;
64
platform_type
= MRAA_BANANA;
68
platform_type
= MRAA_BANANA;
79
if (
platform_type
== MRAA_UNKNOWN_PLATFORM) {
81
platform_type
= MRAA_96BOARDS
[
all
...]
/hardware/bsp/intel/peripheral/libmraa/src/x86/
x86.c
43
mraa_platform_t
platform_type
= MRAA_UNKNOWN_PLATFORM;
local
52
platform_type
= MRAA_INTEL_GALILEO_GEN2;
55
platform_type
= MRAA_INTEL_EDISON_FAB_C;
58
platform_type
= MRAA_INTEL_EDISON_FAB_C;
61
platform_type
= MRAA_INTEL_DE3815;
64
platform_type
= MRAA_INTEL_NUC5;
67
platform_type
= MRAA_INTEL_MINNOWBOARD_MAX;
70
platform_type
= MRAA_INTEL_MINNOWBOARD_MAX;
73
platform_type
= MRAA_INTEL_GALILEO_GEN1;
76
platform_type
= MRAA_INTEL_MINNOWBOARD_MAX
[
all
...]
/hardware/bsp/intel/peripheral/libmraa/src/usb/
usb.c
38
mraa_platform_t
platform_type
= MRAA_UNKNOWN_PLATFORM;
local
44
platform_type
= MRAA_FTDI_FT4222;
48
switch (
platform_type
) {
60
sub_plat->
platform_type
=
platform_type
;
63
return
platform_type
;
/hardware/bsp/intel/peripheral/libmraa/examples/
helloedison.c
36
mraa_platform_t
platform_type
= mraa_get_platform_type();
local
38
if (
platform_type
!= MRAA_INTEL_EDISON_FAB_C) {
mraa-i2c.c
67
switch (board->
platform_type
) {
/hardware/bsp/intel/peripheral/libmraa/src/
mraa.c
108
mraa_platform_t
platform_type
;
local
111
platform_type
= mraa_x86_platform();
114
platform_type
= mraa_arm_platform();
120
plat->
platform_type
=
platform_type
;
130
plat->
platform_type
= MRAA_NULL_PLATFORM;
137
if (plat->
platform_type
== MRAA_UNKNOWN_PLATFORM && usb_platform_type != MRAA_UNKNOWN_PLATFORM) {
138
plat->
platform_type
= usb_platform_type;
357
if (current_plat == NULL || current_plat->
platform_type
== MRAA_UNKNOWN_PLATFORM) {
408
return plat->
platform_type
;
[
all
...]
/hardware/bsp/intel/peripheral/libmraa/include/
mraa_internal_types.h
286
mraa_platform_t
platform_type
; /**< Platform type */
member in struct:_board_t
Completed in 225 milliseconds