__interrupt void
时间: 2023-10-26 08:05:24 浏览: 160
interrupt_key.zip_interrupt key
This is the syntax for the interrupt service routine (ISR) in C programming language. It is used to define a function that will be executed when an interrupt occurs. The "__interrupt" keyword specifies that this is an interrupt function, and the "void" keyword indicates that the function does not return any value. The actual code for the ISR would be written within the curly braces that follow this syntax.
阅读全文