📄 board.c
字号:
/* * File : board.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2006, RT-Thread Develop Team * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://openlab.rt-thread.com/license/LICENSE * * Change Logs: * Date Author Notes * 2006-08-23 Bernard first implementation */#include <rtthread.h>#include <rthw.h>#include <AT91SAM7S.h>static void rt_hw_board_led_init(void);
/** * @addtogroup sam7s *//*@{*/#define TCK 1000 /* Timer Clock */
#define PIV ((MCK/TCK/16)-1) /* Periodic Interval Value */
/** * This is the timer interrupt service routine. * @param vector the irq number for timer */void rt_hw_timer_handler(int vector){ if (AT91C_PITC_PISR & 0x01) { /* increase a tick */ rt_tick_increase(); /* ack interrupt */ AT91C_AIC_EOICR = AT91C_PITC_PIVR; } else { /* end of interrupt */ AT91C_AIC_EOICR = 0; }} /* PIO Flash PA PB PIN */ #define LED (1 << 8)/* PA8 & TWD NPCS3 43 */ /** * This function will init led on the board */static void rt_hw_board_led_init(){
/* Enable Clock for PIO */ AT91C_PMC_PCER = 1 << AT91C_ID_PIOA; /* configure PIO as output for led */ AT91C_PIO_PER = LED; AT91C_PIO_OER = LED;}/** * This function will take the led on board on. * * @param n the number nth led */void rt_hw_board_led_on(){
AT91C_PIO_CODR = LED;}/** * This function will take the led on board off. * * @param n the number nth led */void rt_hw_board_led_off(){
AT91C_PIO_SODR = LED;}/** * This function will initial sam7x256 board. */void rt_hw_board_init(){
/* init led */ rt_hw_board_led_init(); /* install timer handler */ rt_hw_interrupt_install(AT91C_ID_SYS, rt_hw_timer_handler, RT_NULL); /* init PITC */ AT91C_PITC_PIMR = (1 << 25) | (1 << 24) | PIV; rt_hw_interrupt_umask(AT91C_ID_SYS);}#ifdef RT_USING_FINSHvoid rt_hw_uart_rx_int(int irqno){ extern void finsh_notify(void); /* notify finsh shell thread */ finsh_notify();}void rt_hw_finsh_init(){ /* init UART rx interrupt */}#endif/*@}*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -