0 资料
ARM Generic Interrupt Controller Architecture version 2.0 Architecture Specification1 边沿触发和电平触发中断处理流程
1.0 边沿触发和电平触发的区别
边沿触发(Edge-triggered) This is an interrupt that is asserted on detection of…
kotlin
* Kotlin 程序文件以 .kt 结尾
函数定义
fun sum ( a : int , b : int ):int{
return ab
}
fun为函数定义关键字
表达式 fun sum(a: Int, b: Int) a b
无返回值 :unit
public类型必须有返回值类型,unit可以省略 …