2021-03-07 12:46:25 +01:00
|
|
|
/**********************************************************************
|
2022-03-20 20:56:32 +01:00
|
|
|
* This file is used for testing random stuff without running the
|
2021-03-07 12:46:25 +01:00
|
|
|
* whole of SatDump, which comes in handy for debugging individual
|
|
|
|
|
* elements before putting them all together in modules...
|
2022-03-20 20:56:32 +01:00
|
|
|
*
|
|
|
|
|
* If you are an user, ignore this file which will not be built by
|
2021-05-12 21:16:53 +02:00
|
|
|
* default, and if you're a developper in need of doing stuff here...
|
2021-03-07 12:46:25 +01:00
|
|
|
* Go ahead!
|
2022-03-20 20:56:32 +01:00
|
|
|
*
|
2021-03-07 12:46:25 +01:00
|
|
|
* Don't judge the code you might see in there! :)
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
2022-03-28 11:51:13 +02:00
|
|
|
#include "logger.h"
|
2023-01-06 23:12:09 +01:00
|
|
|
#include <fstream>
|
|
|
|
|
#include "common/ccsds/ccsds_weather/vcdu.h"
|
|
|
|
|
#include "common/ccsds/ccsds_weather/demuxer.h"
|
|
|
|
|
#include <cmath>
|
|
|
|
|
#include "common/image/image.h"
|
|
|
|
|
#include "common/repack.h"
|
|
|
|
|
#include "common/codings/randomization.h"
|
|
|
|
|
#include "common/image/image.h"
|
|
|
|
|
#include <filesystem>
|
2022-12-23 16:08:56 +01:00
|
|
|
|
2023-01-18 11:39:41 +01:00
|
|
|
#include <map>
|
|
|
|
|
|
2022-12-04 17:22:03 +01:00
|
|
|
int main(int /*argc*/, char *argv[])
|
2022-11-24 22:02:59 +01:00
|
|
|
{
|
2022-12-04 17:22:03 +01:00
|
|
|
initLogger();
|
2022-12-23 16:08:56 +01:00
|
|
|
|
2023-01-18 23:17:24 +01:00
|
|
|
|
2023-01-18 11:39:41 +01:00
|
|
|
}
|