- 1、本文档共33页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
?????????????????????
? ??????????? ?STM8的C语言编程(1)--基本程序与启动代码分析
?
现在几乎所有的单片机都能用C语言编程了,采用C语言编程确实能带来很多好处,至少可读性比汇编语言强多了。
在STM8的开发环境中,可以通过新建一个工程,自动地建立起一个C语言的框架,生成后开发环境会自动生成2个C语言的程序,一个是main.c,另一个是stm8_interrupt_vector.c。main.c中就是一个空的main()函数,如下所示:
?
/* MAIN.C file
?*
?* Copyright (c) 2002-2005 STMicroelectronics
?*/
?
?
main()
{
?????? while (1);
}
?
而在stm8_interrupt_vector.c中,就是声明了对应该芯片的中断向量,如下所示:
/*??? BASIC INTERRUPT VECTOR TABLE FOR STM8 devices
?*?? Copyright (c) 2007 STMicroelectronics
?*/
?
typedef void @far (*interrupt_handler_t)(void);
?
struct interrupt_vector {
?????? unsigned char interrupt_instruction;
?????? interrupt_handler_t interrupt_handler;
};
?
@far @interrupt void NonHandledInterrupt (void)
{
?????? /* in order to detect unexpected events during development,
?????? ?? it is recommended to set a breakpoint on the following instruction
?????? */
?????? return;
}
?
extern void _stext();???? /* startup routine */
?
struct interrupt_vector const _vectab[] = {
?????? {0x82, (interrupt_handler_t)_stext}, /* reset */
?????? {0x82, NonHandledInterrupt}, /* trap? */
?????? {0x82, NonHandledInterrupt}, /* irq0? */
?????? {0x82, NonHandledInterrupt}, /* irq1? */
?????? {0x82, NonHandledInterrupt}, /* irq2? */
?????? {0x82, NonHandledInterrupt}, /* irq3? */
?????? {0x82, NonHandledInterrupt}, /* irq4? */
?????? {0x82, NonHandledInterrupt}, /* irq5? */
?????? {0x82, NonHandledInterrupt}, /* irq6? */
?????? {0x82, NonHandledInterrupt}, /* irq7? */
?????? {0x82, NonHandledInterrupt}, /* irq8? */
?????? {0x82, NonHandledInterrupt}, /* irq9? */
?????? {0x82, NonHandledInterrupt}, /* irq10 */
?????? {0x82, NonHandledInterrupt}, /* irq11 */
?????? {0x82, NonHandledInterrupt}, /* irq12 */
?????? {0x82, NonHandledInterrupt}, /* irq13 */
?????? {0x82, NonHandledInterrupt}, /* irq14 */
?????? {0x82, NonHandledInterrupt}, /* irq15 */
?????? {0x82, NonHandledInterrupt}, /* irq16 */
?????? {0x82, NonHandledInterrupt}, /* irq17 */
?????? {0x82, NonHandledInterrupt}, /* irq
文档评论(0)