6452|24

76

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

PIC32代码烧写成功,但不运行 [复制链接]

 
如题,编译器都提示烧写成功了,但程序没跑起来,MCLR引脚一直低电平,所有IO口高电平,片子始终处于复位的状态,是哪里没做对吗

最新回复

我也是这款单片机,ID也是A1,能烧写进程序,但是不运行,不知道什么原因?   详情 回复 发表于 2022-3-2 17:12
点赞 关注
 

回复
举报

419

帖子

1

TA的资源

一粒金砂(中级)

沙发
 
额,首先你得排除是硬件的问题,还是你的程序配置问题
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

板凳
 
硬件的话,都能正确烧写,应该没问题吧,且烧写过程中我那电压表测量了MCLR引脚,该高电平的时候都是正确的,估计是配置问题,但就是不知道是哪里配置的问题,昨晚搞到2点过才睡
 
 
 

回复

6366

帖子

4912

TA的资源

版主

4
 
看看时钟配置把,
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

5
 
用的内部FRC
 
 
 

回复

1万

帖子

16

TA的资源

版主

6
 
检查复位有无及晶振的配置,应是配置问题。
 
个人签名http://shop34182318.taobao.com/
https://shop436095304.taobao.com/?spm=a230r.7195193.1997079397.37.69fe60dfT705yr
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

7
 
关键是MCLR引脚怎么会是一直低电平呢,即便没配置正确,复位是硬件控制的啊
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

8
 
#pragma config FMIIEN = ON              // Ethernet RMII/MII Enable (MII Enabled)
#pragma config FETHIO = ON              // Ethernet I/O Pin Select (Default Ethernet I/O)
#pragma config PGL1WAY = ON             // Permission Group Lock One Way Configuration (Allow only one reconfiguration)
#pragma config PMDL1WAY = ON            // Peripheral Module Disable Configuration (Allow only one reconfiguration)
#pragma config IOL1WAY = ON             // Peripheral Pin Select Configuration (Allow only one reconfiguration)
#pragma config FUSBIDIO = ON            // USB USBID Selection (Controlled by the USB Module)

// DEVCFG2
#pragma config FPLLIDIV = DIV_8         // System PLL Input Divider (8x Divider)
#pragma config FPLLRNG = RANGE_34_68_MHZ// System PLL Input Range (34-68 MHz Input)
#pragma config FPLLICLK = PLL_FRC       // System PLL Input Clock Selection (FRC is input to the System PLL)
#pragma config FPLLMULT = MUL_128       // System PLL Multiplier (PLL Multiply by 128)
#pragma config FPLLODIV = DIV_32        // System PLL Output Clock Divider (32x Divider)
#pragma config UPLLFSEL = FREQ_24MHZ    // USB PLL Input Frequency Selection (USB PLL input is 24 MHz)

// DEVCFG1
#pragma config FNOSC = FRCDIV           // Oscillator Selection Bits (Fast RC Osc w/Div-by-N (FRCDIV))
#pragma config DMTINTV = WIN_127_128    // DMT Count Window Interval (Window/Interval value is 127/128 counter value)
#pragma config FSOSCEN = OFF             // Secondary Oscillator Enable (Enable SOSC)
#pragma config IESO = ON                // Internal/External Switch Over (Enabled)
#pragma config POSCMOD = OFF            // Primary Oscillator Configuration (Primary osc disabled)
#pragma config OSCIOFNC = OFF           // CLKO Output Signal Active on the OSCO Pin (Disabled)
#pragma config FCKSM = 0//CSECME           // Clock Switching and Monitor Selection (Clock Switch Enabled, FSCM Enabled)
#pragma config WDTPS = PS1048576        // Watchdog Timer Postscaler (1:1048576)
#pragma config WDTSPGM = STOP           // Watchdog Timer Stop During Flash Programming (WDT stops during Flash programming)
#pragma config WINDIS = NORMAL          // Watchdog Timer Window Mode (Watchdog Timer is in non-Window mode)
#pragma config FWDTEN = 0//OFF             // Watchdog Timer Enable (WDT Disabled)
#pragma config FWDTWINSZ = WINSZ_25     // Watchdog Timer Window Size (Window size is 25%)
#pragma config DMTCNT = DMT31           // Deadman Timer Count Selection (2^31 (2147483648))
#pragma config FDMTEN = 0//OFF              // Deadman Timer Enable (Deadman Timer is enabled)

// DEVCFG0
#pragma config DEBUG = OFF               // Background Debugger Enable (Debugger is enabled)
#pragma config JTAGEN = OFF             // JTAG Enable (JTAG Disabled)
#pragma config ICESEL = ICS_PGx1        // ICE/ICD Comm Channel Select (Communicate on PGEC1/PGED1)
#pragma config TRCEN = OFF               // Trace Enable (Trace features in the CPU are enabled)
#pragma config BOOTISA = 0//MIPS32         // Boot ISA Selection (Boot code and Exception code is MIPS32)
#pragma config FECCCON = OFF_UNLOCKED   // Dynamic Flash ECC Configuration (ECC and Dynamic ECC are disabled (ECCCON bits are writable))
#pragma config FSLEEP = OFF             // Flash Sleep Mode (Flash is powered down when the device is in Sleep mode)
#pragma config DBGPER = PG_ALL          // Debug Mode CPU Access Permission (Allow CPU access to all permission regions)
#pragma config SMCLR = 0//MCLR_POR        // Soft Master Clear Enable bit (MCLR pin generates a normal system Reset)
#pragma config SOSCGAIN = GAIN_2X       // Secondary Oscillator Gain Control bits (2x gain setting)
#pragma config SOSCBOOST = ON           // Secondary Oscillator Boost Kick Start Enable bit (Boost the kick start of the oscillator)
#pragma config POSCGAIN = GAIN_2X       // Primary Oscillator Gain Control bits (2x gain setting)
#pragma config POSCBOOST = ON           // Primary Oscillator Boost Kick Start Enable bit (Boost the kick start of the oscillator)
#pragma config EJTAGBEN = NORMAL        // EJTAG Boot (Normal EJTAG functionality)

// DEVCP0
#pragma config CP = OFF                 // Code Protect (Protection Disabled)
#include
以上是配置代码,用的内部FRC
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

9
 
看门狗,程序监控定时器都关闭了
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

10
 

 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

11
 
上面是我的下载和复位电路,之前使用DSPIC,一直用的这个电路,都没问题的
 
 
 

回复

327

帖子

0

TA的资源

一粒金砂(中级)

12
 
检查下硬件
 
个人签名学习永无止境
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

13
 
检查了,对芯片补焊了一下,情况依旧
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

14
 
用示波器看了下电源的纹波啥的,也都正常的

点评

复位和晶振,电源,都检查一下焊接。测一下波形。换个原来正常的程序试试。  详情 回复 发表于 2018-2-5 16:58
 
 
 

回复

3471

帖子

13

TA的资源

五彩晶圆(高级)

15
 
asdmaill 发表于 2018-2-5 16:32
用示波器看了下电源的纹波啥的,也都正常的

复位和晶振,电源,都检查一下焊接。测一下波形。换个原来正常的程序试试。
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

16
 
自己做的板子,现在测试的代码就是才写好,准备测试下板子用的
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

17
 
MCLR引脚怎么会一直都是低电平呢,而烧写代码的时候又是正确的,能被拉到3.3V,烧写完后,MCLR就一直低电平
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

18
 
我将电源断开,IPE能提示目标移除,接上电源,IPE就提示目标发现,然后就显示器件ID版本号A1
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(中级)

19
 
因此我认为硬件没什么问题,而是配置上的问题,应该是DEVCFG那几个配置寄存器没配置对,但又不知道会是哪个位没有配置正确
 
 
 

回复

721

帖子

1

TA的资源

一粒金砂(高级)

20
 
配置位只配置时钟和ICSP引脚,其他保持默认应该没问题的。实在不济建议将SW1和C2去掉,直接将MCLR用电阻拉高。
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/8 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表