Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TODO] GPIO get/set direction not implemented #7

Open
smdn opened this issue May 13, 2021 · 0 comments
Open

[TODO] GPIO get/set direction not implemented #7

smdn opened this issue May 13, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@smdn
Copy link
Owner

smdn commented May 13, 2021

Get direction:

private static class GetDirectionCommand {
public static void ConstructCommand(Span<byte> comm, ReadOnlySpan<byte> userData, GPFunctionality gp)
=> throw new NotImplementedException();
public static GPIODirection ParseResponse(ReadOnlySpan<byte> resp, GPFunctionality gp)
=> throw new NotImplementedException();
}

Set direction:

private static class SetDirectionCommand {
public static void ConstructCommand(Span<byte> comm, ReadOnlySpan<byte> userData, (GPFunctionality gp, GPIODirection newDirection) args)
=> throw new NotImplementedException();
public static bool ParseResponse(ReadOnlySpan<byte> resp, (GPFunctionality gp, GPIODirection newDirection) args)
=> throw new NotImplementedException();
}

@smdn smdn added the enhancement New feature or request label May 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant