forked from skullbox305/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.
riotboot_dfu: Stay in DFU mode if button is pressed
Boards can override this; by default it's BTN0
- Loading branch information
Showing
2 changed files
with
95 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* Copyright (C) 2020 Christian Amsüss <[email protected]> | ||
* | ||
* 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 bootloaders | ||
* | ||
* @{ | ||
* | ||
* @file | ||
* @brief Configuration for the riotboot_dfu bootloader | ||
* | ||
* @author Christian Amsüss <[email protected]> | ||
*/ | ||
|
||
/* Include guards and cplusplus are more of a formality; this header is local | ||
* to the riotboot_dfu application that isn't written in C++ and not included | ||
* from anywhere else either, but still here for consistency (and because | ||
* otherwise the checks complain) */ | ||
#ifndef BOOTLOADER_SELECTION_H | ||
#define BOOTLOADER_SELECTION_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/* Not including GPIO headers: we're not actually *doing* anything on GPIO, and | ||
* if no BTN0_PIN is defined we don't define anything either */ | ||
#include <board.h> | ||
|
||
|
||
/** @brief Button pin for bootloader selection | ||
* | ||
* This pin (typically connected to a button) is checked by the riotboot_dfu | ||
* bootloader to decide whether to enter DFU mode even if a valid image is | ||
* present. | ||
* | ||
* The default value for all boards is BTN0, if one is defined. | ||
* | ||
* Boards that insist on not using any button even though they have some can | ||
* define BTN_BOOTLOADER_NONE in their `board.h`. | ||
* | ||
* */ | ||
#if (!defined(BTN_BOOTLOADER_PIN) && defined(BTN0_PIN) && !defined(BTN_BOOTLOADER_NONE)) || DOXYGEN | ||
#define BTN_BOOTLOADER_PIN BTN0_PIN | ||
#endif | ||
|
||
/** @brief Pin mode for @ref BTN_BOOTLOADER_PIN | ||
* | ||
* Mode into which the riotboot_dfu bootloader will configure @ref | ||
* BTN_BOOTLOADER_PIN before reading it. | ||
* | ||
* */ | ||
#ifndef BTN_BOOTLOADER_MODE | ||
#define BTN_BOOTLOADER_MODE BTN0_MODE | ||
#endif | ||
|
||
/** @brief Interpretation of @ref BTN_BOOTLOADER_PIN. | ||
* | ||
* Set to true for active-low buttons (go to DFU if the pin is low), otherwise | ||
* to false (go to DFU if the pin is high). | ||
* | ||
* The default value for all boards is inverted (active-low). | ||
* | ||
* */ | ||
#ifndef BTN_BOOTLOADER_INVERTED | ||
#define BTN_BOOTLOADER_INVERTED true | ||
#endif | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* BOOTLOADER_SELECTION_H */ | ||
|
||
/** @} */ |
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