3268|3

337

帖子

0

TA的资源

纯净的硅(初级)

楼主
 

一个驱动函数的用途 [复制链接]

最近看ZLG 的CAN例程,里面有个GPIOPinconfigure()函数,但是我看了GPIO的驱动函数库,没有发现有这样一个函数。请问这个函数在哪里有说明文档。

最新回复

最新库的gpio.c文件里//***************************************************************************** // //! Configures the alternate function of a GPIO pin. //! //! \param ulPinConfig is the pin configuration value, specified as only one of //! the \b GPIO_P??_??? values. //! //! This function configures the pin mux that selects the peripheral function //! associated with a particular GPIO pin.  Only one peripheral function at a //! time can be associated with a GPIO pin, and each peripheral function should //! only be associated with a single GPIO pin at a time (despite the fact that //! many of them can be associated with more than one GPIO pin). //! //! The available mappings are supplied on a per-device basis in //! pin_map.h.  The \b PART_IS_ define will enable the //! appropriate set of defines for the device that is being used. //! //! \note This function is not valid on Sandstorm, Fury, and Dustdevil-class //! devices. //! //! \return None. // //***************************************************************************** void GPIOPinConfigure(unsigned long ulPinConfig) {     unsigned long ulBase, ulShift;     //     // Check the argument.     //     ASSERT(((ulPinConfig >> 16) & 0xff) < 15);     ASSERT(((ulPinConfig >> 8) & 0xe3) == 0);     //     // Extract the base address index from the input value.     //     ulBase = (ulPinConfig >> 16) & 0xff;     //     // Get the base address of the GPIO module, selecting either the APB or the     // AHB aperture as appropriate.     //     if(HWREG(SYSCTL_GPIOHBCTL) & (1 << ulBase))     {         ulBase = g_pulGPIOBaseAddrs[(ulBase << 1) + 1];     }     else     {         ulBase = g_pulGPIOBaseAddrs[ulBase << 1];     }     //     // Extract the shift from the input value.     //     ulShift = (ulPinConfig >> 8) & 0xff;     //     // Write the requested pin muxing value for this GPIO pin.     //     HWREG(ulBase + GPIO_O_PCTL) = ((HWREG(ulBase + GPIO_O_PCTL) &                                     ~(0xf << ulShift)) |                                    ((ulPinConfig & 0xf) << ulShift)); }  详情 回复 发表于 2012-7-19 14:07

点评

你的驱动库可能比较旧,下载新的 Stellarisware 里边有。 这个函数主要是配置管脚复用的。  详情 回复 发表于 2012-7-19 13:27
 
点赞 关注

回复
举报

1803

帖子

0

TA的资源

五彩晶圆(高级)

沙发
 

回复 楼主 ZHANGXUEJIE 的帖子

你的驱动库可能比较旧,下载新的 Stellarisware 里边有。
这个函数主要是配置管脚复用的。
 
 

回复

2002

帖子

24

TA的资源

五彩晶圆(高级)

板凳
 

最新库的gpio.c文件里


//***************************************************************************** // //! Configures the alternate function of a GPIO pin. //! //! \param ulPinConfig is the pin configuration value, specified as only one of //! the \b GPIO_P??_??? values. //! //! This function configures the pin mux that selects the peripheral function //! associated with a particular GPIO pin. Only one peripheral function at a //! time can be associated with a GPIO pin, and each peripheral function should //! only be associated with a single GPIO pin at a time (despite the fact that //! many of them can be associated with more than one GPIO pin). //! //! The available mappings are supplied on a per-device basis in //! pin_map.h. The \b PART_IS_ define will enable the //! appropriate set of defines for the device that is being used. //! //! \note This function is not valid on Sandstorm, Fury, and Dustdevil-class //! devices. //! //! \return None. // //***************************************************************************** void GPIOPinConfigure(unsigned long ulPinConfig) { unsigned long ulBase, ulShift; // // Check the argument. // ASSERT(((ulPinConfig >> 16) & 0xff) < 15); ASSERT(((ulPinConfig >> 8) & 0xe3) == 0); // // Extract the base address index from the input value. // ulBase = (ulPinConfig >> 16) & 0xff; // // Get the base address of the GPIO module, selecting either the APB or the // AHB aperture as appropriate. // if(HWREG(SYSCTL_GPIOHBCTL) & (1 << ulBase)) { ulBase = g_pulGPIOBaseAddrs[(ulBase << 1) + 1]; } else { ulBase = g_pulGPIOBaseAddrs[ulBase << 1]; } // // Extract the shift from the input value. // ulShift = (ulPinConfig >> 8) & 0xff; // // Write the requested pin muxing value for this GPIO pin. // HWREG(ulBase + GPIO_O_PCTL) = ((HWREG(ulBase + GPIO_O_PCTL) & ~(0xf << ulShift)) | ((ulPinConfig & 0xf) << ulShift)); }
 
 
 

回复

337

帖子

0

TA的资源

纯净的硅(初级)

4
 
谢谢各位!
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
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
快速回复 返回顶部 返回列表