Skip to content
Open
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
2 changes: 2 additions & 0 deletions mrf24j.h
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ class Mrf24j
void set_palna(boolean enabled);

void send16(word dest16, char * data);

void send16(word dest16, char * data, byte length);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should make the header change in the same commit as the .cpp change. Each individual commit should contain what is needed for the change. By splitting the commits in two, you have a commit that doesn't compile properly.

You can use git rebase to squish them back into one commit.


void interrupt_handler(void);

Expand Down