ghaerr commented on issue #18566:
URL: https://github.com/apache/nuttx/issues/18566#issuecomment-5258190070
@Acfboy,
> So given that blocking during drag works fine on NuttX, what do you think
we should do now?
Rather than yet another configure option, lets just \#if NUTTX the code that
works for you for the time being, something like:
```
#if NUTTX
int poll = !canBlock;
#else
int poll = (!canBlock || dragwp);
#endif
```
I can reverse this test later to \#if ELKS if it is found that only ELKS
needs the special case handling.
Do you plan to submit a PR for this along with the other changes @acassis
made for getting ClauCoDillo running, or is this the only change required for
your work?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]