view cp2102/intel_hex_out.c @ 105:1e820ed0904e

Installed-binaries: list of binaries installed by this package I am establishing a new convention for all FreeCalypso tools, across different packages and source repositories: each FC tools package will have a file name Installed-binaries listing all user-invokable binaries that package installs in /opt/freecalypso/bin. These files are to serve as an aid to users and distro package maintainers who prefer to not add /opt/freecalypso/bin to their PATH. The alternative to adding this directory to PATH is to create a symlink for every installed binary in some standard location such as /usr/bin or /usr/local/bin, pointing to the actual binary in /opt/freecalypso/bin; having a list of all FC-installed binaries in a standardized format will allow this process to be automated.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 29 Sep 2023 19:42:53 +0000
parents 842cff427588
children
line wrap: on
line source

/*
 * This module implements a function for writing out the same Intel HEX
 * format as used by cp210x-program-1.0, the Python-language tool from 2014.
 */

#include <sys/types.h>
#include <string.h>
#include <strings.h>
#include <stdio.h>
#include <stdlib.h>
#include "cp210x_defs.h"

void
intel_hex_out(eeprom, outf)
	u_char *eeprom;
	FILE *outf;
{
	unsigned linecnt, bytecnt;
	unsigned addr;
	u_char *sp;
	u_char record[21], *dp, csum;

	sp = eeprom;
	addr = EEPROM_START_ADDR;
	for (linecnt = 0; linecnt < 64; linecnt++) {
		dp = record;
		*dp++ = 0x10;
		*dp++ = addr >> 8;
		*dp++ = addr;
		*dp++ = 0x00;
		for (bytecnt = 0; bytecnt < 16; bytecnt++)
			*dp++ = *sp++;
		csum = 0;
		for (bytecnt = 0; bytecnt < 20; bytecnt++)
			csum += record[bytecnt];
		csum = 0x100 - csum;
		record[20] = csum;
		putc(':', outf);
		for (bytecnt = 0; bytecnt < 21; bytecnt++)
			fprintf(outf, "%02X", record[bytecnt]);
		putc('\n', outf);
		addr += 16;
	}
	fputs(":00000001FF\n", outf);
}