📄 ps2_isr.c
字号:
/* Copyright (c) 2004 Nordic Semiconductor. All Rights Reserved.
*
* The information contained herein is confidential property of
* Nordic Semiconductor. The use, copying, transfer or disclosure
* of such information is prohibited except by express written
* agreement with Nordic Semiconductor.
*/
/** @file
*
* PS2 interrupt handler function
*
* @author Runar Kjellhaug
*
*/
#include "hal_nrf_hw.h"
#include "ps2_io.h"
#include "fap.h"
void ps2_irq(void) interrupt INTERRUPT_INT1
{
PS2_IRQ_DISABLE();
ps2_put_fifo();
PS2_IRQ_ENABLE();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -