Prerequisite: a Raspberry Pi, with a user "pi" and IP address 172.16.52, and a connected MSP-430 attached to the USB port.
- Copy all code inside the
boardfolder into the Raspberry Pi, in~/board/. - On the host machine,
cd board/ez430-applications/demo/ - Run:
make TARGETto download the code to the Raspberry Pi, cross-compile it and download it to the MSP-430. For instance:make pido_receivermake pido_transmitter
Set PI_IP with the IP address of the raspberry pi to override the default.
All user code is in board/ez430-applications/demo/src/, everything else are drivers and utilities.
This reads CSV data from stdin, that is supposed to be sent by the MSP-430 board.
Supposed to be run with:
$ ezconsole | node index.jsTo run it as a standalone server:
$ node index.jsand write your own commands using the keyboard.
It can also produce fake data, if you set `NODE_ENV=test':
$ NODE_ENV=test node index.jsIn this way, the graphs will use generated data.

