Add can_api.c for efm32: wrap in presence of the base peripheral

pull/10610/head
petroborys 2019-04-26 07:17:02 +00:00 committed by adbridge
parent 63b7f0410d
commit 1188209169
3 changed files with 30 additions and 37 deletions

View File

@ -138,8 +138,12 @@ typedef enum {
#if DEVICE_CAN
typedef enum {
#ifdef CAN0_BASE
CAN_0 = (int)CAN0_BASE,
CAN_1 = (int)CAN1_BASE
#endif
#ifdef CAN1_BASE
CAN_1 = (int)CAN1_BASE,
#endif
} CANName;
#endif

View File

@ -1,32 +0,0 @@
/* mbed Microcontroller Library
* Copyright (c) 2006-2017 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MBED_CAN_DEVICE_H
#define MBED_CAN_DEVICE_H
#include "cmsis.h"
#ifdef __cplusplus
extern "C" {
#endif
#if DEVICE_CAN
#define CAN_COUNT 2 // Number of CAN peripherals
#endif // DEVICE_CAN
#endif

View File

@ -1,5 +1,5 @@
/* mbed Microcontroller Library
* Copyright (c) 2006-2017 ARM Limited
* Copyright (c) 2019 ToolSense
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -24,7 +24,6 @@
#include "pinmap_function.h"
#include "PeripheralPins.h"
#include "mbed_assert.h"
#include "can_device.h"
#include "em_cmu.h"
#include "em_can.h"
@ -48,12 +47,16 @@ void can_init_freq(can_t *obj, PinName rd, PinName td, int hz)
CMU_Clock_TypeDef cmuClock_number;
switch ((CANName)obj->instance) {
#ifdef CAN0
case CAN_0:
cmuClock_number = cmuClock_CAN0;
break;
#endif
#ifdef CAN1
case CAN_1:
cmuClock_number = cmuClock_CAN1;
break;
#endif
}
MBED_ASSERT((unsigned int)rd != NC);
@ -106,12 +109,16 @@ void can_irq_init(can_t *obj, can_irq_handler handler, uint32_t id)
int index = 0;
switch ((CANName)obj->instance) {
#ifdef CAN0
case CAN_0:
index = 0;
break;
#endif
#ifdef CAN1
case CAN_1:
index = 1;
break;
#endif
}
irq_handler = handler;
@ -124,12 +131,16 @@ void can_irq_free(can_t *obj)
CAN_MessageIntClear(obj->instance, 0xFFFFFFFF);
switch ((CANName)obj->instance) {
#ifdef CAN0
case CAN_0:
NVIC_DisableIRQ(CAN0_IRQn);
break;
#endif
#ifdef CAN1
case CAN_1:
NVIC_DisableIRQ(CAN1_IRQn);
break;
#endif
}
}
@ -149,6 +160,7 @@ int can_frequency(can_t *obj, int f)
CanInit.phaseBufferSegment1,
CanInit.phaseBufferSegment2,
CanInit.synchronisationJumpWidth);
return 0;
}
int can_write(can_t *obj, CAN_Message msg, int cc)
@ -179,6 +191,8 @@ int can_read(can_t *obj, CAN_Message *msg, int handle)
if (CAN_HasNewdata(obj->instance)) {
receiver.msgNum = 2;
receiver.extended = false;
receiver.extendedMask = false;
CAN_ReadMessage(obj->instance, CAN_RX_IF, &receiver);
@ -259,14 +273,18 @@ void can_irq_set(can_t *obj, CanIrqType type, uint32_t enable)
}
switch ((CANName)obj->instance) {
#ifdef CAN0
case CAN_0:
NVIC_SetVector(CAN0_IRQn, CAN0_IRQHandler);
NVIC_EnableIRQ(CAN0_IRQn);
break;
#endif
#ifdef CAN1
case CAN_1:
NVIC_SetVector(CAN1_IRQn, CAN1_IRQHandler);
NVIC_EnableIRQ(CAN1_IRQn);
break;
#endif
}
}
@ -286,16 +304,19 @@ static void can_irq(CANName name, int id)
}
}
#ifdef CAN0
void CAN0_IRQHandler(void)
{
can_irq(CAN_0, 0);
}
#endif
#ifdef CAN1
void CAN1_IRQHandler(void)
{
can_irq(CAN_1, 1);
}
#endif
const PinMap *can_rd_pinmap()
{