2019-07-24 06:07:06 +08:00
|
|
|
// ******************** Prototypes ********************
|
|
|
|
typedef void (*board_init)(void);
|
|
|
|
typedef void (*board_enable_can_transciever)(uint8_t transciever, bool enabled);
|
|
|
|
typedef void (*board_enable_can_transcievers)(bool enabled);
|
|
|
|
typedef void (*board_set_led)(uint8_t color, bool enabled);
|
|
|
|
typedef void (*board_set_usb_power_mode)(uint8_t mode);
|
|
|
|
typedef void (*board_set_esp_gps_mode)(uint8_t mode);
|
|
|
|
typedef void (*board_set_can_mode)(uint8_t mode);
|
2019-11-22 08:47:49 +08:00
|
|
|
typedef void (*board_usb_power_mode_tick)(uint32_t uptime);
|
2019-07-24 06:07:06 +08:00
|
|
|
typedef bool (*board_check_ignition)(void);
|
2019-10-26 07:22:42 +08:00
|
|
|
typedef uint32_t (*board_read_current)(void);
|
|
|
|
typedef void (*board_set_ir_power)(uint8_t percentage);
|
|
|
|
typedef void (*board_set_fan_power)(uint8_t percentage);
|
2019-11-05 09:26:37 +08:00
|
|
|
typedef void (*board_set_phone_power)(bool enabled);
|
2019-07-24 06:07:06 +08:00
|
|
|
|
|
|
|
struct board {
|
|
|
|
const char *board_type;
|
|
|
|
const harness_configuration *harness_config;
|
|
|
|
board_init init;
|
|
|
|
board_enable_can_transciever enable_can_transciever;
|
|
|
|
board_enable_can_transcievers enable_can_transcievers;
|
|
|
|
board_set_led set_led;
|
|
|
|
board_set_usb_power_mode set_usb_power_mode;
|
|
|
|
board_set_esp_gps_mode set_esp_gps_mode;
|
|
|
|
board_set_can_mode set_can_mode;
|
|
|
|
board_usb_power_mode_tick usb_power_mode_tick;
|
|
|
|
board_check_ignition check_ignition;
|
2019-10-26 07:22:42 +08:00
|
|
|
board_read_current read_current;
|
|
|
|
board_set_ir_power set_ir_power;
|
|
|
|
board_set_fan_power set_fan_power;
|
2019-11-05 09:26:37 +08:00
|
|
|
board_set_phone_power set_phone_power;
|
2019-07-24 06:07:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// ******************* Definitions ********************
|
2019-08-29 03:57:42 +08:00
|
|
|
// These should match the enums in cereal/log.capnp and __init__.py
|
2019-07-24 06:07:06 +08:00
|
|
|
#define HW_TYPE_UNKNOWN 0U
|
|
|
|
#define HW_TYPE_WHITE_PANDA 1U
|
|
|
|
#define HW_TYPE_GREY_PANDA 2U
|
|
|
|
#define HW_TYPE_BLACK_PANDA 3U
|
|
|
|
#define HW_TYPE_PEDAL 4U
|
2019-10-26 07:22:42 +08:00
|
|
|
#define HW_TYPE_UNO 5U
|
2019-07-24 06:07:06 +08:00
|
|
|
|
|
|
|
// LED colors
|
|
|
|
#define LED_RED 0U
|
|
|
|
#define LED_GREEN 1U
|
|
|
|
#define LED_BLUE 2U
|
|
|
|
|
2019-10-03 02:48:40 +08:00
|
|
|
// USB power modes (from cereal.log.health)
|
2019-10-05 01:48:17 +08:00
|
|
|
#define USB_POWER_NONE 0U
|
|
|
|
#define USB_POWER_CLIENT 1U
|
|
|
|
#define USB_POWER_CDP 2U
|
|
|
|
#define USB_POWER_DCP 3U
|
2019-07-24 06:07:06 +08:00
|
|
|
|
|
|
|
// ESP modes
|
|
|
|
#define ESP_GPS_DISABLED 0U
|
|
|
|
#define ESP_GPS_ENABLED 1U
|
|
|
|
#define ESP_GPS_BOOTMODE 2U
|
|
|
|
|
|
|
|
// CAN modes
|
|
|
|
#define CAN_MODE_NORMAL 0U
|
|
|
|
#define CAN_MODE_GMLAN_CAN2 1U
|
|
|
|
#define CAN_MODE_GMLAN_CAN3 2U
|
|
|
|
#define CAN_MODE_OBD_CAN2 3U
|
|
|
|
|
|
|
|
// ********************* Globals **********************
|
2019-10-05 01:48:17 +08:00
|
|
|
uint8_t usb_power_mode = USB_POWER_NONE;
|
2019-10-31 09:30:00 +08:00
|
|
|
|
|
|
|
// ************ Board function prototypes *************
|
|
|
|
bool board_has_gps(void);
|
|
|
|
bool board_has_gmlan(void);
|
|
|
|
bool board_has_obd(void);
|
|
|
|
bool board_has_lin(void);
|
|
|
|
bool board_has_rtc(void);
|
|
|
|
bool board_has_relay(void);
|