creating files on raspberry pi with simulink

3 Ansichten (letzte 30 Tage)
Will
Will am 23 Mär. 2014
Kommentiert: Marc Compere am 3 Dez. 2015
Hi all,
I'm a new user to simulink and the raspberry pi, and have begun playing with the example library in simulink.
I've been trying to save to a text file on the pi using the h.openShell('ssh') command line interface.
I've been able to able to create directories and text files, however, after taking out the SD card and putting it into my desktop, I cant find these folders and files.
I'm sure this is due to my lack of knowledge as to what i'm actually doing (I apologise), could someone point me towards a method of saving data to a file and then being able to view this text file on a host computer or through simulink?
(in the long run I want to be able to run a matlab function on the pi, which will save variable data into a text file which I want to be able to read on the SD card from a PC)
Regards, Will
  2 Kommentare
Bethmage Perera
Bethmage Perera am 25 Feb. 2015
Hi Will, I need to do the same where I need to save some data from a sensor connected to the Raspberry Pi and save the data within the SD card. I've been trying to modify "raspberrypi_motion_sensor_camera" example snapshot block but no luck for. It'll be great if any of you can help.
Kalpa
Marc Compere
Marc Compere am 3 Dez. 2015
I am interested in this as well.
We need to write a file to /tmp to capture data from the running Simulink algorithm for post-processing after the test.
How can we get data in Simulink written to /tmp/myTest.txt?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Murat Belge
Murat Belge am 26 Mär. 2014
The SD card used in Rspberry Pi has two partitions. One is a FAT32 boot partition the other is an EXT partition where Linux root file system resides. When you create a file in Linux and say save it to your home folder, it goes to the EXT partition. Windows computers cannot read the EXT partition so you won't see this partition when you view the SD card contents on your Windows computer. If you were to use a Linux computer, you could view the files.
If you are creating files on the Raspberry Pi, you can actually retrieve them using the raspberrypi MATLAB command line interface:
>> h = raspberrypi
>> h.getFile('/home/pi/myfile.txt')
for example. This will retrieve the file called myfile.txt on your Raspberry Pi's SD card, and save it onto the current directory in MATLAB.
Check out the Motion Sensor Camera demo in the Simulink Support Package for Raspberry Pi. This demo actually saves the images captured from a camera to the SD card.

Weitere Antworten (2)

Will
Will am 24 Mär. 2014
Update - Saving from the bash cmd line is fine, but more specfically, how can I save a text file to the sd card or usb from inside a matlab model function?

Murat Belge
Murat Belge am 27 Mär. 2014
Look at the demo model "raspberrypi_motion_sensor_camera". In this model, there is a block called "raspberrypi_motion_sensor_camera/Triggered Subsystem/save a snapshot". This is actually a MATLAB function for saving data to a file. Replicate / re-purpose this block for your needs.

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by