Ny structure. Start of the "main" branch

This commit is contained in:
Hakan Bastedt
2024-11-20 11:18:13 +01:00
parent 31b896871d
commit 1918604586
415 changed files with 202039 additions and 21080 deletions

View File

@@ -0,0 +1,21 @@
#ifndef __RST_H__
#define __RST_H__
#define ESC_Pin_RSTN PB12
#ifdef __cplusplus
extern "C" {
#endif
void rst_setup(void);
void rst_low(void);
void rst_high(void);
void rst_check_start(void);
uint8_t is_esc_reset(void);
#ifdef __cplusplus
}
#endif
#endif /* __RST_H__ */