2024-12-20 20:47:52 +01:00
|
|
|
/**********************************************************************
|
|
|
|
|
* This file is used for testing random stuff without running the
|
|
|
|
|
* whole of SatDump, which comes in handy for debugging individual
|
|
|
|
|
* elements before putting them all together in modules...
|
|
|
|
|
*
|
|
|
|
|
* If you are an user, ignore this file which will not be built by
|
|
|
|
|
* default, and if you're a developper in need of doing stuff here...
|
|
|
|
|
* Go ahead!
|
|
|
|
|
*
|
|
|
|
|
* Don't judge the code you might see in there! :)
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
|
|
|
|
#include "common/ccsds/ccsds_tm/vcdu.h"
|
|
|
|
|
#include "common/ccsds/ccsds_tm/demuxer.h"
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include "common/simple_deframer.h"
|
|
|
|
|
|
2025-05-25 14:30:24 +02:00
|
|
|
#include "image/image.h"
|
|
|
|
|
#include "image/processing.h"
|
|
|
|
|
#include "image/io.h"
|
2024-12-20 20:47:52 +01:00
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
|
|
#include "common/repack.h"
|
|
|
|
|
|
2025-05-25 14:30:24 +02:00
|
|
|
#include "image/bayer/bayer.h"
|
2024-12-20 20:47:52 +01:00
|
|
|
|
|
|
|
|
#include "common/codings/reedsolomon/reedsolomon.h"
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
initLogger();
|
|
|
|
|
|
|
|
|
|
std::ifstream data_in(argv[1], std::ios::binary);
|
|
|
|
|
|
|
|
|
|
uint8_t cadu[1279];
|
|
|
|
|
|
|
|
|
|
ccsds::ccsds_tm::Demuxer vcid_demuxer(1109, false);
|
|
|
|
|
|
|
|
|
|
std::ofstream test_t("/tmp/test.bin");
|
|
|
|
|
|
|
|
|
|
reedsolomon::ReedSolomon rs_check(reedsolomon::RS223);
|
|
|
|
|
|
|
|
|
|
while (!data_in.eof())
|
|
|
|
|
{
|
|
|
|
|
// Read buffer
|
|
|
|
|
data_in.read((char *)&cadu, 1279);
|
|
|
|
|
|
|
|
|
|
// Check RS
|
|
|
|
|
int errors[5];
|
|
|
|
|
rs_check.decode_interlaved(cadu, true, 5, errors);
|
|
|
|
|
if (errors[0] < 0 || errors[1] < 0 || errors[2] < 0 || errors[3] < 0 || errors[4] < 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// Parse this transport frame
|
|
|
|
|
ccsds::ccsds_tm::VCDU vcdu = ccsds::ccsds_tm::parseVCDU(cadu);
|
|
|
|
|
|
|
|
|
|
printf("VCID %d\n", vcdu.vcid);
|
|
|
|
|
|
|
|
|
|
if (vcdu.vcid == 1)
|
|
|
|
|
{
|
|
|
|
|
auto pkts = vcid_demuxer.work(cadu);
|
|
|
|
|
|
|
|
|
|
for (auto pkt : pkts)
|
|
|
|
|
{
|
|
|
|
|
printf("APID %d \n", pkt.header.apid);
|
|
|
|
|
if (pkt.header.apid == 1031)
|
|
|
|
|
{
|
|
|
|
|
// 1027 ?
|
|
|
|
|
// 1028 ?
|
|
|
|
|
// 1031 !!!!!
|
|
|
|
|
// 1032 !!!!!
|
|
|
|
|
|
|
|
|
|
// printf("APID %d SIZE %d\n", pkt.header.apid, pkt.payload.size());
|
|
|
|
|
|
|
|
|
|
pkt.payload.resize(1000);
|
|
|
|
|
|
|
|
|
|
test_t.write((char *)pkt.header.raw, 6);
|
|
|
|
|
test_t.write((char *)pkt.payload.data(), pkt.payload.size());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|