Private
Public Access
2
0

uart: move string funcs to {read,write}Str

This commit adds raw binary read/write functions using the same typemaps as I2c
functions

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2015-06-01 10:58:10 +01:00
parent 40c52784ad
commit e0ce5454bd
3 changed files with 109 additions and 6 deletions

View File

@@ -10,6 +10,14 @@
#include <node_buffer.h>
%}
%typemap(in) (const char* data, int length) {
if (!node::Buffer::HasInstance($input)) {
SWIG_exception_fail(SWIG_ERROR, "Expected a node Buffer");
}
$1 = (char*) node::Buffer::Data($input);
$2 = node::Buffer::Length($input);
}
%typemap(in) (const uint8_t *data, int length) {
if (!node::Buffer::HasInstance($input)) {
SWIG_exception_fail(SWIG_ERROR, "Expected a node Buffer");
@@ -42,9 +50,40 @@ class Spi;
}
}
%newobject Uart::read(char* data, int length);
%newobject I2c::read(uint8_t *data, int length);
%newobject Spi::write(uint8_t *data, int length);
//Uart::read()
%typemap(in) (char* data, int length) {
int x;
int ecode = SWIG_AsVal_int($input, &x);
if (!SWIG_IsOK(ecode)) {
SWIG_exception_fail(SWIG_ArgError(ecode), "Expected an int");
}
$2 = x;
if ($2 < 0) {
SWIG_exception_fail(SWIG_ERROR, "Positive integer expected");
SWIGV8_RETURN(SWIGV8_UNDEFINED());
}
$1 = (char*) malloc($2 * sizeof(uint8_t));
}
%typemap(argout) (char* data, int length) {
if (result < 0) { /* Check for I/O error */
free($1);
SWIG_exception_fail(SWIG_ERROR, "I2c write failed");
SWIGV8_RETURN(SWIGV8_UNDEFINED());
}
%#if SWIG_V8_VERSION > 0x032872
$result = node::Buffer::New((char*) $1, result);
%#else
$result = node::Buffer::New((char*) $1, result)->handle_;
%#endif
free($1);
}
//I2c::read()
%typemap(in) (uint8_t *data, int length) {
int x;
int ecode = SWIG_AsVal_int($input, &x);