mbed-os/workspace_tools/host_tests/net_test.py

12 lines
246 B
Python

from host_test import Test, Simple
from sys import stdout
class NETTest(Simple):
def __init__(self):
Test.__init__(self)
self.mbed.init_serial(115200)
self.mbed.reset()
if __name__ == '__main__':
NETTest().run()