boot: implement wake event configuration

This commit is contained in:
Michael Scire 2019-05-07 10:02:53 -07:00
parent 3f75a92fd2
commit 625ac5b357
6 changed files with 202 additions and 1 deletions

View file

@ -84,4 +84,8 @@ class Boot {
static u16 GetCrc16(const void *data, size_t size);
static u32 GetBatteryVersion();
static u32 GetBatteryVendor();
/* Wake pin utiliies. */
static void SetWakeEventLevel(u32 index, u32 level);
static void SetWakeEventEnabled(u32 index, bool enabled);
};