Edision osmini4k: tuner unavailable after scan ISDB-T/DVBT channels

Interesting.
I do not see any link or what is supposed to be connectable to ISDBT in enigma2. I will try swapping DVB-T and DVB-T2 to ISDBT in a day or two. Something similar worked in the SF8008 when ATSC was being recognized as European DVB-C.
 
What other image or images does the ISDBT work in? Who has this working correctly besides this TNAP test image?

Changes were made in lib/dvb/frontend.cpp

These changes will destroy DVB-T capability because ISDBT was used to replace DVB-T. Differences are shown in the attached file. No image group will accept this "fix" because it kills DVB-T.

What is the Exact make/model of your ISDBT usb device and where can one be purchased?
 

Attachments

OE-Alliance (OpenATV, OpenSpa) work fine with both systems: DVB-T and ISDB-T using same usb adapter. No problem for DVB-T users...

How about send this test image to some european user to test DVB-T?

This is my siano adapter:https://pt.aliexpress.com/i/699097668.html

https://www.youtube.com/watch?v=4KMsVppD6IQ

And I have other too working fine (dib0700) OE-Alliance: https://linuxtv.org/wiki/index.php/PixelView_PlayTV_USB_SBTVD#dvb_usb_dib0700

Please, I add (feeds) this driver dib0700 too to test both ISDB-T usb adapters.

Thx
 
Last edited:
https://github.com/openatv/enigma2/blob/master/lib/dvb/frontend.cpp

Code:
ss << "Delivery Systems:";
	std::map<fe_delivery_system_t, bool>::iterator it;
	for (it = m_delsys.begin(); it != m_delsys.end(); it++)
	{
		if (!it->second) continue;

		switch (it->first)
		{
			case SYS_ATSC:		ss << "ATSC"; break;
			case SYS_ATSCMH:	ss << "ATSCMH"; break;
			case SYS_CMMB:		ss << "CMBB"; break;
			case SYS_DAB:		ss << "DAB"; break;
			case SYS_DSS:		ss << "DSS"; break;
			case SYS_DVBC_ANNEX_B:	ss << "DVBC_ANNEX_B"; break;
			case SYS_DVBH:		ss << "DVBH"; break;
			case SYS_DVBS:		ss << "DVBS"; break;
			case SYS_DVBS2:		ss << "DVBS2"; break;
			case SYS_DVBT:		ss << "DVBT"; break;
			case SYS_ISDBC:		ss << "ISDBC"; break;
			case SYS_ISDBS:		ss << "ISDBS"; break;
			case SYS_ISDBT:		ss << "ISDBT"; break;
			case SYS_UNDEFINED:	ss << "UNDEFINED"; break;
			case SYS_DVBC_ANNEX_A:	ss << "DVBC_ANNEX_A"; break;
	#if DVB_API_VERSION > 5 || DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR >= 6
			case SYS_DVBC_ANNEX_C:	ss << "DVBC_ANNEX_C"; break;
			case SYS_TURBO:		ss << "TURBO"; break;
			case SYS_DTMB:		ss << "DTMB"; break;
	#else
			case SYS_DMBTH:		ss << "DMBTH"; break;
	#endif
			case SYS_DVBT2:		ss << "DVBT2"; break;
		}
		ss << ",";
	}

	ss << std::endl;

	return ss.str();
}
 
After feeds upgrade, I don't see my siano anymore. I did old installation (june, 21), but don't see siano from feeds/drivers, only opticombo.

Thx

The ISDBT "Fix" has been removed because it breaks DVB-T. Where is a USB stick that I can purchase? The one you are using for ISDBT is not available.
 
Back
Top