Skip to content

OSX gets bytes capped at 3F #5

@zambari

Description

@zambari

It took me a while to trace this down, but I was getting incorrect results for some of transmitted values on a mac, namely nothing higher than 0x3F would come through (while the results on windows were correct), I found a list of exceptions in serial.cs, Please consider changing (this is from line 228)

        case RuntimePlatform.WindowsEditor:
	case RuntimePlatform.WindowsPlayer:
	case RuntimePlatform.WindowsWebPlayer:

To following, it fixes the issue on OSX

        case RuntimePlatform.WindowsEditor:
	case RuntimePlatform.WindowsPlayer:
	case RuntimePlatform.WindowsWebPlayer:
	case RuntimePlatform.OSXEditor:
	case RuntimePlatform.OSXPlayer:

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions