ICARUS OS (Intelligent Cooperative Architecture for Real-time Unified Systems) 0.1.0
Preemptive Real-Time Operating System for ARM Cortex-M7
Loading...
Searching...
No Matches
button.h
Go to the documentation of this file.
1
29#ifndef BSP_BUTTON_H
30#define BSP_BUTTON_H
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#include <stdbool.h>
37
52bool Button_IsPressed(void);
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif /* BSP_BUTTON_H */
bool Button_IsPressed(void)
Read the K1 user button state.
Definition button.c:28