// Import the DSS packages into our namespace to save on typing importPackage(Packages.com.ti.debug.engine.scripting); importPackage(Packages.com.ti.ccstudio.scripting.environment); importPackage(Packages.java.lang); /******************Variable Declaration*******************************/ var saveMem = 0; var data; var PCLocation; var returnval; var SUCCESS = 0; var ERR_FAIL = 1; var fileName = "SendGatewayMessage" var current_dir = java.lang.System.getProperty("user.dir"); var log_file = current_dir+"/logs/" + fileName + ".xml"; /**********************************************************************/ // Create our scripting environment object - which is the main entry point into any script and // the factory for creating other Scriptable ervers and Sessions var script = ScriptingEnvironment.instance(); // Create a log file in the current directory to log script execution script.traceBegin(log_file, "DefaultStylesheet.xsl"); // Log everything script.traceSetConsoleLevel(TraceLevel.INFO); script.traceSetFileLevel(TraceLevel.INFO); /****************************Function Define**********************/ //End Debug Session and exit function endDebugSession() { i=0; //Restore configuration settings var x for (x in data) { debugSession.memory.writeData(Memory.Page.PROGRAM, 0x100A+i, data[x], 16); i = i+2; } debugSession.target.disconnect(); debugServer.stop(); script.traceEnd(); System.exit(1); } function restartTarget() { // Restart, and go to main. If the target is configured to go to main on restart, then restarting // should be sufficient. Otherwise we will need to also set a breakpoint at main and run to it. debugSession.target.restart(); addressMain = debugSession.symbol.getAddress("main"); if (debugSession.memory.readRegister("PC") != addressMain) { var bp = debugSession.breakpoint.add(addressMain); debugSession.target.run(); } if(saveMem == 0) { //Save the tag configuration settings data = debugSession.memory.readData(Memory.Page.PROGRAM, 0x100A, 16, 16); saveMem = 1; } } function verifyBPLocation(Address, testNum) { debugSession.breakpoint.add(Address); debugSession.target.run(); var PCLocation = debugSession.memory.readRegister("PC"); if (PCLocation != Address) { script.traceWrite("Test"+testNum+" Failed!!"+PCLocation+" "+Address); endDebugSession(); } } /**************************Function Define End*********************/ var config_file = java.lang.System.getenv("TARGET_CONFIG_PATH")+"MSP430G2553.ccxml"; var file_to_flash = java.lang.System.getenv("FILE_TO_FLASH_PATH")+"RFindTagRailLocator.out"; print("ccxml_file="+config_file); print("file_to_flash="+file_to_flash); /********************Initialization******************************/ // Get the Debug Server and start a Debug Session debugServer = script.getServer("DebugServer.1"); debugServer.setConfig(config_file); debugSession = debugServer.openSession(".*"); script.traceWrite("**********************************************************"); script.traceWrite("Script File: "+fileName+".js"); debugSession.target.connect(); // Change timeout from the default (infinite) to 150 seconds script.setScriptTimeout(150000); script.traceWrite("This test verifies the SendGatewayMessage function"); // Load a program // (ScriptingEnvironment has a concept of a working folder and for all of the APIs which take // path names as arguments you can either pass a relative path or an absolute path) debugSession.memory.loadProgram(file_to_flash) debugSession.breakpoint.removeAll(); ///********************************Test 1**************************************/ script.traceWrite("If RFSendGatewayPacket function returns ERR_FAIL, TAGUpdateBatteryCounters \ function executes, which updates the TXLONG counter."); restartTarget(); var breakpointLocation = debugSession.symbol.getAddress("SendGatewayMessage"); verifyBPLocation(breakpointLocation, 1); breakpointLocation = debugSession.symbol.getAddress("RFSendGatewayPacket"); verifyBPLocation(breakpointLocation, 1); breakpointLocation = debugSession.symbol.getAddress("lable_retRFSendGatewayPacket"); verifyBPLocation(breakpointLocation, 1); debugSession.expression.evaluate("ret=1"); /*****************************Problem Area******************************/ The below two line statements are not working. /**********************************************************************/ //breakpointLocation = debugSession.symbol.getAddress("lable_incTXLong"); //verifyBPLocation(breakpointLocation, 1); //This line is not working /**********************************************************************/ //Replaced above two statements with below code /***********************Replacement Start******************************/ do { breakpointLocation = debugSession.symbol.getAddress("lable_incTXLong"); debugSession.target.sourceStep.over(); PCLocation = debugSession.memory.readRegister("PC"); }while(PCLocation != breakpointLocation) script.traceWrite("RFSendGatewayPacket function returns ERR_FAIL"); /*********************Replacement End************************************/ breakpointLocation = debugSession.symbol.getAddress("lable_TXLongCount"); verifyBPLocation(breakpointLocation, 1); script.traceWrite("TAGUpdateBatteryCounters function has updated TXLONG count"); script.traceWrite("Test1 Passed!!"); endDebugSession();