1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-21 11:54:15 +01:00

OP-997: fix release notes. This change was reverted but not documented

This commit is contained in:
Oleg Semyonov 2013-06-22 18:29:40 +02:00
parent f0dcb73bf9
commit 7f84307714
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ Flight code changes:
- added visualisation of errors in bootloader updater; - added visualisation of errors in bootloader updater;
- added numerous sanity checks to the flight code to prevent unsafe arming; - added numerous sanity checks to the flight code to prevent unsafe arming;
- new flash file system, much faster and higly optimised; - new flash file system, much faster and higly optimised;
- Revo settings are now stored in embedded MCU flash freeing up external one for flight logs; - Revo data flash is splitted into two partitions, one for settings, another for user data (logs, etc);
- OPLinkMini now stores settings in the MCU flash using FlashFS too; - OPLinkMini now stores settings in the MCU flash using FlashFS too;
- a catalog of known flash types is used to support different flash types by the same firmware; - a catalog of known flash types is used to support different flash types by the same firmware;
- fixed broken overo submodule remote repository link; - fixed broken overo submodule remote repository link;

View File

@ -683,7 +683,7 @@ static const struct flashfs_logfs_cfg flashfs_external_user_cfg = {
.arena_size = 0x00010000, /* 256 * slot size */ .arena_size = 0x00010000, /* 256 * slot size */
.slot_size = 0x00000100, /* 256 bytes */ .slot_size = 0x00000100, /* 256 bytes */
.start_offset = 0x40000, /* start at the beginning of the chip */ .start_offset = 0x40000, /* start offset */
.sector_size = 0x00010000, /* 64K bytes */ .sector_size = 0x00010000, /* 64K bytes */
.page_size = 0x00000100, /* 256 bytes */ .page_size = 0x00000100, /* 256 bytes */
}; };