diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-05-07 00:09:11 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-05-15 15:00:45 -0400 |
commit | 969ee4c8f9a3080bc20b6a78e846bee8c9455dec (patch) | |
tree | a73e76d0d9a829be0c315727f44e4ba6d6781c06 /src/simulator | |
parent | c35278e217fb45e1001845c33ffd1c947599b40c (diff) | |
download | kutter-969ee4c8f9a3080bc20b6a78e846bee8c9455dec.tar.gz kutter-969ee4c8f9a3080bc20b6a78e846bee8c9455dec.tar.xz kutter-969ee4c8f9a3080bc20b6a78e846bee8c9455dec.zip |
irq: Add an irq_poll() stub for board code
Allow the board specific code to run checks prior to running each
task.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/simulator')
-rw-r--r-- | src/simulator/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/simulator/main.c b/src/simulator/main.c index 42fb7a25..72d0abaf 100644 --- a/src/simulator/main.c +++ b/src/simulator/main.c @@ -47,6 +47,11 @@ irq_restore(irqstatus_t flag) Interrupt_off = flag; } +void +irq_poll(void) +{ +} + /**************************************************************** * Timers |