mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-08-22 08:43:58 +08:00
18 lines
600 B
C
18 lines
600 B
C
// ////////// //
|
|
// Grey Panda //
|
|
// ////////// //
|
|
|
|
// Most hardware functionality is similar to white panda
|
|
const board board_grey = {
|
|
.board_type = "Grey",
|
|
.harness_config = &white_harness_config,
|
|
.init = white_init,
|
|
.enable_can_transciever = white_enable_can_transciever,
|
|
.enable_can_transcievers = white_enable_can_transcievers,
|
|
.set_led = white_set_led,
|
|
.set_usb_power_mode = white_set_usb_power_mode,
|
|
.set_esp_gps_mode = white_set_esp_gps_mode,
|
|
.set_can_mode = white_set_can_mode,
|
|
.usb_power_mode_tick = white_usb_power_mode_tick,
|
|
.check_ignition = white_check_ignition
|
|
}; |