boards/nucleo-f410: initial support#6025
Conversation
cpu/stm32f4/periph/timer.c
Outdated
|
|
||
| void TIMER_0_ISR(void) | ||
| { | ||
| #if TIMER_0_EN |
There was a problem hiding this comment.
Please change to
#ifdef TIMER_0_ISR
void TIMER_0_ISR(void)
{
irq_handler(TIMER_0, TIMER_0_DEV);
}
#endif|
Appart from the minor remark I think everything is in order here.. |
|
Looks fine though I'd like to check hwrng on stm32f4 before merge. Already started Murdock. |
|
@aabadie relic unittests overflow ROM on that device. Please blacklist. |
|
@PeterKietzmann, updated the tests. Let's see what Murdock says. |
7fdd0b6 to
87aea7a
Compare
|
@aabadie let's wait for #4780. Otherwise @haukepetersen's todo list with SPI rework will grow bigger and bigger. Sorry for the delay |
|
@PeterKietzmann np the delay due to #4780 was expected. |
b967fea to
ae16b6b
Compare
|
No PWM is configured, I guess it is normal. I tested :
Everything is OK. |
We could configure some on the ST Morpho connectors but none are available on the arduino connectors. |
|
Is this a nucleo32, 64, 144? should be in the folder's name? |
nucleo 64. This is the implicit convention I choosed (see comment):
|
|
Why did Jenkins build this correctly? |
Maybe it didn't trigger a new build in case of a conflict. |
8a4151e to
225f579
Compare
501cd88 to
d437e82
Compare
|
Ups, I think this broke #6740. Can you re-sort alphabetically the |
|
@kYc0o good catch. For unittest, it's ok not for relic. |
We have plenty of nucleo boards. This PR ports nucleo64 f410 to RIOT.
Contrary to other STM32f4 already available in RIOT, the STM32f410rb RCC peripheral doesn't use the same register for RNG. I made a small change to make this configurable in the periph_cpu.h file.