Both use CAN and UAVCAN at the same time?

Hi there!
I plan to use UAVCAN (/can0) and a normal CANbus (/can1) in my configuration. Is this option possible in PX4?
I read somewhere in the user manual that UAVCAN must be disabled before using CAN so that there is no conflicts.
I currently use UAVCAN for GPS and airspeed sensor.
I need the CANbus to read data from the MMW radar NRA24

The question is is it possible to use the CAN1 port for UAVCAN and CAN2 for standard CANbus devices at the same time?

This question exists because of the contents of the file /boards/…/src/can.c
Where the following is stated:

#if defined(CONFIG_STM32_CAN1) && defined(CONFIG_STM32_CAN2)
# warning "Both CAN1 and CAN2 are enabled.  Assuming only CAN1."
# undef CONFIG_STM32_CAN2
#endif

#ifdef CONFIG_STM32_CAN1
# define CAN_PORT 1
#else
# define CAN_PORT 2
#endif

According to these headers the program automatically deactivates one of the CAN ports and only one is used. Or am I reading it wrong?

@junwoo0914 Do you know?

Note:
UAVCAN uses only CAN 2.0B frame format (29-bit identifiers). UAVCAN can share the same bus with other protocols based on CAN 2.0A (11-bit identifiers).

Hi,
I am facing the same problem right now. Did you get it to work, and if so how did you do it?
Any help is appreciated.

Thanks in advance!