X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftestclient%2Fmain.cpp;h=d9ad277d3e68cb4fd3deeab6fd5deafde0c81d8e;hb=95a73fa78b4524636db470491c1e3434b81df4c0;hp=dbb62e70804825094853973f43425cc44d54139b;hpb=6d858ba423e643bf169115c854ec298e60b5ef1e;p=deb_libcec.git diff --git a/src/testclient/main.cpp b/src/testclient/main.cpp index dbb62e7..d9ad277 100644 --- a/src/testclient/main.cpp +++ b/src/testclient/main.cpp @@ -180,7 +180,7 @@ void ShowHelpCommandLine(const char* strExec) " -h --help Shows this help text" << endl << " -l --list-devices List all devices on this system" << endl << " -t --type {p|r|t|a} The device type to use. More than one is possible." << endl << - " -p --physical {hex-address} The physical address to use for the primary logical device." << endl << + " -p --port {int} The HDMI port to use as active source." << endl << " -f --log-file {file} Writes all libCEC log message to a file" << endl << " -sf --short-log-file {file} Writes all libCEC log message without timestamps" << endl << " and log levels to a file." << endl << @@ -221,21 +221,25 @@ void ShowHelpConsole(void) "================================================================================" << endl << "Available commands:" << endl << endl << - "tx {bytes} transfer bytes over the CEC line." << endl << - "txn {bytes} transfer bytes but don't wait for transmission ACK." << endl << - "on {address} power on the device with the given logical address." << endl << - "standby {address} put the device with the given address in standby mode." << endl << - "la {logical_address} change the logical address of the CEC adapter." << endl << - "pa {physical_address} change the physical address of the CEC adapter." << endl << - "osd {addr} {string} set OSD message on the specified device." << endl << - "ver {addr} get the CEC version of the specified device." << endl << - "ven {addr} get the vendor ID of the specified device." << endl << - "lang {addr} get the menu language of the specified device." << endl << - "pow {addr} get the power status of the specified device." << endl << - "poll {addr} poll the specified device." << endl << - "lad lists active devices on the bus" << endl << - "ad {addr} checks whether the specified device is active." << endl << - "at {type} checks whether the specified device type is active." << endl << + "[tx] {bytes} transfer bytes over the CEC line." << endl << + "[txn] {bytes} transfer bytes but don't wait for transmission ACK." << endl << + "[on] {address} power on the device with the given logical address." << endl << + "[standby] {address} put the device with the given address in standby mode." << endl << + "[la] {logical address} change the logical address of the CEC adapter." << endl << + "[p] {port number} change the HDMI port number of the CEC adapter." << endl << + "[pa] {physical address} change the physical address of the CEC adapter." << endl << + "[osd] {addr} {string} set OSD message on the specified device." << endl << + "[ver] {addr} get the CEC version of the specified device." << endl << + "[ven] {addr} get the vendor ID of the specified device." << endl << + "[lang] {addr} get the menu language of the specified device." << endl << + "[pow] {addr} get the power status of the specified device." << endl << + "[poll] {addr} poll the specified device." << endl << + "[lad] lists active devices on the bus" << endl << + "[ad] {addr} checks whether the specified device is active." << endl << + "[at] {type} checks whether the specified device type is active." << endl << + "[volup] send a volume up command to the amp if present" << endl << + "[voldown] send a volume down command to the amp if present" << endl << + "[mute] send a mute/unmute command to the amp if present" << endl << "[mon] {1|0} enable or disable CEC bus monitoring." << endl << "[log] {1 - 31} change the log level. see cectypes.h for values." << endl << "[ping] send a ping command to the CEC adapter." << endl << @@ -250,7 +254,7 @@ void ShowHelpConsole(void) int main (int argc, char *argv[]) { - int16_t iPhysicalAddress = -1; + int8_t iHDMIPort(-1); cec_device_type_list typeList; typeList.clear(); @@ -362,14 +366,12 @@ int main (int argc, char *argv[]) return 0; } else if (!strcmp(argv[iArgPtr], "-p") || - !strcmp(argv[iArgPtr], "--physical")) + !strcmp(argv[iArgPtr], "--port")) { if (argc >= iArgPtr + 2) { - if (sscanf(argv[iArgPtr + 1], "%x", &iPhysicalAddress)) - cout << "using physical address '" << std::hex << iPhysicalAddress << "'" << endl; - else - cout << "== skipped physical address parameter: invalid physical address '" << argv[iArgPtr + 1] << "' ==" << endl; + iHDMIPort= atoi(argv[iArgPtr + 1]); + cout << "using HDMI port '" << iHDMIPort << "'" << endl; ++iArgPtr; } ++iArgPtr; @@ -438,6 +440,14 @@ int main (int argc, char *argv[]) } } + if (iHDMIPort > 0) + { + parser->SetHDMIPort((uint8_t)iHDMIPort); + FlushLog(parser); + } + + cout << "scanning the CEC bus..." << endl; + if (!parser->Open(g_strPort.c_str())) { cout << "unable to open the device on port " << g_strPort << endl; @@ -450,12 +460,6 @@ int main (int argc, char *argv[]) { cout << "cec device opened" << endl; - if (-1 != iPhysicalAddress) - { - parser->SetPhysicalAddress(iPhysicalAddress); - FlushLog(parser); - } - parser->PowerOnDevices(CECDEVICE_TV); FlushLog(parser); @@ -551,6 +555,14 @@ int main (int argc, char *argv[]) parser->SetLogicalAddress((cec_logical_address) atoi(strvalue.c_str())); } } + else if (command == "p") + { + string strvalue; + if (GetWord(input, strvalue)) + { + parser->SetHDMIPort(atoi(strvalue.c_str())); + } + } else if (command == "pa") { string strB1, strB2; @@ -585,6 +597,24 @@ int main (int argc, char *argv[]) { parser->PingAdapter(); } + else if (command == "volup") + { + CStdString strLog; + strLog.Format("volume up: %2X", parser->VolumeUp()); + cout << strLog.c_str() << endl; + } + else if (command == "voldown") + { + CStdString strLog; + strLog.Format("volume up: %2X", parser->VolumeDown()); + cout << strLog.c_str() << endl; + } + else if (command == "mute") + { + CStdString strLog; + strLog.Format("mute: %2X", parser->MuteAudio()); + cout << strLog.c_str() << endl; + } else if (command == "mon") { CStdString strEnable;