#include "matlab.h"
#include "./../motor_led/e_epuck_ports.h"
#include "./../uart/e_uart_char.h"
Functions | |
| void | e_send_int_to_matlab (int *data, int array_size) |
| The function to send int values to matlab. | |
| void | e_send_char_to_matlab (char *data, int array_size) |
| The function to send char values to matlab. | |
| int | e_receive_int_from_matlab (int *data, int array_size) |
| The function to receive int values from matlab. | |
| int | e_receive_char_from_matlab (char *data, int array_size) |
| The function to receive char values from matlab. | |
This module manage the communication with matlab through bluetooth.
| int e_receive_char_from_matlab | ( | char * | data, | |
| int | array_size | |||
| ) |
The function to receive char values from matlab.
| data | The array of char data you want to fill | |
| array_size | The length of the array |
| int e_receive_int_from_matlab | ( | int * | data, | |
| int | array_size | |||
| ) |
The function to receive int values from matlab.
| data | The array of int data you want to fill | |
| array_size | The length of the array |
| void e_send_char_to_matlab | ( | char * | data, | |
| int | array_size | |||
| ) |
The function to send char values to matlab.
| data | The array of char data you want to send | |
| array_size | The length of the array |
| void e_send_int_to_matlab | ( | int * | data, | |
| int | array_size | |||
| ) |
The function to send int values to matlab.
| data | The array of int data you want to send | |
| array_size | The length of the array |
1.5.4