Filter löschen
Filter löschen

Test sending data from the ground station to the satellite

11 Ansichten (letzte 30 Tage)
Edilson Filho
Edilson Filho am 27 Dez. 2022
Kommentiert: Edilson Filho am 11 Mär. 2023
Hello all.
I want to send known data from the ground station to the nanosatellite and check if the data arrived and how long it took.For example, send data in 32-byte packets and see how long it took to send.
I want to monitor each packet sent. Thanks

Antworten (1)

Nadia Shaik
Nadia Shaik am 9 Mär. 2023
Hi Edilson,
I understand that you want to send data from ground station to the nanosatellite and want to monitor each packet.
To send data from the ground station to the nanosatellite, the nanosatellite must have a serial interface connected to the serial port of the ground station. To monitor each packet sent, please follow the below steps:
  1. Connect to the serial port of the ground station:
s = serialport("COM3", 9600);
Replace "COM3" with the name of the serial port on your computer where the ground station is connected.
2. Open a log file to record the time stamps of each packet and define the data to be sent:
logFile = fopen("packetLog.txt", "w");
data = randi([0 255], 1, 32);
packetSize = 32;
3. Send the data in packets using a "for" loop and record the time stamp of each packet in the log file:
for i = 1:length(data)/packetSize
packet = data((i-1)*packetSize+1:i*packetSize);
write(s, packet, "uint8");
fprintf(logFile, "%s\n", datetime('now'));
pause(0.1); % wait for the nanosatellite to respond end
end
4. Close the log file and disconnect from the serial port:
fclose(logFile);
clear s;
You can then analyze the log file to see how long it took for each packet to arrive.
For more information please refer to the documentation of the "serialport" and "write" functions.
I hope this helps!
  1 Kommentar
Edilson Filho
Edilson Filho am 11 Mär. 2023
Hey Nadia
Thanks for your interest. Well, I'll explain better what I wanted to do on that occasion. I wanted to simulate a communication between a ground station and a nanosatellite. So my question should have been how to simulate this transmission in each overpass, each time there is an active link between the ground station and the nanosatellite. I then a code and put it on my github.
Your answer is interesting, as it is another scenario that I intend to implement in my studies in the future.
Thanks.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Reference Applications finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by