Hi, Am 25.10.2012 17:23, schrieb Morfsta: > The third version of my plugin rotorng has been released here: - > > http://projects.vdr-developer.org/projects/plg-rotor-ng/files > > This plugin allows you to steer a disecq 1.1 rotor, find satellites > with a signal meter and to store them at given positions. It also has > a rudimentary channel scanner which works with both DVB-S and S2. Much > of this code has been merged together from the existing actuator and > rotor plugins, so thanks to the developers of those for their work. > > Please see the README file, there are a number of functions within the > user interface that aren't fully implemented or working but the main > functions are there. > > Changes since previous version: - > > 2012-10-11: Version 0.2 > > - updated sat card store value in config, always resetting > - fixed issue with change implemented in 1.7.23 (thanks to Ihanisch) > > 2012-10-21: Version 0.3 > > - Added patch for vdr-1.7.27 onwards, old patch for VDR still exists also. > - Fixed problem with cStatusMonitor::ChannelSwitch call introduced in > VDR 1.7.26 so dish moves on channel change You've forgotten the wrap the definition of ChannelSwitch into #if's: --- a/rotorng.c +++ b/rotorng.c @@ -333,7 +333,11 @@ int last_position_shown; bool transfer; protected: +#if VDRVERSNUM >= 10726 virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView); +#else + virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber); +#endif public: cStatusMonitor(); }; Regards, Lars. > > Good luck! > > _______________________________________________ > vdr mailing list > vdr@xxxxxxxxxxx > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr > _______________________________________________ vdr mailing list vdr@xxxxxxxxxxx http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr