Changeset 324

Show
Ignore:
Timestamp:
07/15/09 17:09:31 (15 years ago)
Author:
trnewman
Message:

Bugs and removing debug stuff.

Location:
vtcross/trunk/src
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/cognitive_engines/CognitiveEngine.cpp

    r301 r324  
    513513    ReadMessage(commandSocketFD, buffer); 
    514514    radioInfo->numUtilities = atoi(buffer); 
    515     LOG("Cognitive Engine:: Receiving Radio Configuration. %s\n",buffer); 
    516  
    517515 
    518516    for(size_t i = 0; i < radioInfo->numUtilities; i++) { 
  • vtcross/trunk/src/cognitive_engines/cbr_demo.cpp

    r285 r324  
    3131       ERROR(1, "Usage: %s hostname port\n", argv[0]); 
    3232     
    33     CognitiveEngine cognitiveEngine(argv[1], argv[2], true); 
     33    CognitiveEngine cognitiveEngine(argv[1], argv[2], false); 
    3434 
    3535    LOG("Waiting for signal...\n"); 
  • vtcross/trunk/src/shell/shell_demo.cpp

    r214 r324  
    2121{ 
    2222    if(argc < 3) 
    23        ERROR(1, "Usage: %s config_file primary_port policy_port command_port\n", argv[0]); 
     23       ERROR(1, "Usage: ./shell_demo config_file primary_port policy_port command_port\n", argv[0]); 
    2424     
    2525    CognitiveRadioShell cognitiveRadioShell(argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]));