TI中文支持网
TI专业的中文技术问题搜集分享网站

F280049程序下载问题

我把以前F280049 64PIN的代码,用来下载到F280049 100PIN的芯片里,出现芯片掉电后,程序就不存在了,应该是没有下载进Flash里面,请问,这是什么原因导致的呢?

Susan Yang:

RAM运行还是FLASH运行?在TI例程代码中有这样的语句,您看一下您的代码内是否有这样的语句? 

//*****************************************************************************
//*****************************************************************************
//
//! \internal
//! Checks that a pin number is valid for a device.
//!
//! Note that this function reflects the highest possible GPIO number of a
//! device on its biggest package. Check the datasheet to see what the actual
//! range of valid pin numbers is for a specific package.
//!
//! \return None.
//
//*****************************************************************************
#ifdef DEBUG
static inline bool
GPIO_isPinValid(uint32_t pin)
{return((pin <= 59U) || ((pin >= 224U) && (pin <= 247U)));
}
#endif

user3788754:

回复 Susan Yang:

经过试验发现是GPIO24与GPIO32没有上拉导致,这两个GPIO内部难道没有自动上拉吗?

Susan Yang:

回复 user3788754:

参考数据手册 4.5 Pins With Internal Pullup and Pulldown

默认都是Pullup disabled的

上拉电阻的使用主要取决于该引脚的应用程序。您是否正在使用此引导模式引脚?

在F280049 controlCARD中,GPIO24和GPIO32都已通过56K电阻上拉。

赞(0)
未经允许不得转载:TI中文支持网 » F280049程序下载问题
分享到: 更多 (0)