TESIS SATUROMETRICA / vector_int24

vector_integer.h

Committer:
cesarcazal
Date:
2017-03-29
Revision:
1:d043a9b85963

File content as of revision 1:d043a9b85963:

#ifndef MBED_VECTOR_INTEGER_H
#define MBED_VECTOR_INTEGER_H

#include "mbed.h"

//LOS VALORES SON DEVUELTOS EN FORMATO INT32; SIN EMBARGO SOLO SE REALIZAN CONVERSIONES EQUIVALENTES A VARIABLES DE 24BITS

int pointer_to_int (char *vect);//función que devuelve un int32 acorde al valor del puntero "vect", donde el LSB es point[0]
void int_to_pointer (int dato, char *point);//función que coloca los valores de "dato" en el puntero "point", donde el LSB se encuentra en point[0];

#endif