FreeCalypso > hg > fc-sim-tools
view simtool/pberase.c @ 93:6041c601304d
fcsim1-mkprov: revert OTA key addition
It appears that GrcardSIM2 cards (which is what we got for FCSIM1)
do not support OTA after all, contrary to what we were previously
led to believe by some tech support emails from Grcard - apparently
those support emails and OTA descriptions referred to some other
card model(s).
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 21 Apr 2021 05:38:39 +0000 |
parents | ddd767f6e15b |
children |
line wrap: on
line source
/* * This module implements the pb-erase family of commands. */ #include <sys/types.h> #include <string.h> #include <strings.h> #include <stdio.h> #include <stdlib.h> #include "simresp.h" #include "curfile.h" cmd_pb_erase(argc, argv) char **argv; { int rc; unsigned recno; u_char record[255]; rc = phonebook_op_common(argv[1]); if (rc < 0) return(rc); memset(record, 0xFF, curfile_record_len); for (recno = 1; recno <= curfile_record_count; recno++) { rc = update_rec_op(recno, 0x04, record, curfile_record_len); if (rc < 0) return(rc); } return(0); } cmd_pb_erase_one(argc, argv) char **argv; { int rc; unsigned recno; u_char record[255]; rc = phonebook_op_common(argv[1]); if (rc < 0) return(rc); recno = strtoul(argv[2], 0, 0); if (recno < 1 || recno > curfile_record_count) { fprintf(stderr, "error: specified record number is invalid\n"); return(-1); } memset(record, 0xFF, curfile_record_len); return update_rec_op(recno, 0x04, record, curfile_record_len); } cmd_pb_erase_range(argc, argv) char **argv; { int rc; unsigned recno, startrec, endrec; u_char record[255]; rc = phonebook_op_common(argv[1]); if (rc < 0) return(rc); startrec = strtoul(argv[2], 0, 0); if (startrec < 1 || startrec > curfile_record_count) { fprintf(stderr, "error: specified starting record number is invalid\n"); return(-1); } if (!strcmp(argv[3], "end")) endrec = curfile_record_count; else { endrec = strtoul(argv[3], 0, 0); if (endrec < 1 || endrec > curfile_record_count) { fprintf(stderr, "error: specified final record number is invalid\n"); return(-1); } if (startrec > endrec) { fprintf(stderr, "error: reverse record range specified\n"); return(-1); } } memset(record, 0xFF, curfile_record_len); for (recno = startrec; recno <= endrec; recno++) { rc = update_rec_op(recno, 0x04, record, curfile_record_len); if (rc < 0) return(rc); } return(0); }