Replies: 2 comments
-
|
This should be fixed with commit: 2921758 |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
The problem has been resolved, thank you for providing such excellent open-source resources.
…---- Replied Message ----
| From | Daniele ***@***.***> |
| Date | 02/03/2024 02:26 |
| To | ***@***.***> |
| Cc | ***@***.***>***@***.***> |
| Subject | Re: [daniele77/cli] On the ARM platform, the following code has issues. (Discussion #220) |
Closed #220 as resolved.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi daniele, On the ARM platform, the following code has issues.
in file: genericasioremotecli.h(I added 'signed char' because -1 != 0xFF in arm32bit):
void Consume(signed char c)
{
if (escape)
{
if (c == (signed char)(IAC))
Data(c);
else
Command(c);
escape = false;
}
else
{
if (c == (signed char)(IAC))
escape = true;
else
Data(c);
}
}
Beta Was this translation helpful? Give feedback.
All reactions