Replies: 2 comments 2 replies
-
Could you share your GRC files with me either now or whenever you're done? |
Beta Was this translation helpful? Give feedback.
-
This is an interesting project - I'm very interested in it! The CubeSatSim BPSK Mode 3 emulates the AMSAT Fox-1E CubeSat format. The bit stream is encoded 8b10 which means every 8 bits are transmitted as 10 bits. Here is some SatNOGS code that might be helpful. It says is for FSK (DUV) which is Mode 2, but the bitstream is the same format: https://gitlab.com/librespacefoundation/satnogs/gr-satnogs/-/blob/master/lib/amsat_duv_decoder.cc It also mentions Fox-1E which is very similar to our CubeSatSim format with a Sat Id of 99. You should be able to share snippets of code using Gist: https://gist.github.com instead of uploading it here. Or you could post it in a repository. Good Luck! Alan |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Let me briefly explain my GNU Radio setup for the ground station.
I'm testing with the BPSK mode of CubeSatSim.
environment
GRC Diagram
I am using the BPSK demodulator from

gr-satellites
For the "Correlate Access Code - Tag" block, I referred to line 479 of
main.c
and set the threshold to 5.For the "Fixed Length to PDU" block, I set the packet length to 500, which is an arbitrary value.
With this setup, I can receive frames. I believe each byte in the output should be interpreted as a bit.
Question
Beta Was this translation helpful? Give feedback.
All reactions