Re: PWM advanced and normal timers (STM32)

2021-05-05 Thread raiden00pl
Could you try this PR and look if it solves a problem https://github.com/apache/incubator-nuttx/pull/3660 ? wt., 6 kwi 2021 o 08:27 napisaƂ(a): > Thank you. Then my observation was a good one. This is not like the > datasheet was telling how the driver "should" work. I was trying to solve > this

How to share code and Kconfig between different boards

2021-05-05 Thread Frank-Christian Kruegel
Hi. I've created several board support packages, each in its own out-of-tree directory. Ive configured them as custom boards with a relative path like ... +- nuttx +- apps +- company-boards | +- board1 | +- board2 | +- board3 +- company-apps | +- app1 | +- app2 ... Works fine. These bo

Re: How to share code and Kconfig between different boards

2021-05-05 Thread Matias N.
I'm not sure if there's support for custom-board common-code (in the same sense as for in-tree boards). In any case, we've introduced an external/ directory for the purpose of adding external OS level code. Simply point nuttx/external symlink to your common directory. Best, Matias On Wed, May

Re: How to share code and Kconfig between different boards

2021-05-05 Thread Abdelatif Guettouche
> I'm not sure if there's support for custom-board common-code (in the same > sense as for in-tree boards). There is, it works the same way as the in-tree boards. But I think what's being asked here is something common between different boards of different architectures? I think what you suggest