Joule: Update references to the Intel Joule
GT/GrosseTete -> Joule. This commit deprecates the MRAA_INTEL_GT_TUCHUCK mraa_platform_t value and links the grossetete.md page to joule.md. Signed-off-by: Wai Lun Poon <wai.lun.poon@intel.com> Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
#include "x86/intel_sofia_3gr.h"
|
||||
#include "x86/intel_cherryhills.h"
|
||||
#include "x86/up.h"
|
||||
#include "x86/intel_gt_tuchuck.h"
|
||||
#include "x86/intel_joule_expansion.h"
|
||||
|
||||
mraa_platform_t
|
||||
mraa_x86_platform()
|
||||
@@ -88,11 +88,11 @@ mraa_x86_platform()
|
||||
platform_type = MRAA_UP;
|
||||
plat = mraa_up_board();
|
||||
} else if (strncasecmp(line, "RVP", 3) == 0) {
|
||||
platform_type = MRAA_INTEL_GT_TUCHUCK;
|
||||
plat = mraa_gt_tuchuck_board();
|
||||
platform_type = MRAA_INTEL_JOULE_EXPANSION;
|
||||
plat = mraa_joule_expansion_board();
|
||||
} else if (strncasecmp(line, "SDS", 3) == 0) {
|
||||
platform_type = MRAA_INTEL_GT_TUCHUCK;
|
||||
plat = mraa_gt_tuchuck_board();
|
||||
platform_type = MRAA_INTEL_JOULE_EXPANSION;
|
||||
plat = mraa_joule_expansion_board();
|
||||
} else {
|
||||
syslog(LOG_ERR, "Platform not supported, not initialising");
|
||||
platform_type = MRAA_UNKNOWN_PLATFORM;
|
||||
@@ -133,8 +133,8 @@ mraa_x86_platform()
|
||||
plat = mraa_intel_cherryhills();
|
||||
#elif defined(xMRAA_UP)
|
||||
plat = mraa_up_board();
|
||||
#elif defined(xMRAA_INTEL_GT_TUCHUCK)
|
||||
plat = mraa_gt_tuchuck_board();
|
||||
#elif defined(xMRAA_INTEL_JOULE_EXPANSION)
|
||||
plat = mraa_joule_expansion_board();
|
||||
#else
|
||||
#error "Not using a valid platform value from mraa_platform_t - cannot compile"
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user