mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-03 14:43:48 +08:00
eefc084302
version: sunnypilot v2025.003.000 (dev) date: 2025-12-18T05:48:43 master commit: 16c052af0835f049a67b80251d8cc1114fc08bb4
23 lines
627 B
C
23 lines
627 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;
|
|
|
|
// heartbeat state
|
|
extern uint32_t heartbeat_counter;
|
|
extern bool heartbeat_lost;
|
|
extern bool heartbeat_disabled;
|
|
|
|
// siren state
|
|
extern bool siren_enabled;
|