view gsm-fw/lldbg/cmdtab.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

#include "cmdtab.h"

extern void lldbg_cmd_dump();
extern void lldbg_cmd_entry();
extern void lldbg_cmd_r8();
extern void lldbg_cmd_r16();
extern void lldbg_cmd_r32();
extern void lldbg_cmd_w8();
extern void lldbg_cmd_w16();
extern void lldbg_cmd_w32();

const struct cmdtab lldbg_cmdtab[] = {
	{"dump", lldbg_cmd_dump},
	{"entry", lldbg_cmd_entry},
	{"r8", lldbg_cmd_r8},
	{"r16", lldbg_cmd_r16},
	{"r32", lldbg_cmd_r32},
	{"w8", lldbg_cmd_w8},
	{"w16", lldbg_cmd_w16},
	{"w32", lldbg_cmd_w32},
	{0, 0}
};