view dhf/emit-dhfbin-0610.c @ 51:914eeb3ab866

efr-sid OS#6538: generate test frames in hex form
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 12 Aug 2024 03:06:17 +0000
parents e4c6fc4e30f4
children
line wrap: on
line source

/*
 * This program emits a binary file containing one GSM 06.10 DHF.
 */

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <tw_gsmfr.h>

main(argc, argv)
	char **argv;
{
	FILE *outf;

	if (argc != 2) {
		fprintf(stderr, "usage: %s out-bin-file\n", argv[0]);
		exit(1);
	}
	outf = fopen(argv[1], "w");
	if (!outf) {
		perror(argv[1]);
		exit(1);
	}
	fwrite(gsmfr_decoder_homing_frame, 1, 33, outf);
	fclose(outf);
	exit(0);
}