STM32F10x Standard Peripherals Library  3.5.0
CAN_filter_scale

Defines

#define CAN_FilterScale_16bit   ((uint8_t)0x00)
#define CAN_FilterScale_32bit   ((uint8_t)0x01)
#define IS_CAN_FILTER_SCALE(SCALE)

Define Documentation

#define CAN_FilterScale_16bit   ((uint8_t)0x00)

Two 16-bit filters

Definition at line 365 of file stm32f10x_can.h.

#define CAN_FilterScale_32bit   ((uint8_t)0x01)

One 32-bit filter

Definition at line 366 of file stm32f10x_can.h.

#define IS_CAN_FILTER_SCALE (   SCALE)
Value:
(((SCALE) == CAN_FilterScale_16bit) || \
                                    ((SCALE) == CAN_FilterScale_32bit))

Definition at line 368 of file stm32f10x_can.h.