Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: vector_integer.h
- Revision:
- 1:d043a9b85963
diff -r 58277eb442ad -r d043a9b85963 vector_integer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vector_integer.h Wed Mar 29 02:17:17 2017 +0000 @@ -0,0 +1,11 @@ +#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 \ No newline at end of file