Skip to content

Allow customization of transmit and receive buffer sizes for I2C 'Wire' object. #588

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

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Renamed twi.c to twi.cpp
  • Loading branch information
dac1e committed Dec 28, 2024
commit 891b446bca1ef9aabe0b6ffe8c7aa3e65cb41cc0
10 changes: 4 additions & 6 deletions libraries/Wire/src/Wire.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@
Modified 2020 by Greyson Christoforo (grey@christoforo.net) to implement timeouts
*/

extern "C" {
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include "utility/twi.h"
}
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include "utility/twi.h"

#include "Wire.h"

Expand Down
File renamed without changes.