Rtos API example

Committer:
marcozecchini
Date:
Sat Feb 23 12:13:36 2019 +0000
Revision:
0:9fca2b23d0ba
final commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
marcozecchini 0:9fca2b23d0ba 1 """
marcozecchini 0:9fca2b23d0ba 2 mbed SDK
marcozecchini 0:9fca2b23d0ba 3 Copyright (c) 2011-2013 ARM Limited
marcozecchini 0:9fca2b23d0ba 4
marcozecchini 0:9fca2b23d0ba 5 Licensed under the Apache License, Version 2.0 (the "License");
marcozecchini 0:9fca2b23d0ba 6 you may not use this file except in compliance with the License.
marcozecchini 0:9fca2b23d0ba 7 You may obtain a copy of the License at
marcozecchini 0:9fca2b23d0ba 8
marcozecchini 0:9fca2b23d0ba 9 http://www.apache.org/licenses/LICENSE-2.0
marcozecchini 0:9fca2b23d0ba 10
marcozecchini 0:9fca2b23d0ba 11 Unless required by applicable law or agreed to in writing, software
marcozecchini 0:9fca2b23d0ba 12 distributed under the License is distributed on an "AS IS" BASIS,
marcozecchini 0:9fca2b23d0ba 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
marcozecchini 0:9fca2b23d0ba 14 See the License for the specific language governing permissions and
marcozecchini 0:9fca2b23d0ba 15 limitations under the License.
marcozecchini 0:9fca2b23d0ba 16 """
marcozecchini 0:9fca2b23d0ba 17
marcozecchini 0:9fca2b23d0ba 18 class HelloTest():
marcozecchini 0:9fca2b23d0ba 19 HELLO_WORLD = "Hello World"
marcozecchini 0:9fca2b23d0ba 20
marcozecchini 0:9fca2b23d0ba 21 def test(self, selftest):
marcozecchini 0:9fca2b23d0ba 22 c = selftest.mbed.serial_readline()
marcozecchini 0:9fca2b23d0ba 23 if c is None:
marcozecchini 0:9fca2b23d0ba 24 return selftest.RESULT_IO_SERIAL
marcozecchini 0:9fca2b23d0ba 25 selftest.notify("Read %d bytes:"% len(c))
marcozecchini 0:9fca2b23d0ba 26 selftest.notify(c.strip())
marcozecchini 0:9fca2b23d0ba 27
marcozecchini 0:9fca2b23d0ba 28 result = True
marcozecchini 0:9fca2b23d0ba 29 # Because we can have targetID here let's try to decode
marcozecchini 0:9fca2b23d0ba 30 if len(c) < len(self.HELLO_WORLD):
marcozecchini 0:9fca2b23d0ba 31 result = False
marcozecchini 0:9fca2b23d0ba 32 else:
marcozecchini 0:9fca2b23d0ba 33 result = self.HELLO_WORLD in c
marcozecchini 0:9fca2b23d0ba 34 return selftest.RESULT_SUCCESS if result else selftest.RESULT_FAILURE