kopia lustrzana https://gitlab.com/Teuniz/DSRemote
Bugfix: trigger source: accept "AC" and "ACL" for powerline trigger source.
rodzic
91855ad6ac
commit
c1bc36846c
2
global.h
2
global.h
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
|
|
||||||
#define PROGRAM_NAME "DSRemote"
|
#define PROGRAM_NAME "DSRemote"
|
||||||
#define PROGRAM_VERSION "0.32_1608240949"
|
#define PROGRAM_VERSION "0.32_1609121952"
|
||||||
|
|
||||||
#define MAX_PATHLEN 4096
|
#define MAX_PATHLEN 4096
|
||||||
|
|
||||||
|
|
|
@ -1347,8 +1347,8 @@ int UI_Mainwindow::get_device_settings()
|
||||||
else if(!strcmp(device->buf, "EXT5"))
|
else if(!strcmp(device->buf, "EXT5"))
|
||||||
{
|
{
|
||||||
devparms.triggeredgesource = 5;
|
devparms.triggeredgesource = 5;
|
||||||
}
|
} // DS1000Z: "AC", DS6000: "ACL" !!
|
||||||
else if(!strcmp(device->buf, "ACL"))
|
else if((!strcmp(device->buf, "AC")) || (!strcmp(device->buf, "ACL")))
|
||||||
{
|
{
|
||||||
devparms.triggeredgesource = 6;
|
devparms.triggeredgesource = 6;
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue