
Arduino IDE 1.8.13 official core
Bluepill - (128k)
65HVD234 transceiver
I do get this warning:
WARNING: library eXoCAN claims to run on STM32F1 architecture(s) and may be incompatible with your current board which runs on stm32 architecture(s).
Yes I had this too, it said the example wouldn't suit my board, this is just a pretty straightforward library definition.mack wrote: Wed Jul 08, 2020 12:40 am WARNING: library eXoCAN claims to run on STM32F1 architecture(s) and may be incompatible with your current board which runs on stm32 architecture(s).
Are the STM32F105xxxx parts supported by this core?mack wrote: Thu Jul 09, 2020 4:19 am It would be very good if it could use the 2nd CAN port of the stm32F105RBT.
Btw I like the way you can select Alternate pins. In my case I did use PA11,PA12
Code: Select all
enum BitRate : uint8_t
{
BR125K = 15,
BR250K = 7,
BR500K = 3, // 500K and faster requires good electical design practice
BR1M = 1
};