git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@613 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-01-10 16:25:57 +00:00
parent e2b6b440e1
commit 8b17d5526d
1 changed files with 10 additions and 5 deletions

View File

@ -138,6 +138,11 @@ typedef struct {
*/
#define SYS_IRQ_EPILOGUE()
/**
* IRQ handler function modifier.
*/
#define SYS_IRQ_HANDLER
/**
* Does nothing in this simulator.
*/
@ -158,17 +163,17 @@ typedef struct {
*/
#define sys_enable_from_isr()
/**
* Does nothing in this simulator.
*/
#define sys_disable_all()
/**
* In the simulator this does a polling pass on the simulated interrupt
* sources.
*/
#define sys_wait_for_interrupt() ChkIntSources()
/**
* IRQ handler function modifier.
*/
#define SYS_IRQ_HANDLER
#ifdef __cplusplus
extern "C" {
#endif