mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
20 lines
439 B
C++
20 lines
439 B
C++
#ifndef _BOOTLOADER_INTERFACE_MENUS_INSTALLER_H_
|
|
#define _BOOTLOADER_INTERFACE_MENUS_INSTALLER_H_
|
|
|
|
#include <bootloader/interface/src/menu.h>
|
|
#include <bootloader/interface/menus/dfu.h>
|
|
|
|
namespace Bootloader {
|
|
class InstallerMenu : public Menu {
|
|
public:
|
|
InstallerMenu();
|
|
|
|
void setup() override;
|
|
void post_open() override {};
|
|
|
|
static DfuMenu * SlotsDFU();
|
|
static DfuMenu * BootloaderDFU();
|
|
};
|
|
}
|
|
|
|
#endif |