forked from M-Labs/artiq
1
0
Fork 0
artiq/examples/coredev_test.py

38 lines
710 B
Python
Raw Normal View History

2014-08-13 18:30:57 +08:00
from artiq.language.core import AutoContext, kernel
from artiq.devices import corecom_serial, core, gpio_core
2014-07-06 04:48:27 +08:00
2014-08-13 18:30:57 +08:00
class CompilerTest(AutoContext):
parameters = "led"
2014-07-06 04:48:27 +08:00
2014-07-08 01:14:39 +08:00
def output(self, n):
print("Received: "+str(n))
def get_max(self):
return int(input("Maximum: "))
2014-07-06 04:48:27 +08:00
@kernel
def run(self):
self.led.set(1)
x = 1
2014-07-08 01:14:39 +08:00
m = self.get_max()
while x < m:
d = 2
2014-08-18 23:16:02 +08:00
prime = True
while d*d <= x:
if x % d == 0:
2014-08-18 23:16:02 +08:00
prime = False
d += 1
2014-08-18 23:16:02 +08:00
if prime:
2014-07-08 01:14:39 +08:00
self.output(x)
x += 1
self.led.set(0)
2014-07-06 04:48:27 +08:00
if __name__ == "__main__":
with corecom_serial.CoreCom() as com:
coredev = core.Core(com)
exp = CompilerTest(
core=coredev,
led=gpio_core.GPIOOut(core=coredev, channel=0)
)
exp.run()