include soc.h in main.c
While building with Zephyr 1.12 for the nucleo_f091rc I got undefined reference to __set_MSP() during linking. Including soc.h fixes the problem. Thanks carlesc. Signed-off-by: Evan Gates <evan@gnarbox.com>
This commit is contained in:
parent
b97ec0fee8
commit
4632d8de5f
|
@ -20,6 +20,7 @@
|
||||||
#include <misc/__assert.h>
|
#include <misc/__assert.h>
|
||||||
#include <flash.h>
|
#include <flash.h>
|
||||||
#include <drivers/system_timer.h>
|
#include <drivers/system_timer.h>
|
||||||
|
#include <soc.h>
|
||||||
|
|
||||||
#include "target.h"
|
#include "target.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue