Private
Public Access
2
0

mraa: rename from maa to mraa

Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
This commit is contained in:
Thomas Ingleby
2014-06-24 17:24:54 +01:00
parent 79d0da4853
commit 6853997a92
74 changed files with 966 additions and 966 deletions

View File

@@ -26,7 +26,7 @@
#include <signal.h>
#include <stdint.h>
#include "maa.hpp"
#include "mraa.hpp"
int running = 0;
@@ -44,9 +44,9 @@ int main ()
signal(SIGINT, sig_handler);
//! [Interesting]
maa::Spi* spi;
mraa::Spi* spi;
spi = new maa::Spi(0);
spi = new mraa::Spi(0);
uint8_t data[] = {0x00, 100};
uint8_t *recv;
@@ -71,5 +71,5 @@ int main ()
delete spi;
//! [Interesting]
return MAA_SUCCESS;
return MRAA_SUCCESS;
}