2023-03-04 19:11:45 -08:00
|
|
|
/**
|
|
|
|
* can_gpio.h
|
|
|
|
*/
|
2023-03-04 17:50:22 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "efifeatures.h"
|
|
|
|
|
|
|
|
#if EFI_CAN_GPIO
|
|
|
|
// not number of pins but number of entities in IO module set
|
|
|
|
#define BOARD_CAN_GPIO_COUNT 1
|
|
|
|
#else
|
|
|
|
#define BOARD_CAN_GPIO_COUNT 0
|
2023-03-04 19:11:45 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void initCanGpio();
|