mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 04:23:37 +01:00
libfxlink: no-colors option + don't always enumerate devices [Windows]
Enumerating devices constantly caused some sort of error/crash that would stop the monitor after just one frame or so.
This commit is contained in:
parent
efcd6ec241
commit
92a95e0090
4 changed files with 10 additions and 5 deletions
|
@ -187,6 +187,6 @@ Install the cross-compiler and cross-libraries from AUR.
|
|||
Configure and build. Install to get libfxlink.
|
||||
|
||||
```bash
|
||||
% x86_64-w64-mingw32-cmake -B build-win64 -DCMAKE_INSTALL_PREFIX="$HOME/.local" -DFXLINK_DISABLE_UDISKS2=1 -DFXLINK_DISABLE_POLL=1
|
||||
% x86_64-w64-mingw32-cmake -B build-win64 -DCMAKE_INSTALL_PREFIX="$HOME/.local" -DFXLINK_DISABLE_UDISKS2=1 -DFXLINK_DISABLE_POLL=1 -DFXLINK_DISABLE_ANSIESC=1
|
||||
% make -C build-win64 install
|
||||
```
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
|
||||
char const *fmt_to_ANSI(int format)
|
||||
{
|
||||
#ifdef FXLINK_DISABLE_ANSIESC
|
||||
return "";
|
||||
#else
|
||||
static char buf[64];
|
||||
int n = 0;
|
||||
|
||||
|
@ -36,6 +39,7 @@ char const *fmt_to_ANSI(int format)
|
|||
strcpy(buf+n, "\e[3m"), n += 4;
|
||||
|
||||
return buf;
|
||||
#endif
|
||||
}
|
||||
|
||||
char *fxlink_gen_file_name(char const *path, char const *name,
|
||||
|
|
|
@ -227,7 +227,8 @@ void fxlink_device_analysis_1(struct fxlink_device *fdev, bool quiet)
|
|||
|
||||
if(!quiet) {
|
||||
hlog("calculators %s", fxlink_device_id(fdev));
|
||||
log_("%1$d interface%2$s, class code%2$s", calc->interface_count,
|
||||
log_("%d interface%s, class code%s", calc->interface_count,
|
||||
calc->interface_count != 1 ? "s" : "",
|
||||
calc->interface_count != 1 ? "s" : "");
|
||||
|
||||
for(int i = 0; i < calc->interface_count; i++) {
|
||||
|
@ -842,9 +843,6 @@ bool fxlink_device_list_track(struct fxlink_device_list *list,
|
|||
|
||||
void fxlink_device_list_refresh(struct fxlink_device_list *list)
|
||||
{
|
||||
if(!list->hotplug_supported)
|
||||
enumerate_devices(list->ctx, list);
|
||||
|
||||
for(int i = 0; i < list->count; i++) {
|
||||
struct fxlink_device *fdev = &list->devices[i];
|
||||
/* Finish analysis */
|
||||
|
|
|
@ -16,5 +16,8 @@
|
|||
/* Disable poll-based interfaces. */
|
||||
#cmakedefine FXLINK_DISABLE_POLL
|
||||
|
||||
/* Disable printing ANSI escape sequences. */
|
||||
#cmakedefine FXLINK_DISABLE_ANSIESC
|
||||
|
||||
/* fxSDK version */
|
||||
#define FXLINK_VERSION "@CMAKE_PROJECT_VERSION@"
|
||||
|
|
Loading…
Reference in a new issue