⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 board.c

📁 RT-Thread是发展中的下一代微内核嵌入式实时操作系统
💻 C
字号:
/* * File      : board.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2006, RT-Thread Development Team * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.fayfayspace.org/license/LICENSE. * * Change Logs: * Date           Author       Notes * 2006-09-15     QiuYi        the first version * 2006-10-10     Bernard      add hardware related of finsh */ #include <rtthread.h>#include <rthw.h>#include <bsp.h>/** * @addtogroup QEMU *//*@{*/static void rt_timer_handler(int vector){	rt_tick_increase();}/** * This function will init QEMU * */void rt_hw_board_init(void){	/* initialize 8253 clock to interrupt 100 times/sec */	outb(TIMER_MODE, TIMER_SEL0|TIMER_RATEGEN|TIMER_16BIT);	outb(IO_TIMER1, TIMER_DIV(100) % 256);	outb(IO_TIMER1, TIMER_DIV(100) / 256);	/* install interrupt handler */	rt_hw_interrupt_install(INTTIMER0, rt_timer_handler, RT_NULL);	rt_hw_interrupt_umask(INTTIMER0);}#ifdef RT_USING_FINSHextern void finsh_notify(void);static void rt_serial_isr(int vector){	finsh_notify();}/**  * This function will init hardware related in finsh shell */void rt_hw_finsh_init(){	/* install UART isr */	rt_hw_interrupt_install(INTUART0_RX, rt_serial_isr, RT_NULL);	rt_hw_interrupt_umask(INTUART0_RX);		/* install  keyboard isr */	rt_hw_interrupt_install(INTKEYBOARD, rt_serial_isr, RT_NULL);	rt_hw_interrupt_umask(INTKEYBOARD);}#endif/*@}*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -