mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 17:55:19 +03:00
Fixes #1241 - Revert "Bootloader now accessible with left OR right trim inwards"
This reverts commit 54447a45a0
.
This commit is contained in:
parent
72dc022dc9
commit
e50d9c0edf
1 changed files with 21 additions and 19 deletions
|
@ -100,7 +100,8 @@ void _bootStart()
|
||||||
bwdt_reset();
|
bwdt_reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (((GPIOC->IDR & 0x00000002) == 0) || ((GPIOE->IDR & 0x00000008) == 0)) {
|
if ((GPIOE->IDR & 0x00000008) == 0) {
|
||||||
|
if ((GPIOC->IDR & 0x00000002) == 0) {
|
||||||
// Bootloader needed
|
// Bootloader needed
|
||||||
const uint8_t *src;
|
const uint8_t *src;
|
||||||
uint8_t *dest;
|
uint8_t *dest;
|
||||||
|
@ -123,6 +124,7 @@ void _bootStart()
|
||||||
((void (*)(void)) (address))(); // Go execute the loaded application
|
((void (*)(void)) (address))(); // Go execute the loaded application
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// run_application() ;
|
// run_application() ;
|
||||||
asm(" mov.w r1, #134217728");
|
asm(" mov.w r1, #134217728");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue