Re: [xpcc-dev] Trying to get CAN working

2016-02-05 Thread Kevin Laeufer
On 05/02/16 02:59, Szabó Antal wrote: This is how I initialize Can1: GpioInputB8::connect(Can1::Rx, Gpio::InputType::PullUp); GpioOutputB9::connect(Can1::Tx, Gpio::OutputType::PushPull); Can1::initialize(9);

Re: [xpcc-dev] Trying to get CAN working

2016-02-04 Thread Niklas Hauser
Hi Antal, > I'm trying to get CAN working, and I ran into this error: > > 'Can1' is not a member of 'xpcc::stm32::SystemClock<...>' > > As a reminder, I'm using the feature/stm32f103_support_experimental > branch, which is using the experimentel system_clock branch, so that > may be the

Re: [xpcc-dev] Trying to get CAN working

2016-02-04 Thread Niklas Hauser
Hi, > Ok. > Radical idea: Forget SystemClock and configure the clock yourself. > We did this for the STM32F072, which has the same problem of not having > SystemClock support. > […] > You then are free of the SystemClock dependency and should be able to just > use the normal develop branch.