FreeCalypso > hg > fc-usbser-tools
view cp2102/write_eeprom.c @ 106:de3b299561b3
udev: add rules file that works on my system
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Oct 2023 01:08:28 +0000 |
parents | c6d04771bf6a |
children |
line wrap: on
line source
/* * This module implements the elementary function for writing the EEPROM * on a CP2102 device. */ #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <usb.h> #include "cp210x_defs.h" extern u_char eeprom[SIZE_EEPROM]; void write_eeprom(usbh) usb_dev_handle *usbh; { int rc; rc = usb_control_msg(usbh, DEVICE_OUT_REQTYPE, CP210x_CONFIG, REG_EEPROM, 0, (char *) eeprom, SIZE_EEPROM, USB_WRITE_TIMEOUT); if (rc != SIZE_EEPROM) { fprintf(stderr, "EEPROM write error: usb_control_msg() returned %d\n", rc); exit(1); } }