2016-07-13 16 views
1

".x.c.swp .ccsproject .cdtbuild .cdtproject .project x.c x.h hardware.h .cmd readme.txt"これらは評価用ボードのソースファイルとして提供されたファイルです。 どのようにこれらのファイルにアプローチできますか?私は私のインフロント実際のファイルを持っていないとして、私は、絶対に確認することはできませんMsp430コントローラのコーディング

.x.c.swp .ccsproject .cdtbuild .cdtproject .project x.c x.h hardware.h .cmd readme.txt 

+0

グーグルCDTをお試しください。 – a3f

+0

私は礼儀正しい "Hi。How are you?"と試してみます。申し訳ありません...あなたの質問は何であるかはっきりしていません。 – user463035818

+1

コードコンポーザースタジオ? – user3528438

答えて

2

は、次のファイルのリストを与えられました。ここには私の(経験に基づく)期待値があります:

x.c 
a C source code file 
shows how to write a C source file for the MSP430 

x.h 
a C header file for the `x.c` source file 
shows how to write a C header file for the MSP430 

hardware.h 
a header file that contains: 
all the peripheral addresses 
names for all the hardware registers the compiler will recognize 
for the MSP430 

.x.c.swp 
This is a file created by the editing of the `x.c` file 
you can ignore this file 

.ccsproject 
.cdtbuild 
.cdtproject 
.project 
skeletons of files that the Code Composer Studio IDE 
will create when a `project` for your program is created 
A project is a way to keep a list of the files (and related info) about a program in one place 

.cmd 
This is a skeleton linker command file for any MSP430 program 
The documentation will tell you how to write a `project.cmd` file 
for your own program. 

readme.txt 
This is a text file that tells you some details about the files, 
that were supplied by the manufacture of the IDE and the MSP430 
+0

あなたの回答をありがとう、これは私が持っているファイルとそのファイルにアプローチする方法についてのアイデアを与えます。 –

関連する問題