zevero / avr_boot

Arduino Bootloader to Flash from SD Card

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: Is it possible to use Software Spi?

hmantz opened this issue · comments

Hi all! I have a project with an Atmega328P and I am using the hardware SPI pins for a different purpose. Is it possible to use non-standard pins to flash a new bootloader from a SD card?

Yes, to use software SPI or any other form of SPI, just rewrite these functions:

void init_spi (void);		/* Initialize SPI port (asmfunc.S) */
void xmit_spi (BYTE d);		/* Send a byte to the MMC (asmfunc.S) */
BYTE rcv_spi (void);		/* Send a 0xFF to the MMC and get the received byte (asmfunc.S) */

They can be written in C/C++ as well as in AVR assembly.

Hello, we have an Arduino Mega2560 available here that comes preinstalled with a microSD flash installer while still supporting updates through SPI.