view cp2102/write_eeprom_main.c @ 98:1cacc1ae56f0

cp2102 tools: convert to -d option for non-default device
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 28 Sep 2023 04:45:13 +0000
parents 8d35346f1d46
children
line wrap: on
line source

/*
 * This program reads a CP2102 EEPROM image from an Intel HEX file
 * and writes it into a physical CP2102 USB device.
 */

#include <sys/types.h>
#include <string.h>
#include <strings.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <usb.h>
#include "../libuwrap/find_dev.h"
#include "../libuwrap/open_close.h"
#include "cp210x_defs.h"

extern struct usb_device *find_cp2102_device();

u_char eeprom[SIZE_EEPROM];
char *device_selector, *input_filename;
int no_detach;

process_cmdline(argc, argv)
	char **argv;
{
	int c;
	extern int optind;
	extern char *optarg;

	while ((c = getopt(argc, argv, "d:n")) != EOF) {
		switch (c) {
		case 'd':
			device_selector = optarg;
			continue;
		case 'n':
			no_detach = 1;
			continue;
		default:
		usage:
			fprintf(stderr, "usage: %s [hw-options] eeprom-image\n",
				argv[0]);
			exit(1);
		}
	}
	if (argc != optind + 1)
		goto usage;
	input_filename = argv[optind];
}

main(argc, argv)
	char **argv;
{
	struct usb_device *dev;
	usb_dev_handle *usbh;

	process_cmdline(argc, argv);
	read_intel_hex(input_filename);
	dev = find_cp2102_device(device_selector);
	usbh = usb_open(dev);
	if (!usbh) {
		fprintf(stderr, "error: usb_open() failed\n");
		exit(1);
	}
	if (!no_detach)
		usbwrap_claim_all_ifs(usbh);
	write_eeprom(usbh);
	usb_close(usbh);
	exit(0);
}