The relay controller is debugged. $, 1000,25,1 - for example, the following are transmitted: $ - service symbol, 1000 - pressure setpoint, 25 - pressure error, 1 - auto-set flag allows the automatic shaper of 16 stages of setting to operate with a step of 250 mV.

Committer:
Aleksk
Date:
Thu Apr 09 22:38:58 2020 +0000
Revision:
0:342c0ede45d5
Parsing long string from serial port by interrupt (RTOS mbed os5)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Aleksk 0:342c0ede45d5 1 ![](./resources/official_armmbed_example_badge.png)
Aleksk 0:342c0ede45d5 2 # Blinky Mbed OS example
Aleksk 0:342c0ede45d5 3
Aleksk 0:342c0ede45d5 4 The example project is part of the [Arm Mbed OS Official Examples](https://os.mbed.com/code/) and is the [getting started example for Mbed OS](https://os.mbed.com/docs/mbed-os/v5.14/quick-start/index.html). It contains an application that repeatedly blinks an LED on supported [Mbed boards](https://os.mbed.com/platforms/).
Aleksk 0:342c0ede45d5 5
Aleksk 0:342c0ede45d5 6 You can build the project with all supported [Mbed OS build tools](https://os.mbed.com/docs/mbed-os/latest/tools/index.html). However, this example project specifically refers to the command-line interface tool [Arm Mbed CLI](https://github.com/ARMmbed/mbed-cli#installing-mbed-cli).
Aleksk 0:342c0ede45d5 7 (Note: To see a rendered example you can import into the Arm Online Compiler, please see our [import quick start](https://os.mbed.com/docs/mbed-os/latest/quick-start/online-with-the-online-compiler.html#importing-the-code).)
Aleksk 0:342c0ede45d5 8
Aleksk 0:342c0ede45d5 9 1. [Install Mbed CLI](https://os.mbed.com/docs/mbed-os/latest/quick-start/offline-with-mbed-cli.html).
Aleksk 0:342c0ede45d5 10
Aleksk 0:342c0ede45d5 11 1. Clone this repository on your system, and change the current directory to where the project was cloned:
Aleksk 0:342c0ede45d5 12
Aleksk 0:342c0ede45d5 13 ```bash
Aleksk 0:342c0ede45d5 14 $ git clone git@github.com:armmbed/mbed-os-example-blinky && cd mbed-os-example-blinky
Aleksk 0:342c0ede45d5 15 ```
Aleksk 0:342c0ede45d5 16
Aleksk 0:342c0ede45d5 17 Alternatively, you can download the example project with Arm Mbed CLI using the `import` subcommand:
Aleksk 0:342c0ede45d5 18
Aleksk 0:342c0ede45d5 19 ```bash
Aleksk 0:342c0ede45d5 20 $ mbed import mbed-os-example-blinky && cd mbed-os-example-blinky
Aleksk 0:342c0ede45d5 21 ```
Aleksk 0:342c0ede45d5 22
Aleksk 0:342c0ede45d5 23
Aleksk 0:342c0ede45d5 24 ## Application functionality
Aleksk 0:342c0ede45d5 25
Aleksk 0:342c0ede45d5 26 The `main()` function is the single thread in the application. It toggles the state of a digital output connected to an LED on the board.
Aleksk 0:342c0ede45d5 27
Aleksk 0:342c0ede45d5 28 ## Building and running
Aleksk 0:342c0ede45d5 29
Aleksk 0:342c0ede45d5 30 1. Connect a USB cable between the USB port on the board and the host computer.
Aleksk 0:342c0ede45d5 31 2. <a name="build_cmd"></a> Run the following command to build the example project and program the microcontroller flash memory:
Aleksk 0:342c0ede45d5 32 ```bash
Aleksk 0:342c0ede45d5 33 $ mbed compile -m <TARGET> -t <TOOLCHAIN> --flash
Aleksk 0:342c0ede45d5 34 ```
Aleksk 0:342c0ede45d5 35 The binary is located at `./BUILD/<TARGET>/<TOOLCHAIN>/mbed-os-example-blinky.bin`.
Aleksk 0:342c0ede45d5 36
Aleksk 0:342c0ede45d5 37 Alternatively, you can manually copy the binary to the board, which you mount on the host computer over USB.
Aleksk 0:342c0ede45d5 38
Aleksk 0:342c0ede45d5 39 Depending on the target, you can build the example project with the `GCC_ARM`, `ARM` or `IAR` toolchain. After installing Arm Mbed CLI, run the command below to determine which toolchain supports your target:
Aleksk 0:342c0ede45d5 40
Aleksk 0:342c0ede45d5 41 ```bash
Aleksk 0:342c0ede45d5 42 $ mbed compile -S
Aleksk 0:342c0ede45d5 43 ```
Aleksk 0:342c0ede45d5 44
Aleksk 0:342c0ede45d5 45 ## Expected output
Aleksk 0:342c0ede45d5 46 The LED on your target turns on and off every 500 milliseconds.
Aleksk 0:342c0ede45d5 47
Aleksk 0:342c0ede45d5 48
Aleksk 0:342c0ede45d5 49 ## Troubleshooting
Aleksk 0:342c0ede45d5 50 If you have problems, you can review the [documentation](https://os.mbed.com/docs/latest/tutorials/debugging.html) for suggestions on what could be wrong and how to fix it.
Aleksk 0:342c0ede45d5 51
Aleksk 0:342c0ede45d5 52 ## Related Links
Aleksk 0:342c0ede45d5 53
Aleksk 0:342c0ede45d5 54 * [Mbed OS Stats API](https://os.mbed.com/docs/latest/apis/mbed-statistics.html).
Aleksk 0:342c0ede45d5 55 * [Mbed OS Configuration](https://os.mbed.com/docs/latest/reference/configuration.html).
Aleksk 0:342c0ede45d5 56 * [Mbed OS Serial Communication](https://os.mbed.com/docs/latest/tutorials/serial-communication.html).
Aleksk 0:342c0ede45d5 57 * [Mbed OS bare metal](https://os.mbed.com/docs/mbed-os/latest/reference/mbed-os-bare-metal.html).
Aleksk 0:342c0ede45d5 58 * [Mbed boards](https://os.mbed.com/platforms/).
Aleksk 0:342c0ede45d5 59
Aleksk 0:342c0ede45d5 60 ### License and contributions
Aleksk 0:342c0ede45d5 61
Aleksk 0:342c0ede45d5 62 The software is provided under Apache-2.0 license. Contributions to this project are accepted under the same license. Please see contributing.md for more info.
Aleksk 0:342c0ede45d5 63
Aleksk 0:342c0ede45d5 64 This project contains code from other projects. The original license text is included in those source files. They must comply with our license guide.