2021-10-08 23:41:41 +08:00
|
|
|
from min_artiq import *
|
2021-09-24 11:39:26 +08:00
|
|
|
from numpy import int32, int64
|
|
|
|
|
|
|
|
|
2021-09-24 14:45:44 +08:00
|
|
|
@kernel
|
2021-10-08 23:41:41 +08:00
|
|
|
class Demo:
|
|
|
|
core: Core
|
|
|
|
led: TTLOut
|
2021-09-25 14:17:11 +08:00
|
|
|
|
2021-10-09 16:20:49 +08:00
|
|
|
@portable
|
2021-10-08 23:41:41 +08:00
|
|
|
def __init__(self):
|
|
|
|
self.core = Core()
|
|
|
|
self.led = TTLOut(0)
|
2020-12-18 23:44:45 +08:00
|
|
|
|
|
|
|
@kernel
|
2021-10-09 15:52:45 +08:00
|
|
|
def run(self):
|
2021-10-08 23:41:41 +08:00
|
|
|
self.core.reset()
|
2021-09-25 14:17:11 +08:00
|
|
|
while True:
|
2021-10-08 23:41:41 +08:00
|
|
|
self.led.pulse_mu(int64(100000000))
|
2021-10-10 16:26:01 +08:00
|
|
|
delay_mu(int64(True))
|
2020-12-18 23:44:45 +08:00
|
|
|
|
2021-10-09 15:52:45 +08:00
|
|
|
|
|
|
|
@kernel
|
2021-10-10 16:26:01 +08:00
|
|
|
def testing(a: int32) -> int32:
|
|
|
|
return a + 1
|
2020-12-18 23:44:45 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2021-10-10 16:26:01 +08:00
|
|
|
core = Core()
|
|
|
|
# core.run(testing, 1)
|
|
|
|
core.run(Demo().run)
|