【问题标题】:For Msp430 controller coding [closed]对于 Msp430 控制器编码 [关闭]
【发布时间】:2016-07-13 12:30:52
【问题描述】:

".x.c.swp .ccsproject .cdtbuild .cdtproject .project x.c x.h hardware.h .cmd readme.txt" 这些文件是我评估板的源文件。 我该如何处理这些文件?

【问题讨论】:

  • 我会尝试用礼貌的“嗨。你好吗?”。抱歉……不清楚你的问题是什么。
  • 代码作曲家工作室?
  • 您应该找到一份 Code Composer Studio (CCS) 副本,它是德州仪器 (TI) 用于嵌入式开发的 IDE。它基于 Eclipse。我只在商业上使用它,但我认为您可以获得免费的学生/非营利许可证,但不确定。

标签: c++ c gcc msp430 code-composer


【解决方案1】:

给定以下文件列表:

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

我不能绝对肯定,因为我面前没有实际的文件。但这是我(根据经验)的期望:

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

【讨论】:

  • 感谢您的回复,这让我了解了我拥有的文件以及如何处理这些文件。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2011-10-13
  • 1970-01-01
  • 2015-12-28
  • 1970-01-01
  • 1970-01-01
  • 2018-08-09
  • 2012-09-26
相关资源
最近更新 更多