本帖最后由 优易特电子 于 2015-1-27 17:41 编辑
续(6)。。。
2.5.4 使用举例为更好的理解固件库的使用,现详细介绍用STVD实现一个GPIO反转的应用例程。此例程可详见光盘“第二章”文件夹下“第2章例程”。
(1)打开STVD开发环境,按照2.3.2章节的步骤,建立一个新工程,工程名称为TEST。选择芯片为STM8S207RB。建立工程完成后如图2-74所示。
图2-74工程建立界面图
(
2)点击main.c打开主程序。如图2-75所示。主程序中只有一条while(1)循环语句。
图2-75 主程序浏览图
(3)以对PA0口进行延时反转为例。现要对GPIO进行操作,需要将固件库的文件加到工程。将固件库Libraries文件夹拷到工程所在目录下。如图2-76所示。
图2-76 Libraries文件夹选择
(4)在STVD环境下的工作窗口区,将要用到的固件库文件加到工程中。添加方法:右击工程名“test”,在菜单中选择“New Folder...”,在新出现的对话框中,输入LIB。右击LIB,在菜单中选择“Add Files to Folder…”,在新出现的对话框中,寻找固件库路径,并选择SCR文件下的“stm8s_gpio.c”文件,并点击“打开”,将固件函数文件加到工程中。如图2-77所示。同样的方法添加“stm8s_gpio.h”和“stm8s_conf.h”文件。
图2-77 相关固件库文件添加
(
5)选择“Project->Settings”菜单,出现
Project Settings对话框。在C Compiler页面的Prerocessor框中输入宏定义内容“STM8S207”,如图2-78所示。 图2-78 Settings对话框配置
(6)修改主程序为如下语句:
/* MAIN.C file
* Copyright (c) 2002-2005 STMicroelectronics
*/
#include "stm8s_gpio.h"
//包含固件库中所用到外设驱动的头文件
main()
{
u16 i;
GPIO_Init(GPIOA, GPIO_PIN_0, GPIO_MODE_OUT_PP_HIGH_FAST);
//PA0初始化为推挽输出模式
while (1)
{
for(i=0;i<40000;i++);//延时
GPIO_WriteReverse(GPIOA,GPIO_PIN_0); //PA0口反转
}
}
#ifdef USE_FULL_ASSERT
/**
* @brief Reports the name of the source file and the source line number
* where the assert_param error has occurred.
* @param file: pointer to the source file name
* @param line: assert_param error line source number
* @retval : None
*/
void assert_failed(u8* file, u32 line)
{
/* User can add his own implementation to report the file name and line number,
ex: printf("Wrong parameters value: file %s on line %drn", file, line) */
/* Infinite loop */
while (1)
{
}
}
#endif
(7)编译程序出现如图2-79所示结果,编译结果显示无任何错误和警告。此程序实现PA0口延时反转功能,使用固件库完成寄存器的操作。
图2-79 编译结果图
完结!