FreeCalypso > hg > fc-usbser-tools
view fteeprom/fteeprom-erase.c @ 2:17fdd0ba7a2e
.hgignore: import from freecalypso-hwlab
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 03 Sep 2023 18:12:03 +0000 |
parents | 11b8a30333b3 |
children | af801ab43a33 |
line wrap: on
line source
#include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <ftdi.h> main(argc, argv) char **argv; { struct ftdi_context ftdi; if (argc != 2) { fprintf(stderr, "usage: %s device-selector\n"); exit(1); } ftdi_init(&ftdi); if (ftdi_usb_open_string(&ftdi, argv[1]) < 0) { fprintf(stderr, "FTDI USB open failed: %s\n", ftdi.error_str); exit(1); } if (ftdi_erase_eeprom(&ftdi) < 0) { fprintf(stderr, "EEPROM write error: %s\n", ftdi.error_str); exit(1); } ftdi_usb_close(&ftdi); exit(0); }