MPLAB 中的文件类型 mainp24f.c 在哪里?

Where is file type mainp24f.c in MPLAB?

我才刚刚开始(又一次!)Programming 16-bit Microcontrollers in C, Learning to Fly the PIC24

自从我上次使用 MPLAB 以来,它发生了一些变化!

我要做的第一件事就是安装 C30 或 XC16 编译器。我安装了 XC16 编译器,不久之后我得到如下指示:

From the MPLAB X main menu, select: File> NewFile...

  1. Choose File Type: in the categories panel, expand the Microchip Embedded folder and click on the C30 compiler. In the file types panel select the mainp24f.c type.

唯一的选择是main.c

我从这里 (https://www.microchip.com/development-tools/downloads-archive) 安装了 C30 编译器,但仍然只看到 main.c 选项。

我做错了什么?

您链接的书已有 6 年历史,因此这些说明很可能会因 toolchains/IDE 的新版本而变得过时。

实际上,您的 .c 文件叫什么并不重要。只要有一个main()函数就可以进入。使用 "main.c" 它给你应该没问题。

如果可能的话,我也建议使用 XC16。 C30 不再更新,现在被视为旧版

使用这些代码示例和用户指南开始使用 16 位 PIC 设备。

面向嵌入式工程师的 MPLAB® XC16 用户指南:http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en584558

面向嵌入式工程师的 MPLAB® XC16 用户指南代码示例:http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en584564