3 Commits

Author SHA1 Message Date
mvoelkel
781686c87d Set version number to 0.9.22 2016-01-13 16:58:01 +01:00
Ralph Metzler
b354113d15 disable auto DVB-S/S2 switching 2016-01-07 21:13:21 +01:00
Ralph Metzler
8d0bb02239 add octoscan 2016-01-07 21:12:53 +01:00
3 changed files with 8 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
all: ddtest octonet octokey ddflash
all: ddtest octonet octokey ddflash octoscan
install: all
install -m 0755 ddtest $(DESTDIR)/usr/bin
install -m 0755 octonet $(DESTDIR)/usr/bin
install -m 0755 octokey $(DESTDIR)/usr/bin
install -m 0755 ddflash $(DESTDIR)/usr/bin
install -m 0755 octoscan $(DESTDIR)/usr/bin
ddflash: ddflash.c
$(CC) -o ddflash ddflash.c
@@ -17,3 +18,6 @@ octonet: octonet.c
octokey: octokey.c
$(CC) -o octokey octokey.c
octoscan: octoscan.c
$(CC) -o octoscan octoscan.c

View File

@@ -712,6 +712,6 @@ void ddbridge_mod_rate_handler(unsigned long data);
int ddbridge_flashread(struct ddb *dev, u32 link, u8 *buf, u32 addr, u32 len);
#define DDBRIDGE_VERSION "0.9.21"
#define DDBRIDGE_VERSION "0.9.22"
#endif

View File

@@ -559,6 +559,7 @@ static int tune(struct dvb_frontend *fe, bool re_tune,
if (r)
return r;
#if 0
if (*status & FE_HAS_LOCK)
return 0;
@@ -567,6 +568,7 @@ static int tune(struct dvb_frontend *fe, bool re_tune,
else
p->delivery_system = SYS_DVBS;
set_parameters(fe);
#endif
return 0;
}