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

implement receive_data_tcp #71

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

calebbourg
Copy link
Collaborator

Description

describe the intent of your changes here

GitHub Issue: link your GitHub issue here

Changes

  • ...
  • ...
  • ...

Testing Strategy

describe how you or someone else can test and verify the changes

Concerns

describe any concerns that might be worth mentioning or discussing

@calebbourg calebbourg linked an issue Feb 1, 2023 that may be closed by this pull request

pub(crate) const MAX_NINA_PARAM_LENGTH: usize = 4096;
pub(crate) const MAX_NINA_RESPONSE_LENGTH: usize = 4096;

pub type ResponseData = [u8; MAX_NINA_RESPONSE_LENGTH];

Check warning

Code scanning / clippy

missing documentation for a type alias

missing documentation for a type alias
esp32-wroom-rp/src/spi.rs Fixed Show fixed Hide fixed
ParamLengthSize::TwoByte => self.get_two_byte_response_length().unwrap(),
};

for i in 0..response_length {

Check warning

Code scanning / clippy

the loop variable `i` is only used to index `response_bytes`

the loop variable `i` is only used to index `response_bytes`
@jhodapp jhodapp added enhancement Improves existing functionality or feature feature work Specifically implementing a new feature labels Feb 9, 2023
@jhodapp jhodapp added this to the 0.4 Release milestone Feb 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Improves existing functionality or feature feature work Specifically implementing a new feature
Projects
Status: In Progress
Development

Successfully merging this pull request may close these issues.

Receive responses from a TCP server
2 participants