forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cpu/cortexm_common: extend flashpage API
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright (C) 2021 Freie Universität Berlin | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
*/ | ||
|
||
/** | ||
* @ingroup cpu_cortexm_common | ||
* @ingroup drivers_periph_pm | ||
* @{ | ||
* @file | ||
* @brief common periph/flashpage functions | ||
* | ||
* @author Nils Ollrogge <nils.ollrogge@fu-berlin.de> | ||
* @} | ||
*/ | ||
|
||
#include "periph/flashpage.h" | ||
|
||
/** | ||
* @brief Memory markers, defined in the linker script | ||
* @{ | ||
*/ | ||
extern uint32_t _end_fw; | ||
extern uint32_t _erom; | ||
|
||
unsigned flashpage_first_free(void) | ||
{ | ||
return flashpage_page(&_end_fw) + 1; | ||
} | ||
|
||
unsigned flashpage_last_free(void) | ||
{ | ||
return flashpage_page(&_erom) - 1; | ||
} |