2020-12-18 23:44:45 +08:00
|
|
|
from language import *
|
2021-09-24 11:39:26 +08:00
|
|
|
from numpy import int32, int64
|
|
|
|
|
|
|
|
|
2021-09-24 14:45:44 +08:00
|
|
|
@syscall
|
|
|
|
def now_mu() -> int64:
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
|
|
|
@syscall
|
|
|
|
def at_mu(t: int64):
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
|
|
|
@syscall
|
|
|
|
def delay_mu(dt: int64):
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
2021-09-24 11:39:26 +08:00
|
|
|
@syscall
|
|
|
|
def rtio_init():
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
|
|
|
@syscall
|
|
|
|
def rtio_get_counter() -> int64:
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
|
|
|
@syscall
|
|
|
|
def rtio_output(target: int32, data: int32):
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
|
|
|
@syscall
|
|
|
|
def rtio_input_timestamp(timeout_mu: int64, channel: int32) -> int64:
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
|
|
|
|
|
|
|
@syscall
|
|
|
|
def rtio_input_data(channel: int32) -> int32:
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
2020-12-18 23:44:45 +08:00
|
|
|
|
2021-09-24 14:45:44 +08:00
|
|
|
@kernel
|
|
|
|
class Core:
|
|
|
|
@kernel
|
|
|
|
def reset(self):
|
|
|
|
rtio_init()
|
|
|
|
at_mu(rtio_get_counter() + int64(125000))
|
|
|
|
|
|
|
|
@kernel
|
|
|
|
def break_realtime(self):
|
|
|
|
min_now = rtio_get_counter() + int64(125000)
|
|
|
|
if now_mu() < min_now:
|
|
|
|
at_mu(min_now)
|
|
|
|
|
2020-12-18 23:44:45 +08:00
|
|
|
|
2021-09-23 19:30:03 +08:00
|
|
|
@kernel
|
2020-12-18 23:44:45 +08:00
|
|
|
class Demo:
|
|
|
|
@kernel
|
2021-09-23 19:30:03 +08:00
|
|
|
def run(self):
|
2021-09-24 14:45:44 +08:00
|
|
|
core = Core()
|
|
|
|
|
|
|
|
core.reset()
|
2021-09-24 11:39:26 +08:00
|
|
|
rtio_init()
|
2020-12-18 23:44:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
Demo().run()
|