libxr  1.0
Want to be the best embedded framework
Loading...
Searching...
No Matches
stm32_power.hpp
1#pragma once
2
3#include "libxr.hpp"
4#include "main.h"
5#include "power.hpp"
6
7extern void __NVIC_SystemReset(void);
8
9namespace LibXR
10{
11
16{
17 public:
18 explicit STM32PowerManager();
19
20 void Reset() override;
21
22 void Shutdown() override;
23};
24
25} // namespace LibXR
电源管理器基类 / Abstract base class for Power Manager
Definition power.hpp:18
STM32 电源管理实现 / STM32 power manager implementation.
void Reset() override
复位电源管理模块 / Resets the power management module
void Shutdown() override
关闭系统电源 / Shuts down the system power
LibXR 命名空间
Definition ch32_can.hpp:14