stsw-stm32054_STM32F10x standard peripheral library3.5.0 실행시
ST 예제 실행시
Workspace의 EVAL 보드 설정에 따라
포함되는 파일들이 달라진다.
위의 그림에서 "가"항에서 EVAL 보드의 종류 설정에 따라 포함되는 파일들이 달라진다.
임의로 파일을 포함 또는 제외시키려면 (위의 화면에서 제외되는 파일은 X 표시로 나타남)
Workspace를 닫은 후
프로젝트 파일중에서 ***.ewp 파일을 열어서 편집하고 저장한 후 Workspace를 다시 열면 된다.
위의 화면에서 stm3210e_eval_fsmc_nand.c를 제외시키고자 할 때
파일을 클릭 후 Remove해도 되나..
Project.ewp 파일에서
해당 파일에 대하여
<excluded> 아래에 STM3210E-EVAL을 추가한다.
<configuration>STM3210E-EVAL</configuration>
화면에서 stm3210e_eval_fsmc_nand.c 파일이 제외되며 X표시가 됨을 알수 있다.
수정전
///////////////////////////////////////////////////////////////////////////////////////////////////
<file>
<name>$PROJ_DIR$\..\..\..\Utilities\STM32_EVAL\STM3210E_EVAL\stm3210e_eval_fsmc_nand.c</name>
<excluded>
<configuration>STM32100B-EVAL</configuration>
<configuration>STM3210C-EVAL</configuration>
<configuration>STM3210B-EVAL</configuration>
<configuration>STM32100E-EVAL</configuration>
</excluded>
</file>
수정후
///////////////////////////////////////////////////////////////////////////////////////////////////
<file>
<name>$PROJ_DIR$\..\..\..\Utilities\STM32_EVAL\STM3210E_EVAL\stm3210e_eval_fsmc_nand.c</name>
<excluded>
<configuration>STM32100B-EVAL</configuration>
<configuration>STM3210C-EVAL</configuration>
<configuration>STM3210B-EVAL</configuration>
<configuration>STM32100E-EVAL</configuration> <==========추가함..
<configuration>STM3210E-EVAL</configuration>
</excluded>
</file>