PER Firmware
Loading...
Searching...
No Matches
pedals.h
1#ifndef PEDALS_H
2#define PEDALS_H
3
12#include <stdint.h>
13
14typedef struct {
15 uint16_t throttle;
16 uint16_t brake;
18
19extern pedal_values_t pedal_values;
20
21/* Function Prototypes */
22void pedalsPeriodic(void);
23
24#endif // PEDALS_H
void pedalsPeriodic(void)
Processes pedal sensor readings and sets faults as necessary.
Definition pedals.c:68
Definition pedals.h:14