1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef GPIO_IO_H
- #define GPIO_IO_H
- #include <stdbool.h>
- void IO_SetDbBoot0(void);
- void IO_ClearDbBoot0(void);
- void IO_SetDbReset(void);
- void IO_ClearDbReset(void);
- bool IO_BtnDefaultPressed(void);
- #endif
|