I operate 2 stacked boxes (cable&satbox) where one is connected to the scart input of the other. If scart input is enabled on box1, I only want to operate box2 with the remote. Therefore I need to disable the remote control of box1 during it's scart input is enabled. Unfortunately, currently there is no way of doing that. Yes, via the blue key menu the remote can be disabled but that menu can not be reached when scart input is enabled. So I'd like to see a key combination to silently disable and enable the remote control.
Cheers, JockyW
"Silent" remote control enable/disable function
-
- Einsteiger
- Beiträge: 358
- Registriert: Montag 21. Juli 2003, 23:52
-
- Einsteiger
- Beiträge: 358
- Registriert: Montag 21. Juli 2003, 23:52
well it turns out to be easy by modifying neutrino.cpp (Ln 3617-3627):
This locks box1 when selecting Scart input from the main menu until it is unlocked by <red><dbox>. Now I can happily operate box2 which is stacked on top of box1 and which is connected to it's Scart
Code: Alles auswählen
else if( msg == NeutrinoMessages::VCR_ON )
{
if( mode != mode_scart )
{
// noch nicht im Scart-Mode...
scartMode( true );
// -- Lockup Box (lock RC input until release by <RED> <DBOX> within 5 secs)
// instantiate a CRCLock object and then call lockbox on that object (since CRCLock::lockbox is a member function and not static!!)
CRCLock RCLock;
RCLock.lockBox ();