![]() | hello....satman....friendOriginally Posted by fairbird where are you my friend....satman ?? are u ... | |
![]() | Home | Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read | Links | ![]() |
![]() | | #16 | ![]() |
| Dreambox Guru Join Date: Mar 2008 Location: any dreambox development forum Posts: 127 Thanks: 35
Thanked 57 Times in 43 Posts
Downloads: 43 Uploads: 0 ![]() |
if you have the full nemesis sources then check the patch.sh (theres a few ready made patch scripts you can run which if you open in text editor youl see excatly where/how to correctly insert the blue panel) cheers osborne82 | |
| | |
![]() | | #18 | ![]() |
| Dreambox Guru Join Date: Mar 2008 Location: any dreambox development forum Posts: 127 Thanks: 35
Thanked 57 Times in 43 Posts
Downloads: 43 Uploads: 0 ![]() |
post the error up here m8 lets sort it if your using the whole sources youl prob have to edit the makefile.am to checkout a earlier version of the cdk (many many changes to cvs since sources first compiled)cheers osborne82 | |
| | |
| The Following User Says Thank You to osborne82 For This Useful Post: | fairbird (3rd July, 2009) |
![]() | | #19 | ![]() |
![]() | | #20 | ![]() |
| Dreambox Guru Join Date: Mar 2008 Location: any dreambox development forum Posts: 127 Thanks: 35
Thanked 57 Times in 43 Posts
Downloads: 43 Uploads: 0 ![]() |
Code: Check this link enigma_main.h timeval blueTime; void bluePress(); void blueRepeat(); void blueRelease(); void openEcmInfoPanel(); void openNemesisPanel(); timeval yellowTime; void yellowPress(); void yellowRepeat(); void yellowRelease(); void openEmuInfo(); void getScreenInfo(); void getCodInfo(); void clearInfo(); osborne82 | |
| | |
| The Following User Says Thank You to osborne82 For This Useful Post: | fairbird (4th July, 2009) |
![]() | | #21 | ![]() |
| Junior Member | thank you my friend about your time and help .... already i was added before looks like ... in enigma_main.h Code: Check this link /* SNR,AGC,BER DISPLAY */
timeval blueTime;
void bluePress();
void blueRepeat();
void blueRelease();
void openEcmInfoPanel();
void openNemesisPanel();
timeval yellowTime;
void yellowPress();
void yellowRepeat();
void yellowRelease();
void openEmuInfo();
void getScreenInfo();
void getCodInfo();
void clearInfo();
timeval standbyTime;
int standby_nomenu;
Code: Check this link void eZapMain::yellowPress()
{
gettimeofday(&yellowTime,0);
yellowTime+=600;
}
void eZapMain::yellowRepeat()
{
timeval now;
gettimeofday(&now,0);
if ( yellowTime < now )
yellowRelease();
}
void eZapMain::yellowRelease()
{
if ( yellowTime.tv_sec == -1)
return;
timeval now;
gettimeofday(&now,0);
bool b = yellowTime < now;
if (b)
{
yellowTime.tv_sec=-1;
openEmuInfo();
}
else
{
yellowTime.tv_sec=-1;
runPluginExt();
}
}
void eZapMain::openEmuInfo()
{
hide();
eEmuInfo dlg;
dlg.show();
dlg.exec();
dlg.hide();
if (!doHideInfobar())
showInfobar();
}
void eZapMain::runPluginExt()
{
hide();
eZapPlugins plugins(eZapPlugins::StandardPlugin);
plugins.exec();
if (!doHideInfobar())
showInfobar();
}
void eZapMain::bluePress()
{
gettimeofday(&blueTime,0);
blueTime+=600;
}
void eZapMain::blueRepeat()
{
timeval now;
gettimeofday(&now,0);
if ( blueTime < now )
blueRelease();
}
void eZapMain::blueRelease()
{
if ( blueTime.tv_sec == -1)
return;
timeval now;
gettimeofday(&now,0);
bool b = blueTime < now;
if (b)
{
blueTime.tv_sec=-1;
openEcmInfoPanel();
}
else
{
blueTime.tv_sec=-1;
openNemesisPanel();
}
}
void eZapMain::openEcmInfoPanel()
{
hide();
ecmInfo dlg;
dlg.show();
dlg.exec();
dlg.hide();
if (!doHideInfobar())
showInfobar();
}
void eZapMain::openNemesisPanel()
{
hide();
eCbpMain dlg;
dlg.show();
dlg.exec();
dlg.hide();
if (!doHideInfobar())
showInfobar();
}
void eZapMain::showSelectorStyleEPG()
{
so ... what is the wrong for that error ..... i wait your help.... |
| | |
![]() | | #22 | ![]() |
| Dreambox Guru Join Date: Mar 2008 Location: any dreambox development forum Posts: 127 Thanks: 35
Thanked 57 Times in 43 Posts
Downloads: 43 Uploads: 0 ![]() | way i see it you have two ways here to succeed first if your not bothered about using the lasted cdk (ie you happy with using a old version that compiles without any/much edits) then please start again and check out the cvs BUT STOP before make checkout . before u do this command nav to your tuxbox/cdk and open up makefile and add Code: Check this link cd ../$$i && cvs update -d -P -A -D 2007-05-10; \ Code: Check this link checkout:
@for i in apps/tuxbox/enigma apps/dvb/dvbsnoop \
apps/dvb/tools/stream apps/tuxbox/plugins \
apps/tuxbox/libs; do \
CURRENT_PATH=`pwd`; \
cd ../$$i && cvs update -d -P -A -D 2007-05-10; \
cd $$CURRENT_PATH; \
done
second way to do this would be to either wait for someone to update and post the nemesis sources that are upto date and compile with todays cvs or go through it all one by one but itl be time consuming job (ive just set a fresh compile of now so will try myself to update for u today if this helps) cheers osborne82 |
| | |
| The Following User Says Thank You to osborne82 For This Useful Post: | fairbird (5th July, 2009) |
![]() | | #23 | ![]() |
| Junior Member |
ok i will do what you tell me .... but i don't like to mack patch direct ... i want to do it manually ... for learning how i add panel or emu ...etc . manual Better for learning ... and you what you see better or not ??? ![]() i wait your kind soul and your help ...dear | |
| | |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| help plz.... mr satman.. | fairbird | Dreambox Developement | 12 | 26th February, 2010 05:31 PM |
| Hi Friend | deetrast | Introduce Yourself | 2 | 10th April, 2009 10:59 AM |
| Hi friend :) | mrgood | Introduce Yourself | 5 | 26th September, 2008 06:22 PM |
| You've got a new friend | joya | Introduce Yourself | 4 | 25th June, 2008 08:02 AM |
![]() | ![]() |