From 953d7af7e0aac43fffa774a167254195519af3d9 Mon Sep 17 00:00:00 2001 From: Thomas Ingleby Date: Fri, 21 Nov 2014 02:04:08 +0000 Subject: [PATCH] arm: use raspberry pi platform As it is the only currently supported ARM platform. It defaults to RPi Signed-off-by: Thomas Ingleby --- src/arm/arm.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/arm/arm.c b/src/arm/arm.c index f0eda22..30fe750 100644 --- a/src/arm/arm.c +++ b/src/arm/arm.c @@ -25,12 +25,16 @@ #include #include "mraa_internal.h" +#include "arm/raspberry_pi_b.h" mraa_platform_t mraa_arm_platform() { mraa_platform_t platform_type = MRAA_UNKNOWN_PLATFORM; + + //For the Time being, Will always be Raspberry PI when running ARM + platform_type = MRAA_RASPBERRY_PI_B; + plat = mraa_raspberry_pi_b(); + return platform_type; } - -