Previously, the address of the CAN device (`CANbaseAddress`) was specified as a signed or unsigned integer of variable size. This made the ABI specific for each driver and is not generic enough for some use cases. Replaced all usages by using a void pointer instead. Renamed `CANbaseAddress` to `CANdevicePtr`. Refactored the code where it needed to be (some comparisons to -1). Use a pointer to a user-defined variable/structure instead of a 32-bit integer for CANbaseAddress. Renamed CANbaseAddress to CANbaseStruct to reflect that change in behavior. This is more modular and avoids casts.
548 lines
18 KiB
C
548 lines
18 KiB
C
/*
|
|
* CAN module object for ST STM32F103 microcontroller.
|
|
*
|
|
* @file CO_driver.c
|
|
* @author Janez Paternoster
|
|
* @author Ondrej Netik
|
|
* @author Vijayendra
|
|
* @author Jan van Lienden
|
|
* @copyright 2013 Janez Paternoster
|
|
*
|
|
* This file is part of CANopenNode, an opensource CANopen Stack.
|
|
* Project home page is <https://github.com/CANopenNode/CANopenNode>.
|
|
* For more information on CANopen see <http://www.can-cia.org/>.
|
|
*
|
|
* CANopenNode is free and open source software: you can redistribute
|
|
* it and/or modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Following clarification and special exception to the GNU General Public
|
|
* License is included to the distribution terms of CANopenNode:
|
|
*
|
|
* Linking this library statically or dynamically with other modules is
|
|
* making a combined work based on this library. Thus, the terms and
|
|
* conditions of the GNU General Public License cover the whole combination.
|
|
*
|
|
* As a special exception, the copyright holders of this library give
|
|
* you permission to link this library with independent modules to
|
|
* produce an executable, regardless of the license terms of these
|
|
* independent modules, and to copy and distribute the resulting
|
|
* executable under terms of your choice, provided that you also meet,
|
|
* for each linked independent module, the terms and conditions of the
|
|
* license of that module. An independent module is a module which is
|
|
* not derived from or based on this library. If you modify this
|
|
* library, you may extend this exception to your version of the
|
|
* library, but you are not obliged to do so. If you do not wish
|
|
* to do so, delete this exception statement from your version.
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32f10x_conf.h"
|
|
#include "CO_driver.h"
|
|
#include "CO_Emergency.h"
|
|
#include "led.h"
|
|
#include <string.h>
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* Private define ------------------------------------------------------------*/
|
|
/* Private variable ----------------------------------------------------------*/
|
|
/* Private function ----------------------------------------------------------*/
|
|
static void CO_CANClkSetting (void);
|
|
static void CO_CANconfigGPIO (void);
|
|
static void CO_CANsendToModule(CO_CANmodule_t *CANmodule, CO_CANtx_t *buffer, uint8_t transmit_mailbox);
|
|
|
|
void InitCanLeds(void)
|
|
{
|
|
vLED_InitRCC();
|
|
vLED_InitPort();
|
|
}
|
|
|
|
void CanLedsSet(eCoLeds led)
|
|
{
|
|
if (led & eCoLed_Green)
|
|
vLED_OnPB14Led();
|
|
else
|
|
vLED_OffPB14Led();
|
|
|
|
if (led & eCoLed_Red)
|
|
vLED_OnPB15Led();
|
|
else
|
|
vLED_OffPB15Led();
|
|
|
|
}
|
|
|
|
/*******************************************************************************
|
|
Macro and Constants - CAN module registers
|
|
*******************************************************************************/
|
|
|
|
|
|
/******************************************************************************/
|
|
void CO_CANsetConfigurationMode(void *CANdevicePtr){
|
|
}
|
|
|
|
|
|
/******************************************************************************/
|
|
void CO_CANsetNormalMode(CO_CANmodule_t *CANmodule){
|
|
CANmodule->CANnormal = true;
|
|
}
|
|
|
|
|
|
/******************************************************************************/
|
|
CO_ReturnError_t CO_CANmodule_init(
|
|
CO_CANmodule_t *CANmodule,
|
|
void *CANdevicePtr,
|
|
CO_CANrx_t rxArray[],
|
|
uint16_t rxSize,
|
|
CO_CANtx_t txArray[],
|
|
uint16_t txSize,
|
|
uint16_t CANbitRate)
|
|
{
|
|
CAN_InitTypeDef CAN_InitStruct;
|
|
CAN_FilterInitTypeDef CAN_FilterInitStruct;
|
|
NVIC_InitTypeDef NVIC_InitStructure;
|
|
int i;
|
|
uint8_t result;
|
|
|
|
/* verify arguments */
|
|
if(CANmodule==NULL || rxArray==NULL || txArray==NULL){
|
|
return CO_ERROR_ILLEGAL_ARGUMENT;
|
|
}
|
|
|
|
CANmodule->CANdevicePtr = CANdevicePtr;
|
|
CANmodule->rxArray = rxArray;
|
|
CANmodule->rxSize = rxSize;
|
|
CANmodule->txArray = txArray;
|
|
CANmodule->txSize = txSize;
|
|
CANmodule->CANnormal = false;
|
|
CANmodule->useCANrxFilters = false;
|
|
CANmodule->bufferInhibitFlag = 0;
|
|
CANmodule->firstCANtxMessage = 1;
|
|
CANmodule->CANtxCount = 0;
|
|
CANmodule->errOld = 0;
|
|
CANmodule->em = 0;
|
|
|
|
// Replaced magic number 0x03 by (CAN_IT_TME | CAN_IT_FMP0) JvL
|
|
CAN_ITConfig(CANmodule->CANdevicePtr, (CAN_IT_TME | CAN_IT_FMP0), DISABLE);
|
|
|
|
for (i = 0; i < rxSize; i++)
|
|
{
|
|
CANmodule->rxArray[i].ident = 0;
|
|
CANmodule->rxArray[i].pFunct = 0;
|
|
}
|
|
for (i = 0; i < txSize; i++)
|
|
{
|
|
CANmodule->txArray[i].bufferFull = 0;
|
|
}
|
|
|
|
/* CO - VJ Changed */
|
|
/* Setting Clock of CAN HW */
|
|
CO_CANClkSetting();
|
|
|
|
/* GPIO Config for CAN */
|
|
CO_CANconfigGPIO();
|
|
|
|
/* Init CAN controler */
|
|
CAN_DeInit(CANmodule->CANdevicePtr);
|
|
CAN_StructInit(&CAN_InitStruct);
|
|
switch (CANbitRate)
|
|
{
|
|
case 1000: CAN_InitStruct.CAN_Prescaler = 2;
|
|
break;
|
|
case 500: CAN_InitStruct.CAN_Prescaler = 4;
|
|
break;
|
|
default:
|
|
case 250: CAN_InitStruct.CAN_Prescaler = 8;
|
|
break;
|
|
case 125: CAN_InitStruct.CAN_Prescaler = 16;
|
|
break;
|
|
case 100: CAN_InitStruct.CAN_Prescaler = 20;
|
|
break;
|
|
case 50: CAN_InitStruct.CAN_Prescaler = 40;
|
|
break;
|
|
case 20: CAN_InitStruct.CAN_Prescaler = 100;
|
|
break;
|
|
case 10: CAN_InitStruct.CAN_Prescaler = 200;
|
|
break;
|
|
}
|
|
CAN_InitStruct.CAN_SJW = CAN_SJW_4tq; // changed by VJ, old value = CAN_SJW_1tq;
|
|
CAN_InitStruct.CAN_BS1 = CAN_BS1_12tq; // changed by VJ, old value = CAN_BS1_3tq;
|
|
CAN_InitStruct.CAN_BS2 = CAN_BS2_5tq; // changed by VJ, old value = CAN_BS2_2tq;
|
|
CAN_InitStruct.CAN_NART = ENABLE; // No Automatic retransmision
|
|
|
|
/* CO - Changed VJ Start */
|
|
result = CAN_Init(CANmodule->CANdevicePtr, &CAN_InitStruct);
|
|
if (result == 0)
|
|
{
|
|
// TRACE_DEBUG_WP("res=%d\n\r", result);
|
|
return CO_ERROR_TIMEOUT; /* CO- Return Init failed */
|
|
}
|
|
/* CO - Changed VJ End */
|
|
|
|
memset(&CAN_FilterInitStruct, 0, sizeof (CAN_FilterInitStruct));
|
|
CAN_FilterInitStruct.CAN_FilterNumber = 0;
|
|
CAN_FilterInitStruct.CAN_FilterIdHigh = 0;
|
|
CAN_FilterInitStruct.CAN_FilterIdLow = 0;
|
|
CAN_FilterInitStruct.CAN_FilterMaskIdHigh = 0;
|
|
CAN_FilterInitStruct.CAN_FilterMaskIdLow = 0;
|
|
CAN_FilterInitStruct.CAN_FilterFIFOAssignment = 0; // pouzivame jen FIFO0
|
|
CAN_FilterInitStruct.CAN_FilterMode = CAN_FilterMode_IdMask;
|
|
CAN_FilterInitStruct.CAN_FilterScale = CAN_FilterScale_32bit;
|
|
CAN_FilterInitStruct.CAN_FilterActivation = ENABLE;
|
|
CAN_FilterInit(&CAN_FilterInitStruct);
|
|
|
|
|
|
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
|
|
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
|
|
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
|
|
// preruseni od prijimace == interrupts from receiver
|
|
NVIC_InitStructure.NVIC_IRQChannel = CAN1_RX0_INTERRUPTS;
|
|
NVIC_Init(&NVIC_InitStructure);
|
|
// preruseni od vysilace == interrupts from transmitter
|
|
NVIC_InitStructure.NVIC_IRQChannel = CAN1_TX_INTERRUPTS;
|
|
NVIC_Init(&NVIC_InitStructure);
|
|
|
|
// CAN_OperatingModeRequest(CANmodule->CANdevicePtr, CAN_Mode_Normal); // Not needed as after init Can_init functions puts the controller in normal mode - VJ
|
|
|
|
CAN_ITConfig(CANmodule->CANdevicePtr, 0x03, ENABLE);
|
|
|
|
return CO_ERROR_NO;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
void CO_CANmodule_disable(CO_CANmodule_t *CANmodule)
|
|
{
|
|
CAN_DeInit(CANmodule->CANdevicePtr);
|
|
}
|
|
|
|
/******************************************************************************/
|
|
CO_ReturnError_t CO_CANrxBufferInit(
|
|
CO_CANmodule_t *CANmodule,
|
|
uint16_t index,
|
|
uint16_t ident,
|
|
uint16_t mask,
|
|
int8_t rtr,
|
|
void *object,
|
|
void (*pFunct)(void *object, CO_CANrxMsg_t *message))
|
|
{
|
|
CO_CANrx_t *rxBuffer;
|
|
//CanRxMsg *rxBuffer;
|
|
uint16_t RXF, RXM;
|
|
|
|
//safety
|
|
if (!CANmodule || !object || !pFunct || index >= CANmodule->rxSize)
|
|
{
|
|
return CO_ERROR_ILLEGAL_ARGUMENT;
|
|
}
|
|
|
|
//buffer, which will be configured
|
|
rxBuffer = CANmodule->rxArray + index;
|
|
|
|
//Configure object variables
|
|
rxBuffer->object = object;
|
|
rxBuffer->pFunct = pFunct;
|
|
|
|
|
|
//CAN identifier and CAN mask, bit aligned with CAN module registers
|
|
RXF = (ident & 0x07FF) << 2;
|
|
if (rtr) RXF |= 0x02;
|
|
RXM = (mask & 0x07FF) << 2;
|
|
RXM |= 0x02;
|
|
|
|
//configure filter and mask
|
|
if (RXF != rxBuffer->ident || RXM != rxBuffer->mask)
|
|
{
|
|
rxBuffer->ident = RXF;
|
|
rxBuffer->mask = RXM;
|
|
}
|
|
|
|
return CO_ERROR_NO;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
CO_CANtx_t *CO_CANtxBufferInit(
|
|
CO_CANmodule_t *CANmodule,
|
|
uint16_t index,
|
|
uint16_t ident,
|
|
int8_t rtr,
|
|
uint8_t noOfBytes,
|
|
int8_t syncFlag)
|
|
{
|
|
uint32_t TXF;
|
|
CO_CANtx_t *buffer;
|
|
|
|
//safety
|
|
if (!CANmodule || CANmodule->txSize <= index) return 0;
|
|
|
|
//get specific buffer
|
|
buffer = &CANmodule->txArray[index];
|
|
|
|
//CAN identifier, bit aligned with CAN module registers
|
|
|
|
TXF = ident << 21;
|
|
TXF &= 0xFFE00000;
|
|
if (rtr) TXF |= 0x02;
|
|
|
|
//write to buffer
|
|
buffer->ident = TXF;
|
|
buffer->DLC = noOfBytes;
|
|
buffer->bufferFull = 0;
|
|
buffer->syncFlag = syncFlag ? 1 : 0;
|
|
|
|
return buffer;
|
|
}
|
|
|
|
int8_t getFreeTxBuff(CO_CANmodule_t *CANmodule)
|
|
{
|
|
uint8_t txBuff = CAN_TXMAILBOX_0;
|
|
|
|
//if (CAN_TransmitStatus(CANmodule->CANdevicePtr, txBuff) == CAN_TxStatus_Ok)
|
|
for (txBuff = CAN_TXMAILBOX_0; txBuff <= (CAN_TXMAILBOX_2 + 1); txBuff++)
|
|
{
|
|
switch (txBuff)
|
|
{
|
|
case (CAN_TXMAILBOX_0 ):
|
|
if (CANmodule->CANdevicePtr->TSR & CAN_TSR_TME0 )
|
|
return txBuff;
|
|
else
|
|
break;
|
|
case (CAN_TXMAILBOX_1 ):
|
|
if (CANmodule->CANdevicePtr->TSR & CAN_TSR_TME1 )
|
|
return txBuff;
|
|
else
|
|
break;
|
|
case (CAN_TXMAILBOX_2 ):
|
|
if (CANmodule->CANdevicePtr->TSR & CAN_TSR_TME2 )
|
|
return txBuff;
|
|
else
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
CO_ReturnError_t CO_CANsend(CO_CANmodule_t *CANmodule, CO_CANtx_t *buffer)
|
|
{
|
|
CO_ReturnError_t err = CO_ERROR_NO;
|
|
int8_t txBuff;
|
|
|
|
/* Verify overflow */
|
|
if(buffer->bufferFull)
|
|
{
|
|
if(!CANmodule->firstCANtxMessage)/* don't set error, if bootup message is still on buffers */
|
|
CO_errorReport((CO_EM_t*)CANmodule->em, CO_EM_CAN_TX_OVERFLOW, CO_EMC_CAN_OVERRUN, 0);
|
|
err = CO_ERROR_TX_OVERFLOW;
|
|
}
|
|
|
|
CO_LOCK_CAN_SEND();
|
|
//if CAN TB buffer0 is free, copy message to it
|
|
txBuff = getFreeTxBuff(CANmodule);
|
|
// #error change this - use only one buffer for transmission - see generic driver
|
|
if(txBuff != -1 && CANmodule->CANtxCount == 0)
|
|
{
|
|
CANmodule->bufferInhibitFlag = buffer->syncFlag;
|
|
CO_CANsendToModule(CANmodule, buffer, txBuff);
|
|
}
|
|
//if no buffer is free, message will be sent by interrupt
|
|
else
|
|
{
|
|
buffer->bufferFull = 1;
|
|
CANmodule->CANtxCount++;
|
|
// vsechny buffery jsou plny, musime povolit preruseni od vysilace, odvysilat az v preruseni
|
|
CAN_ITConfig(CANmodule->CANdevicePtr, CAN_IT_TME, ENABLE);
|
|
}
|
|
CO_UNLOCK_CAN_SEND();
|
|
|
|
return err;
|
|
}
|
|
|
|
/******************************************************************************/
|
|
void CO_CANclearPendingSyncPDOs(CO_CANmodule_t *CANmodule)
|
|
{
|
|
|
|
/* See generic driver for implemetation. */
|
|
}
|
|
|
|
/******************************************************************************/
|
|
void CO_CANverifyErrors(CO_CANmodule_t *CANmodule)
|
|
{
|
|
uint32_t err;
|
|
CO_EM_t* em = (CO_EM_t*)CANmodule->em;
|
|
|
|
err = CANmodule->CANdevicePtr->ESR;
|
|
// if(CAN_REG(CANmodule->CANdevicePtr, C_INTF) & 4) err |= 0x80;
|
|
|
|
if(CANmodule->errOld != err)
|
|
{
|
|
CANmodule->errOld = err;
|
|
|
|
//CAN RX bus overflow
|
|
if(CANmodule->CANdevicePtr->RF0R & 0x08)
|
|
{
|
|
CO_errorReport(em, CO_EM_CAN_RXB_OVERFLOW, CO_EMC_CAN_OVERRUN, err);
|
|
CANmodule->CANdevicePtr->RF0R &=~0x08;//clear bits
|
|
}
|
|
|
|
//CAN TX bus off
|
|
if(err & 0x04) CO_errorReport(em, CO_EM_CAN_TX_BUS_OFF, CO_EMC_BUS_OFF_RECOVERED, err);
|
|
else CO_errorReset(em, CO_EM_CAN_TX_BUS_OFF, err);
|
|
|
|
//CAN TX or RX bus passive
|
|
if(err & 0x02)
|
|
{
|
|
if(!CANmodule->firstCANtxMessage) CO_errorReport(em, CO_EM_CAN_TX_BUS_PASSIVE, CO_EMC_CAN_PASSIVE, err);
|
|
}
|
|
else
|
|
{
|
|
// int16_t wasCleared;
|
|
/* wasCleared = */CO_errorReset(em, CO_EM_CAN_TX_BUS_PASSIVE, err);
|
|
/* if(wasCleared == 1) */CO_errorReset(em, CO_EM_CAN_TX_OVERFLOW, err);
|
|
}
|
|
|
|
|
|
//CAN TX or RX bus warning
|
|
if(err & 0x01)
|
|
{
|
|
CO_errorReport(em, CO_EM_CAN_BUS_WARNING, CO_EMC_NO_ERROR, err);
|
|
}
|
|
else
|
|
{
|
|
CO_errorReset(em, CO_EM_CAN_BUS_WARNING, err);
|
|
}
|
|
}
|
|
}
|
|
|
|
/******************************************************************************/
|
|
// Interrupt from Receiver
|
|
void CO_CANinterrupt_Rx(CO_CANmodule_t *CANmodule)
|
|
{
|
|
CanRxMsg CAN1_RxMsg;
|
|
|
|
CAN_Receive(CANmodule->CANdevicePtr, CAN_FilterFIFO0, &CAN1_RxMsg);
|
|
{
|
|
uint16_t index;
|
|
uint8_t msgMatched = 0;
|
|
CO_CANrx_t *msgBuff = CANmodule->rxArray;
|
|
for (index = 0; index < CANmodule->rxSize; index++)
|
|
{
|
|
uint16_t msg = (CAN1_RxMsg.StdId << 2) | (CAN1_RxMsg.RTR ? 2 : 0);
|
|
if (((msg ^ msgBuff->ident) & msgBuff->mask) == 0)
|
|
{
|
|
msgMatched = 1;
|
|
break;
|
|
}
|
|
msgBuff++;
|
|
}
|
|
//Call specific function, which will process the message
|
|
if (msgMatched && msgBuff->pFunct)
|
|
msgBuff->pFunct(msgBuff->object, &CAN1_RxMsg);
|
|
}
|
|
}
|
|
|
|
/******************************************************************************/
|
|
// Interrupt from Transeiver
|
|
void CO_CANinterrupt_Tx(CO_CANmodule_t *CANmodule)
|
|
{
|
|
|
|
int8_t txBuff;
|
|
/* Clear interrupt flag */
|
|
CAN_ITConfig(CANmodule->CANdevicePtr, CAN_IT_TME, DISABLE); // Transmit mailbox empty interrupt
|
|
/* First CAN message (bootup) was sent successfully */
|
|
CANmodule->firstCANtxMessage = 0;
|
|
/* clear flag from previous message */
|
|
CANmodule->bufferInhibitFlag = 0;
|
|
/* Are there any new messages waiting to be send */
|
|
if(CANmodule->CANtxCount > 0)
|
|
{
|
|
uint16_t i; /* index of transmitting message */
|
|
|
|
/* first buffer */
|
|
CO_CANtx_t *buffer = CANmodule->txArray;
|
|
/* search through whole array of pointers to transmit message buffers. */
|
|
for(i = CANmodule->txSize; i > 0; i--)
|
|
{
|
|
/* if message buffer is full, send it. */
|
|
if(buffer->bufferFull)
|
|
{
|
|
buffer->bufferFull = 0;
|
|
CANmodule->CANtxCount--;
|
|
txBuff = getFreeTxBuff(CANmodule); //VJ
|
|
/* Copy message to CAN buffer */
|
|
CANmodule->bufferInhibitFlag = buffer->syncFlag;
|
|
CO_CANsendToModule(CANmodule, buffer, txBuff);
|
|
break; /* exit for loop */
|
|
}
|
|
buffer++;
|
|
}/* end of for loop */
|
|
|
|
/* Clear counter if no more messages */
|
|
if(i == 0) CANmodule->CANtxCount = 0;
|
|
}
|
|
}
|
|
|
|
/******************************************************************************/
|
|
void CO_CANinterrupt_Status(CO_CANmodule_t *CANmodule)
|
|
{
|
|
// status is evalved with pooling
|
|
}
|
|
|
|
/******************************************************************************/
|
|
static void CO_CANsendToModule(CO_CANmodule_t *CANmodule, CO_CANtx_t *buffer, uint8_t transmit_mailbox)
|
|
{
|
|
|
|
CanTxMsg CAN1_TxMsg;
|
|
int i;
|
|
|
|
/*Test code, VJ using Drivers Start*/
|
|
CAN1_TxMsg.IDE = CAN_ID_STD;
|
|
CAN1_TxMsg.DLC = buffer->DLC;
|
|
for (i = 0; i < 8; i++) CAN1_TxMsg.Data[i] = buffer->data[i];
|
|
CAN1_TxMsg.StdId = ((buffer->ident) >> 21);
|
|
CAN1_TxMsg.RTR = CAN_RTR_DATA;
|
|
|
|
CAN_Transmit(CANmodule->CANdevicePtr, &CAN1_TxMsg);
|
|
CAN_ITConfig(CANmodule->CANdevicePtr, CAN_IT_TME, ENABLE);
|
|
|
|
/*Test code, VJ using Drivers End*/
|
|
|
|
}
|
|
|
|
/* CO- VJ Changed Start */
|
|
/******************************************************************************/
|
|
static void CO_CANClkSetting (void)
|
|
{
|
|
RCC_APB2PeriphClockCmd(CLOCK_GPIO_CAN | RCC_APB2Periph_AFIO, ENABLE);
|
|
RCC_APB1PeriphClockCmd(CLOCK_CAN, ENABLE);
|
|
}
|
|
|
|
/******************************************************************************/
|
|
static void CO_CANconfigGPIO (void)
|
|
{
|
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
|
|
|
/* Remap */
|
|
GPIO_PinRemapConfig(GPIO_Remapping_CAN, GPIO_CAN_Remap_State);
|
|
/* Configure CAN pin: RX */
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_CAN_RX;
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
|
|
GPIO_Init(GPIO_CAN, &GPIO_InitStructure);
|
|
/* Configure CAN pin: TX */
|
|
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_CAN_TX;
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
|
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
|
|
GPIO_Init(GPIO_CAN, &GPIO_InitStructure);
|
|
|
|
}
|
|
/* CO- VJ Change End */
|