summaryrefslogtreecommitdiffstats
path: root/tinyusb/test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/event_processor.h
blob: a79e68c569a58c5a54ede0a8781bce4ab3015822 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdbool.h>

void event_deviceReset(void);
void event_volumeKnobMaxed(void);
void event_powerReadingUpdate(int powerReading);
void event_modeSelectButtonPressed(void);
void event_devicePoweredOn(void);
void event_keyboardCheckTimerExpired(void);
void event_newDataAvailable(int data);

bool eventProcessor_isLastEventComplete(void);