Skip to content

asciiLord/spi_bridge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

SPI Bridge

The code shows a SPI bridge between Arduino (ATmega32u4) and ReSpeaker (MT7688). The MT7688 is as a SPI master and ATmega32u4 as a SPI slave.

The data transformation is duplex.

for ATmega32u4

  char c = SPDR;  // read SPI Data Register

  SPDR = c;   // write back to SPI, it will be transfed to the master next time

About

SPI bridge between Arduino (ATmega32u4) and ReSpeaker (MT7688), ATmega32u4 as a SPI slave

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 64.2%
  • C++ 35.8%