FreeCalypso > hg > freecalypso-sw
view rvinterf/asyncshell/rxctl.c @ 884:353daaa6014d
gsm-fw/gpf/conf/gsmcomp.c: increased max partition in the voice-only config
The code we got from TCS211 had the maximum prim pool partition size set to
900 bytes in the voice-only config (no FAX_AND_DATA, no GPRS) and to 1600 bytes
in every other config. As it turns out, this "minimized" config breaks when
the AT command interface is used with %CPI enabled, as the responsible code in
ATI does an ACI_MALLOC of 1012 bytes. TI may have considered this case to be
unsupported usage (perhaps they didn't care about the combination of a
voice-only PS with AT command control), but we do want this use case to work
without crashing. Solution: I made the largest prim pool the same as it is
with FAX_AND_DATA: 3 partitions of 1600 bytes.
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 27 Jun 2015 07:31:30 +0000 |
parents | c9f353b5d70c |
children | 820d34f3f3d7 |
line wrap: on
line source
/* * This module contains the code for enabling and disabling the receiving * of various packet types via rvinterf. */ #include <sys/types.h> #include <stdio.h> #include <ctype.h> #include <string.h> #include <strings.h> #include <stdlib.h> #include "pktmux.h" #include "localsock.h" void send_rxctl_cmd(channel, enable) { u_char cmdbuf[2]; cmdbuf[0] = enable ? CLI2RVI_WANT_MUXPROTO : CLI2RVI_DROP_MUXPROTO; cmdbuf[1] = channel; send_init_command(cmdbuf, 2); } void ati_rx_control(newstate) { static int state = 0; if (state == newstate) return; send_rxctl_cmd(RVT_AT_HEADER, newstate); state = newstate; } void gpf_rx_control(newstate) { static int state = 0; if (state == newstate) return; send_rxctl_cmd(RVT_L23_HEADER, newstate); state = newstate; } void rxctl_user_cmd(args, enable) char *args; { char *cp, *np; int gotsome = 0; for (cp = args; ; ) { while (isspace(*cp)) cp++; if (!*cp) { if (!gotsome) printf("error: argument required\n"); return; } for (np = cp; *cp && !isspace(*cp); cp++) ; if (*cp) *cp++ = '\0'; if (!strcmp(np, "ati")) ati_rx_control(enable); else if (!strcmp(np, "gpf")) gpf_rx_control(enable); else { printf("error: unknown channel \"%s\"\n", np); return; } gotsome++; } } void cmd_enable(args) char *args; { rxctl_user_cmd(args, 1); } void cmd_disable(args) char *args; { rxctl_user_cmd(args, 0); }