Location:
Search - MPLAB 7.
Search list
Description: 编译器:MCC18 v2.30.01 及其以上
编译环境:MPLAB 7.51
请把MpZBee文件夹拷贝到C盘根目录下才能正常编译。-compiler : MCC18 v2.30.01 and above compiler environment : Please MPLAB 7.51 MpZBee folder are copied to the directory C can be deep-rooted normal compiler.
Platform: |
Size: 1759411 |
Author: qinghui |
Hits:
Description: 1 安装:首先安装MPLAB IDE V7.42的程序,然后再安装C的组件PICC8.05-PL.安装过程中全部确认选择,完毕后重启计算机。
2 激活:(PICC8.05-PL)
运行“开始”菜单下的“HI-TECH SOFTWARE”中的 激活(Complier Activation)程序,
再同时启动算号器程序(HtkeyGen.exe),将Last Name前的勾去掉,填入公司名称,算出相应内
容填入激活程序相应栏目,OK即可完成激活。
3 设置:
3.1 将MPLAB 7.42启动后,在文件栏中打开C的桌面项目文件,在Project栏目中
检查 select language Toolsuite...中的选项,所有路径须指向安装路径如C:\\HT-PIC\\BIN\\PICC.EXE;
3.2 在Project栏目中检查 setlanguage Tool Locations中的HI-TECH ToolsuiteXDGR
相关选项,executables中各程序应指向picc.exe Default Search Paths & Directories中
的相关路径应为安装目录如C:\\HT-PIC\\include 和C:\\HT-PIC\\lib;
3.3 设置programmer中的select programmer选项为\"MPLAB IED 2\"(经验:如果不打开编译器,此选项无法选中)。
3.4 设置单片机型号,在Congfigure中的Select Device选择准确的芯片型号;
Platform: |
Size: 7612105 |
Author: smren |
Hits:
Description: C语言代码,生成3路有120度相位差的125Hz方波信号。可简单改编为多路、有均匀相位差、占空比可调的方波信号。
CPU是PIC16F73,8MHz晶振,开发环境MPLAB IDE 7.6或更高版本,需安装有PICC8编译器。
Platform: |
Size: 21607 |
Author: dafy |
Hits:
Description: 、 先在microchip网站上找到00738.zip,这个包中有
can18xx8.h,can18xx8.c,将其复制到一个你要编写程度的子目录中,例如C:\testcan下,这个时候这个东东是不能直接用的。
2、 下载一个MPLAB 7.10,直接安装(要求直接下载)
3、 再下载一个PICC18 (HI-TECH的),要正版哦(支持正版,买不起的想其它办法吧)
4、在你的头文件上写上如下的样式:
#include "stdio.h"
#include "can18xx8.h"
#include "pic18fxx8.h"//可能是“pic.h”不太好包含,因此常会报错,直接包含克服之
5、然后设置好PICC和MPLAB,如果MPLAB上没有PICC18,则到PICC的网上下一个安装软件,可以直接运行安装就有了。
6、按照工程的基本要求把你的源代码、添加上两个库(不加也可以)
然后就可以写如下代码了:下面是一个完整版,可以直接使用microchip的库函数,本程序只是仿真调试过,未在多个芯片通信过,仍在制作中。
#include "stdio.h"
#include "can18xx8.h"
#include "pic18fxx8.h"
unsigned long NewMessage;
BYTE NewMessageData[8];
BYTE MessageData[8];
BYTE NewMessageLen;
enum CAN_RX_MSG_FLAGS NewMessageFlags=1;
BYTE RxFilterMatch;
void main()
{
//int a;
//int b;
CANInitialize(1, 5, 7, 6, 2, CAN_CONFIG_VALID_XTD_MSG);
while(1)
{
// Application specific logic here
// Check for CAN message
if ( CANIsRxReady() )
{
CANReceiveMessage(&NewMessage,NewMessageData,&NewMessageLen,&NewMessageFlags);
if ( NewMessageFlags & CAN_RX_OVERFLOW )
{
// Rx overflow occurred; handle it
}
if ( NewMessageFlags & CAN_RX_INVALID_MSG )
{
// Invalid message received; handle it
}
if ( NewMessageFlags & CAN_RX_XTD_FRAME )
{
// Extended Identifier received; handle it
}
else
{
// Standard Identifier received.
}
if ( NewMessageFlags & CAN_RX_RTR_FRAME )
{
// RTR frame received
}
else
{
// Regular frame received.
}
// Extract receiver filter match, if it is to be used
RxFilterMatch = NewMessageFlags & CAN_RX_FILTER_BITS;
}
// Process received message
// Transmit a message due to previously received message or
// due to application logic itself.
if ( CANIsTxReady() )
{
MessageData[0] = 0x01;
CANSendMessage( 0x02,MessageData,1,CAN_TX_PRIORITY_0
&CAN_TX_STD_FRAME &
CAN_TX_NO_RTR_FRAME);
}
// Other application specific logic
} // Do this forever
// End of program
}
以上均是参考文档并进行了修正,由于中间总是报错,为了大家让CAN更容易,谢谢大家!
Platform: |
Size: 10682 |
Author: lovelzs2008@126.com |
Hits:
Description: 编译器:MCC18 v2.30.01 及其以上
编译环境:MPLAB 7.51
请把MpZBee文件夹拷贝到C盘根目录下才能正常编译。-compiler : MCC18 v2.30.01 and above compiler environment : Please MPLAB 7.51 MpZBee folder are copied to the directory C can be deep-rooted normal compiler.
Platform: |
Size: 1759232 |
Author: qinghui |
Hits:
Description: 1 安装:首先安装MPLAB IDE V7.42的程序,然后再安装C的组件PICC8.05-PL.安装过程中全部确认选择,完毕后重启计算机。
2 激活:(PICC8.05-PL)
运行“开始”菜单下的“HI-TECH SOFTWARE”中的 激活(Complier Activation)程序,
再同时启动算号器程序(HtkeyGen.exe),将Last Name前的勾去掉,填入公司名称,算出相应内
容填入激活程序相应栏目,OK即可完成激活。
3 设置:
3.1 将MPLAB 7.42启动后,在文件栏中打开C的桌面项目文件,在Project栏目中
检查 select language Toolsuite...中的选项,所有路径须指向安装路径如C:\HT-PIC\BIN\PICC.EXE;
3.2 在Project栏目中检查 setlanguage Tool Locations中的HI-TECH ToolsuiteXDGR
相关选项,executables中各程序应指向picc.exe Default Search Paths & Directories中
的相关路径应为安装目录如C:\HT-PIC\include 和C:\HT-PIC\lib;
3.3 设置programmer中的select programmer选项为"MPLAB IED 2"(经验:如果不打开编译器,此选项无法选中)。
3.4 设置单片机型号,在Congfigure中的Select Device选择准确的芯片型号;
Platform: |
Size: 7612416 |
Author: smren |
Hits:
Description: C语言代码,生成3路有120度相位差的125Hz方波信号。可简单改编为多路、有均匀相位差、占空比可调的方波信号。
CPU是PIC16F73,8MHz晶振,开发环境MPLAB IDE 7.6或更高版本,需安装有PICC8编译器。-C language code to generate a 3-way 120 degree phase difference 125Hz square wave signal. Can be simply adapted for multi-channel, there are uniform phase, duty cycle square wave signal adjustable. CPU is the PIC16F73, 8MHz crystal, development environment, MPLAB IDE 7.6 or later, to be installed PICC8 compiler.
Platform: |
Size: 21504 |
Author: dafy |
Hits:
Description: 液晶控制器S6B0724的控制。mplab 7.60+pic ccs 4.057-LCD controller S6B0724 control. mplab 7.60+ pic ccs 4.057
Platform: |
Size: 1368064 |
Author: 亦木明 |
Hits:
Description: software MPLAB...
writing program (coding .c/.h)
-software MPLAB...
writing program (coding .c/.h)
Platform: |
Size: 883712 |
Author: akufiss |
Hits:
Description: MPLAB IDE program for LED-7 segment
Platform: |
Size: 1024 |
Author: gopi |
Hits:
Description: 这是一款MPLAB IDE 7.51中文版,非常适合中国人使用.pic交流QQ:731212693-This is a Chinese version of MPLAB IDE 7.51 is very suitable for Chinese people to use. Pic exchange QQ: 731212693
Platform: |
Size: 39101440 |
Author: 岑禹夫 |
Hits:
Description: This file will guide DS1307 to display on 7 segment by Pic family. Compile with MPLAB or CCS 4.08
Platform: |
Size: 16384 |
Author: Cuong |
Hits:
Description: MPLAB ICD 3 在 Windows 7 x64. 下的驱动程序,依照我使用ICD3在Windows 7 x64上的經驗
1、将压缩包中的\PICFLASH_v3b_plus2\Driver\mchpusb64.sys复制到C:\Program Files\Microchip\MPLAB IDE\ICD3\Drivers下
2、將ICD3插入PC
3. 在裝置管理員中ICD3的圖示中按右鍵"更新驅動程式軟體"
4. 將目錄指向"C:\Program Files\Microchip\MPLAB IDE\ICD3\Drivers
5. 完成
-on Windows 7 x64.
MPLAB v8.40
Windows 7 Ultimate 64 bit.
Platform: |
Size: 816128 |
Author: 马西沛 |
Hits:
Description: MPLAB IDE 7 MCC18 SPI Library-MPLAB IDE 7 MCC18 SPI Library
Platform: |
Size: 13312 |
Author: AlHakim |
Hits:
Description: PIC 建立第一个工程 创建第一个项目-PIC project to create a project to establish the first
Platform: |
Size: 349184 |
Author: DAIPINCHUAN |
Hits:
Description: 一、 前言
二、 准备工作与快速上手
1 、 芯片资源
2 、 软件开发环境 MPLAB IDE v8.00
3 、 编译器picc9.50
4 、 MPLAB ICD2 硬件调试及编程工具
5 、 ICD2 的连接顺序
6 、 从最简单的测试程序开始
三、 旋转时钟功能概述
1 、 基板
2 、 电机
3 、 指针板
4 、 红外遥控器 .
5 、 上位机
四、 指针板的供电方式
1 、 常见的供电方式
2 、 匠人采用的供电方式及结构
3 、 电源与串口信号的电路通路的复用 .............................................................12
五、 显示处理
1 、 显示内容
2 、 驱动电路
3 、 显示程序
4 、 特殊显示画面的实现
5 、 字符、图片的显示
6 、 英文字符字库
7 、 汉字字库 -common.h
min.c
main.h
Interruption.c
Interruption.h
display.c
display.h
Platform: |
Size: 2563072 |
Author: jad |
Hits:
Description: MPLAB 是免費的整合發展環境 (IDE) , 此整合工具集乃為支援發展嵌入式應用程式而設計,其使用在 Microchips PIC® and dsPIC® microcontrollers 兩款產品之中.-MPLAB Integrated Development Environment (IDE) is a free, integrated toolset for the development of embedded applications employing Microchips PIC® and dsPIC® microcontrollers.
Platform: |
Size: 36622336 |
Author: Xmcs Proo |
Hits:
Description: 编译环境是MICROCHIP MPLAB IDE。实现了四首简单流行歌曲的播放,实现了歌曲的存储功能,实现了通过外接键盘点歌的功能,制作了键盘电子琴和液晶显示欢迎信息,用键盘上的数字键1 2 3 4 5 6 7分别代表并控制发声乐谱中的DOU REI MI FA SOU LA XI ,而键盘上的A B C D 键被设置为点歌功能键。-Build environment Microchip MPLAB IDE.Four simple pop music playback, the song memory function, the function of the song through the external keyboard, making keyboard keyboard and LCD display welcome message, use the number keys on the keyboard 1 2 3 4 5 6 7represent and control sound the DOU REI score MI FA SOU LA XI the the VOD function keys the the ABCD keys on the keyboard is set to.
Platform: |
Size: 4096 |
Author: 李丛阳 |
Hits:
Description: 个人开发小程序,用proteus7.9仿真,控制芯片用microchip生产的PIC24系列,采用两片DSP之间SPI通讯方式,主机DSP发送数据,从机DSP接收到数据并在液晶上显示,反过来通信也一样。开发环境IDE环境mplab 8.76,proteus 7.9,液晶LM016L,想学SPI全双工通信的可以看一下-Personal development of small procedures, using proteus7.9 simulation, control chip production using microchip PIC24 series, using two SPI communication between the DSP , the host DSP send data, receive data from the DSP unit and displayed on the LCD , which in turn communicate is the same. Development environment IDE environment mplab 8.76, proteus 7.9, LCD LM016L, want to learn SPI full duplex communication can look at
Platform: |
Size: 215040 |
Author: 的的 |
Hits:
Description: C语言编写pic16f887单片机多通道采集的程序,开发环境MPLAB 8.7,实践验证成功,可以用到同系列单片机上。-The program of C language with PIC16F887 microcontroller, usede for multi-channels A/D, development environment MPLAB 8.7, and has been proved successful.
Platform: |
Size: 1024 |
Author: 小哲 |
Hits: