Starting support for Lauterbach T32 HW Debugger
git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1740 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
9
hwdebuggers/t32/src/CMakeLists.txt
Normal file
9
hwdebuggers/t32/src/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
||||
set(SRCS
|
||||
t32connector.cc
|
||||
)
|
||||
|
||||
add_executable(fail-client ${SRCS})
|
||||
target_link_libraries(fail-client -Wl,-whole-archive t32api -Wl,-no-whole-archive fail )
|
||||
|
||||
install(TARGETS fail-client RUNTIME DESTINATION bin)
|
||||
|
||||
63
hwdebuggers/t32/src/t32connector.cc
Normal file
63
hwdebuggers/t32/src/t32connector.cc
Normal file
@ -0,0 +1,63 @@
|
||||
#include <t32.h>
|
||||
#include <iostream>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
void err(int ernum){
|
||||
if(err != 0){
|
||||
cerr << "Error: " << err << endl;
|
||||
//exit(-1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
int eval_command(){
|
||||
string cmd;
|
||||
char errmsg[128];
|
||||
cout << "%> ";
|
||||
getline(cin, cmd);
|
||||
if(cmd.compare("bye") == 0) return -1;
|
||||
|
||||
int err = T32_Cmd((char*)cmd.c_str());
|
||||
if(err != 0){
|
||||
cerr << "Could not execute command: " << err << endl;
|
||||
word errnum;
|
||||
T32_GetMessage(errmsg, &errnum);
|
||||
cerr << errmsg << "Type: " << errnum << endl;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
int main(void){
|
||||
cout << "Lauterbach remote connection" << endl;
|
||||
cout << "Enter bye to exit." << endl;
|
||||
int error;
|
||||
char hostname[] = "localhost";
|
||||
char packlen[] = "1024";
|
||||
char port[] = "20010";
|
||||
|
||||
cout << "[T32] Connecting to " << hostname << ":" << port << " Packlen: " << packlen << endl;
|
||||
T32_Config("NODE=", hostname);
|
||||
T32_Config("PACKLEN=", packlen);
|
||||
T32_Config("PORT=", port);
|
||||
|
||||
cout << "[T32] Init." << endl;
|
||||
err(T32_Init());
|
||||
|
||||
cout << "[T32] Attach." << endl;
|
||||
err(T32_Attach(T32_DEV_ICD));
|
||||
|
||||
while(eval_command() != -1);
|
||||
|
||||
cout << "[T32] Exit." << endl;
|
||||
err(T32_Exit());
|
||||
cout << "Bye." << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user