mirror of https://github.com/rusefi/openblt.git
Refs #1004. Corrected return value in function FlashSwitchBlock() of the port template.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@747 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
8533673714
commit
8be50f96f1
|
@ -618,8 +618,14 @@ static tFlashBlockInfo *FlashSwitchBlock(tFlashBlockInfo *block, blt_addr base_a
|
||||||
base_addr = flashLayout[0].sector_start;
|
base_addr = flashLayout[0].sector_start;
|
||||||
result = block;
|
result = block;
|
||||||
}
|
}
|
||||||
|
/* no switching between the generic block and the bootblock needed. it is a switch
|
||||||
|
* within a generic block. the current block needs to be first programmed before a
|
||||||
|
* switch to the new one can be make.
|
||||||
|
*/
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
/* start by initializing the result to success */
|
||||||
|
result = block;
|
||||||
/* need to switch to a new block, so program the current one and init the next */
|
/* need to switch to a new block, so program the current one and init the next */
|
||||||
if (FlashWriteBlock(block) == BLT_FALSE)
|
if (FlashWriteBlock(block) == BLT_FALSE)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue