17 lines
255 B
C
17 lines
255 B
C
|
|
#ifndef BUTTON_BSP_H
|
||
|
|
#define BUTTON_BSP_H
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include "buttons/multi_button.h"
|
||
|
|
|
||
|
|
|
||
|
|
#define BOOT_KEY_PIN 0
|
||
|
|
|
||
|
|
#define Button_PIN1 BOOT_KEY_PIN
|
||
|
|
|
||
|
|
extern PressEvent BOOT_KEY_State;
|
||
|
|
|
||
|
|
void button_Init(void);
|
||
|
|
|
||
|
|
#endif
|