Bootload from SD card to sector 0, and jump to sector 24 where new firmware resides

Dependencies:   FatFS mbed

Fork of Panel-Controller-Bootloader by Emma

Committer:
bonchenko
Date:
Wed Apr 22 10:18:55 2015 +0000
Revision:
2:0fa89ba8f6fe
Parent:
0:c3a652eff606
Bootloader from SD card works perfectly. Compiled with offset in EmBlocks, ADE cannot print readings - but its happened without bootloader too. The problem is Emblocks compiler settings

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bonchenko 0:c3a652eff606 1 #ifndef USART_H_
bonchenko 0:c3a652eff606 2 #define USART_H_
bonchenko 0:c3a652eff606 3
bonchenko 0:c3a652eff606 4 #include "stm32f10x.h"
bonchenko 0:c3a652eff606 5 #include "stm32f10x_usart.h"
bonchenko 0:c3a652eff606 6
bonchenko 0:c3a652eff606 7 void USART_Initialise(void);
bonchenko 0:c3a652eff606 8 void USART_SendString(char* message);
bonchenko 0:c3a652eff606 9 unsigned char USART_ReadByteSync(USART_TypeDef *USARTx);
bonchenko 0:c3a652eff606 10
bonchenko 0:c3a652eff606 11 #endif