/* * firmware writer for ESS Maestro3/Allegro (ES1988) sound cards * Copyright (c) 2006 Clemens Ladisch * * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * The software is provided "as is" and the author disclaims all warranties * with regard to this software including all implied warranties of * merchantability and fitness. In no event shall the author be liable for * any special, direct, indirect, or consequential damages or any damages * whatsoever resulting from loss of use, data or profits, whether in an * action of contract, negligence or other tortious action, arising out of * or in connection with the use or performance of this software. */ #include #include #define ARRAY_SIZE(a) (sizeof(a) / sizeof *(a)) typedef unsigned short u16; #include "maestro3.h" static void write_file(const char *filename, const unsigned short data[], size_t size) { FILE *f; size_t i; fprintf(stderr, "writing %s ...\n", filename); f = fopen(filename, "wb"); if (!f) { perror("cannot create file"); exit(EXIT_FAILURE); } for (i = 0; i < size; ++i) { /* write as little-endian 16-bit values */ if (fputc(data[i] & 0xff, f) == EOF || fputc((data[i] >> 8) & 0xff, f) == EOF) break; } if (ferror(f) || fclose(f) == EOF) { perror("cannot write"); exit(EXIT_FAILURE); } } int main(void) { write_file("maestro3_assp_kernel.fw", assp_kernel_image, ARRAY_SIZE(assp_kernel_image)); write_file("maestro3_assp_minisrc.fw", assp_minisrc_image, ARRAY_SIZE(assp_minisrc_image)); return 0; }