Build problem FRDM-KL25Z

조회 수: 2 (최근 30일)
Adrian Haltenberger
Adrian Haltenberger 2016년 12월 2일
답변: James Kristoff 2017년 1월 31일
Hi dear community,
we would like to build our code and write to the microcontroller. It fails every time. We do not know why. Please help us by analysing the error log attached.
If you have additional information, which could help us. Please do not hesitate to answer our thread.
Sincerely, Adrian

답변 (1개)

James Kristoff
James Kristoff 2017년 1월 31일
The error you have in the attached log is caused by the included path:
-IH:/Freescale Bilder/Quelldateien
Because this path has a space in it, and is not encapsulates in quotation marks, "", the compiler sees it as two statements:
-IH:/Freescale
Bilder/Quelldateien
But it cannot find this path. I am not sure if this path is part of the support package, or part of a custom block that your group has created. If it is an include path that you have added, then you need to wrap it with quotation marks, or change the file name to eliminate spaces:
-I"H:/Freescale Bilder/Quelldateien"
or
-IH:/Freescale_Bilder/Quelldateien

카테고리

Help CenterFile Exchange에서 Create System Objects에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by