git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@613 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
e2b6b440e1
commit
8b17d5526d
|
@ -138,6 +138,11 @@ typedef struct {
|
||||||
*/
|
*/
|
||||||
#define SYS_IRQ_EPILOGUE()
|
#define SYS_IRQ_EPILOGUE()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* IRQ handler function modifier.
|
||||||
|
*/
|
||||||
|
#define SYS_IRQ_HANDLER
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Does nothing in this simulator.
|
* Does nothing in this simulator.
|
||||||
*/
|
*/
|
||||||
|
@ -158,17 +163,17 @@ typedef struct {
|
||||||
*/
|
*/
|
||||||
#define sys_enable_from_isr()
|
#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
|
* In the simulator this does a polling pass on the simulated interrupt
|
||||||
* sources.
|
* sources.
|
||||||
*/
|
*/
|
||||||
#define sys_wait_for_interrupt() ChkIntSources()
|
#define sys_wait_for_interrupt() ChkIntSources()
|
||||||
|
|
||||||
/**
|
|
||||||
* IRQ handler function modifier.
|
|
||||||
*/
|
|
||||||
#define SYS_IRQ_HANDLER
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue