mirror of
https://github.com/infiniteCable2/panda.git
synced 2026-02-18 17:23:52 +08:00
* remove DPANDA * -22 * lil more * canfd * lil more * update cppcheck * uart cleanup * always harness * sbu sense * lil more * enable spi * rm ENABLE_SPI
24 lines
685 B
C
24 lines
685 B
C
#pragma once
|
|
|
|
// ******************** Prototypes ********************
|
|
void print(const char *a);
|
|
void puth(unsigned int i);
|
|
typedef struct board board;
|
|
typedef struct harness_configuration harness_configuration;
|
|
void pwm_init(TIM_TypeDef *TIM, uint8_t channel);
|
|
void pwm_set(TIM_TypeDef *TIM, uint8_t channel, uint8_t percentage);
|
|
|
|
// ********************* Globals **********************
|
|
extern uint8_t hw_type;
|
|
extern board *current_board;
|
|
extern uint32_t uptime_cnt;
|
|
extern bool green_led_enabled;
|
|
|
|
// heartbeat state
|
|
extern uint32_t heartbeat_counter;
|
|
extern bool heartbeat_lost;
|
|
extern bool heartbeat_disabled; // set over USB
|
|
|
|
// siren state
|
|
extern bool siren_enabled;
|