Skip to content

Commit

Permalink
Merge pull request #534 from caveman99/patch-1
Browse files Browse the repository at this point in the history
Allow SPIbeginTransaction and SPIendTransaction to be overridden by subclasses
  • Loading branch information
jgromes authored Jun 13, 2022
2 parents 6b83e08 + 1ebf420 commit 58075df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Module.h
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ class Module {
// helper functions to set up SPI overrides on Arduino
#if defined(RADIOLIB_BUILD_ARDUINO)
void SPIbegin();
void SPIbeginTransaction();
virtual void SPIbeginTransaction();
uint8_t SPItransfer(uint8_t b);
void SPIendTransaction();
virtual void SPIendTransaction();
void SPIend();
#endif

Expand Down

0 comments on commit 58075df

Please sign in to comment.