FreeCalypso > hg > vband-misc
view dhf/emit-dhfbin-efr.c @ 50:0db059f4632d
efr-sid OS#6538: more sensible 2-bit errors
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 12 Aug 2024 02:49:28 +0000 |
parents | 6bb1651f8c11 |
children |
line wrap: on
line source
/* * This program emits a binary file containing one EFR DHF. */ #include <stdio.h> #include <stdint.h> #include <stdlib.h> extern const uint8_t efr_dhf_bytes[31]; 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(efr_dhf_bytes, 1, 31, outf); fclose(outf); exit(0); }