FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/parseargs.c @ 867:c4da570dca83
int_osx_receive_prim() in gsm-fw/gpf/osx/osx.c: there was an error in the
reconstruction of this function from disassembly in the logic that implements
special handling for MPHC_RXLEV_REQ messages.
The code is now fixed to properly match what the binary object version does;
with this fix the firmware now performs the power measurement phase correctly
and the initial network registration succeeds.
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 16 May 2015 06:34:09 +0000 |
parents | f5affe83ba2d |
children |
line wrap: on
line source
/* * This module contains the parse_args() function, which parses the "rest" * part of an entered command into an argc/argv-style argument array. */ lldbg_parse_args(unparsed, minargs, maxargs, argv, argcp) char *unparsed; int minargs, maxargs; char **argv; int *argcp; { int argc; char *cp; argc = 0; for (cp = unparsed; ; ) { while (*cp == ' ') cp++; if (!*cp) break; if (argc >= maxargs) { lldbg_printf("ERROR: too many arguments\n"); return(-1); } argv[argc++] = cp; while (*cp && *cp != ' ') cp++; if (*cp) *cp++ = '\0'; } if (argc < minargs) { lldbg_printf("ERROR: too few arguments\n"); return(-1); } argv[argc] = 0; if (argcp) *argcp = argc; return(0); }