You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
337 B
15 lines
337 B
#pragma once
|
|
#include "appcfg/appcfg.hpp"
|
|
#include "uappbase/base.hpp"
|
|
namespace iflytop {
|
|
class AppHal {
|
|
private:
|
|
/* data */
|
|
public:
|
|
static void MX_TIM6_Init(void);
|
|
static void MX_TIM7_Init(void);
|
|
static void DEBUG_UART_INIT(Pin_t tx, Pin_t rx, int32_t baudrate);
|
|
static void MX_IWDG_Init(void);
|
|
};
|
|
|
|
} // namespace iflytop
|