Compare commits
2 Commits
19dec1ee05
...
04085c97f1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04085c97f1 | ||
|
|
b52c78d056 |
@@ -54,6 +54,7 @@
|
|||||||
pkgs.probe-rs
|
pkgs.probe-rs
|
||||||
pkgs.probe-rs-tools
|
pkgs.probe-rs-tools
|
||||||
pkgs.bear
|
pkgs.bear
|
||||||
|
pkgs.chafa
|
||||||
mbedTools
|
mbedTools
|
||||||
pyOcd
|
pyOcd
|
||||||
];
|
];
|
||||||
|
|||||||
8
semestralka1/.clangd
Normal file
8
semestralka1/.clangd
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
CompileFlags:
|
||||||
|
Add:
|
||||||
|
-isystem
|
||||||
|
/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/arm-none-eabi/include
|
||||||
|
-isystem
|
||||||
|
/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/lib/gcc/arm-none-eabi/14.3.0/include
|
||||||
|
-isystem
|
||||||
|
/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/lib/gcc/arm-none-eabi/14.3.0/include-fixed
|
||||||
23
semestralka1/.gitignore
vendored
Normal file
23
semestralka1/.gitignore
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
.build
|
||||||
|
.mbed
|
||||||
|
projectfiles
|
||||||
|
*.py*
|
||||||
|
|
||||||
|
# Local build directories
|
||||||
|
cmake_build/
|
||||||
|
BUILD/
|
||||||
|
mbed-os/
|
||||||
|
.mbed/
|
||||||
|
.mbedignore
|
||||||
|
*.elf
|
||||||
|
*.bin
|
||||||
|
*.hex
|
||||||
|
*.map
|
||||||
|
|
||||||
|
# IDE and temporary files
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.log
|
||||||
|
*.pyc
|
||||||
|
__pycache__/
|
||||||
|
.cache/
|
||||||
33
semestralka1/CMakeLists.txt
Normal file
33
semestralka1/CMakeLists.txt
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR)
|
||||||
|
|
||||||
|
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "")
|
||||||
|
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_BINARY_DIR} CACHE INTERNAL "")
|
||||||
|
set(APP_TARGET mbed-os-example-blinky)
|
||||||
|
|
||||||
|
include(${MBED_PATH}/tools/cmake/app.cmake)
|
||||||
|
|
||||||
|
project(${APP_TARGET})
|
||||||
|
|
||||||
|
add_subdirectory(${MBED_PATH})
|
||||||
|
|
||||||
|
add_executable(${APP_TARGET})
|
||||||
|
|
||||||
|
target_sources(${APP_TARGET}
|
||||||
|
PRIVATE
|
||||||
|
main.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(${APP_TARGET}
|
||||||
|
PRIVATE
|
||||||
|
mbed-os
|
||||||
|
)
|
||||||
|
|
||||||
|
mbed_set_post_build(${APP_TARGET})
|
||||||
|
|
||||||
|
option(VERBOSE_BUILD "Have a verbose build process")
|
||||||
|
if(VERBOSE_BUILD)
|
||||||
|
set(CMAKE_VERBOSE_MAKEFILE ON)
|
||||||
|
endif()
|
||||||
5
semestralka1/CONTRIBUTING.md
Normal file
5
semestralka1/CONTRIBUTING.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Contributing to Mbed OS
|
||||||
|
|
||||||
|
Mbed OS is an open-source, device software platform for the Internet of Things. Contributions are an important part of the platform, and our goal is to make it as simple as possible to become a contributor.
|
||||||
|
|
||||||
|
To encourage productive collaboration, as well as robust, consistent and maintainable code, we have a set of guidelines for [contributing to Mbed OS](https://os.mbed.com/docs/mbed-os/latest/contributing/index.html).
|
||||||
165
semestralka1/LICENSE
Normal file
165
semestralka1/LICENSE
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction, and
|
||||||
|
distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
||||||
|
owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all other entities
|
||||||
|
that control, are controlled by, or are under common control with that entity.
|
||||||
|
For the purposes of this definition, "control" means (i) the power, direct or
|
||||||
|
indirect, to cause the direction or management of such entity, whether by
|
||||||
|
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
||||||
|
permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications, including
|
||||||
|
but not limited to software source code, documentation source, and configuration
|
||||||
|
files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical transformation or
|
||||||
|
translation of a Source form, including but not limited to compiled object code,
|
||||||
|
generated documentation, and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or Object form, made
|
||||||
|
available under the License, as indicated by a copyright notice that is included
|
||||||
|
in or attached to the work (an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
||||||
|
is based on (or derived from) the Work and for which the editorial revisions,
|
||||||
|
annotations, elaborations, or other modifications represent, as a whole, an
|
||||||
|
original work of authorship. For the purposes of this License, Derivative Works
|
||||||
|
shall not include works that remain separable from, or merely link (or bind by
|
||||||
|
name) to the interfaces of, the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including the original version
|
||||||
|
of the Work and any modifications or additions to that Work or Derivative Works
|
||||||
|
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
||||||
|
by the copyright owner or by an individual or Legal Entity authorized to submit
|
||||||
|
on behalf of the copyright owner. For the purposes of this definition,
|
||||||
|
"submitted" means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems, and
|
||||||
|
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
||||||
|
the purpose of discussing and improving the Work, but excluding communication
|
||||||
|
that is conspicuously marked or otherwise designated in writing by the copyright
|
||||||
|
owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
||||||
|
of whom a Contribution has been received by Licensor and subsequently
|
||||||
|
incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License.
|
||||||
|
|
||||||
|
Subject to the terms and conditions of this License, each Contributor hereby
|
||||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||||
|
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the Work and such
|
||||||
|
Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License.
|
||||||
|
|
||||||
|
Subject to the terms and conditions of this License, each Contributor hereby
|
||||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||||
|
irrevocable (except as stated in this section) patent license to make, have
|
||||||
|
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
||||||
|
such license applies only to those patent claims licensable by such Contributor
|
||||||
|
that are necessarily infringed by their Contribution(s) alone or by combination
|
||||||
|
of their Contribution(s) with the Work to which such Contribution(s) was
|
||||||
|
submitted. If You institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
||||||
|
Contribution incorporated within the Work constitutes direct or contributory
|
||||||
|
patent infringement, then any patent licenses granted to You under this License
|
||||||
|
for that Work shall terminate as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution.
|
||||||
|
|
||||||
|
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
||||||
|
in any medium, with or without modifications, and in Source or Object form,
|
||||||
|
provided that You meet the following conditions:
|
||||||
|
|
||||||
|
You must give any other recipients of the Work or Derivative Works a copy of
|
||||||
|
this License; and
|
||||||
|
You must cause any modified files to carry prominent notices stating that You
|
||||||
|
changed the files; and
|
||||||
|
You must retain, in the Source form of any Derivative Works that You distribute,
|
||||||
|
all copyright, patent, trademark, and attribution notices from the Source form
|
||||||
|
of the Work, excluding those notices that do not pertain to any part of the
|
||||||
|
Derivative Works; and
|
||||||
|
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
||||||
|
Derivative Works that You distribute must include a readable copy of the
|
||||||
|
attribution notices contained within such NOTICE file, excluding those notices
|
||||||
|
that do not pertain to any part of the Derivative Works, in at least one of the
|
||||||
|
following places: within a NOTICE text file distributed as part of the
|
||||||
|
Derivative Works; within the Source form or documentation, if provided along
|
||||||
|
with the Derivative Works; or, within a display generated by the Derivative
|
||||||
|
Works, if and wherever such third-party notices normally appear. The contents of
|
||||||
|
the NOTICE file are for informational purposes only and do not modify the
|
||||||
|
License. You may add Your own attribution notices within Derivative Works that
|
||||||
|
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
||||||
|
provided that such additional attribution notices cannot be construed as
|
||||||
|
modifying the License.
|
||||||
|
You may add Your own copyright statement to Your modifications and may provide
|
||||||
|
additional or different license terms and conditions for use, reproduction, or
|
||||||
|
distribution of Your modifications, or for any such Derivative Works as a whole,
|
||||||
|
provided Your use, reproduction, and distribution of the Work otherwise complies
|
||||||
|
with the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions.
|
||||||
|
|
||||||
|
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
||||||
|
for inclusion in the Work by You to the Licensor shall be under the terms and
|
||||||
|
conditions of this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify the terms of
|
||||||
|
any separate license agreement you may have executed with Licensor regarding
|
||||||
|
such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks.
|
||||||
|
|
||||||
|
This License does not grant permission to use the trade names, trademarks,
|
||||||
|
service marks, or product names of the Licensor, except as required for
|
||||||
|
reasonable and customary use in describing the origin of the Work and
|
||||||
|
reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, Licensor provides the
|
||||||
|
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
||||||
|
including, without limitation, any warranties or conditions of TITLE,
|
||||||
|
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
||||||
|
solely responsible for determining the appropriateness of using or
|
||||||
|
redistributing the Work and assume any risks associated with Your exercise of
|
||||||
|
permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability.
|
||||||
|
|
||||||
|
In no event and under no legal theory, whether in tort (including negligence),
|
||||||
|
contract, or otherwise, unless required by applicable law (such as deliberate
|
||||||
|
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special, incidental,
|
||||||
|
or consequential damages of any character arising as a result of this License or
|
||||||
|
out of the use or inability to use the Work (including but not limited to
|
||||||
|
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
|
||||||
|
any and all other commercial damages or losses), even if such Contributor has
|
||||||
|
been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability.
|
||||||
|
|
||||||
|
While redistributing the Work or Derivative Works thereof, You may choose to
|
||||||
|
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
||||||
|
other liability obligations and/or rights consistent with this License. However,
|
||||||
|
in accepting such obligations, You may act only on Your own behalf and on Your
|
||||||
|
sole responsibility, not on behalf of any other Contributor, and only if You
|
||||||
|
agree to indemnify, defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason of your
|
||||||
|
accepting any such warranty or additional liability.
|
||||||
73
semestralka1/README.md
Normal file
73
semestralka1/README.md
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|

|
||||||
|
# Blinky Mbed OS example
|
||||||
|
|
||||||
|
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/latest/quick-start/index.html). It contains an application that repeatedly blinks an LED on supported [Mbed boards](https://os.mbed.com/platforms/).
|
||||||
|
|
||||||
|
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 tools, [Arm Mbed CLI 1](https://github.com/ARMmbed/mbed-cli#installing-mbed-cli) and [Mbed CLI 2](https://github.com/ARMmbed/mbed-tools#installation).
|
||||||
|
|
||||||
|
(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).)
|
||||||
|
|
||||||
|
## Mbed OS build tools
|
||||||
|
|
||||||
|
### Mbed CLI 2
|
||||||
|
Starting with version 6.5, Mbed OS uses Mbed CLI 2. It uses Ninja as a build system, and CMake to generate the build environment and manage the build process in a compiler-independent manner. If you are working with Mbed OS version prior to 6.5 then check the section [Mbed CLI 1](#mbed-cli-1).
|
||||||
|
1. [Install Mbed CLI 2](https://os.mbed.com/docs/mbed-os/latest/build-tools/install-or-upgrade.html).
|
||||||
|
1. From the command-line, import the example: `mbed-tools import mbed-os-example-blinky`
|
||||||
|
1. Change the current directory to where the project was imported.
|
||||||
|
|
||||||
|
### Mbed CLI 1
|
||||||
|
1. [Install Mbed CLI 1](https://os.mbed.com/docs/mbed-os/latest/quick-start/offline-with-mbed-cli.html).
|
||||||
|
1. From the command-line, import the example: `mbed import mbed-os-example-blinky`
|
||||||
|
1. Change the current directory to where the project was imported.
|
||||||
|
|
||||||
|
## Application functionality
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
**Note**: This example requires a target with RTOS support, i.e. one with `rtos` declared in `supported_application_profiles` in `targets/targets.json` in [mbed-os](https://github.com/ARMmbed/mbed-os). For non-RTOS targets (usually with small memory sizes), please use [mbed-os-example-blinky-baremetal](https://github.com/ARMmbed/mbed-os-example-blinky-baremetal) instead.
|
||||||
|
|
||||||
|
## Building and running
|
||||||
|
|
||||||
|
1. Connect a USB cable between the USB port on the board and the host computer.
|
||||||
|
1. Run the following command to build the example project and program the microcontroller flash memory:
|
||||||
|
|
||||||
|
* Mbed CLI 2
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ mbed-tools compile -m <TARGET> -t <TOOLCHAIN> --flash
|
||||||
|
```
|
||||||
|
|
||||||
|
* Mbed CLI 1
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ mbed compile -m <TARGET> -t <TOOLCHAIN> --flash
|
||||||
|
```
|
||||||
|
|
||||||
|
Your PC may take a few minutes to compile your code.
|
||||||
|
|
||||||
|
The binary is located at:
|
||||||
|
* **Mbed CLI 2** - `./cmake_build/<TARGET>/develop/<TOOLCHAIN>/mbed-os-example-blinky.bin`
|
||||||
|
* **Mbed CLI 1** - `./BUILD/<TARGET>/<TOOLCHAIN>/mbed-os-example-blinky.bin`
|
||||||
|
|
||||||
|
Alternatively, you can manually copy the binary to the board, which you mount on the host computer over USB.
|
||||||
|
|
||||||
|
## Expected output
|
||||||
|
The LED on your target turns on and off every 500 milliseconds.
|
||||||
|
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
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.
|
||||||
|
|
||||||
|
## Related Links
|
||||||
|
|
||||||
|
* [Mbed OS Stats API](https://os.mbed.com/docs/latest/apis/mbed-statistics.html).
|
||||||
|
* [Mbed OS Configuration](https://os.mbed.com/docs/latest/reference/configuration.html).
|
||||||
|
* [Mbed OS Serial Communication](https://os.mbed.com/docs/latest/tutorials/serial-communication.html).
|
||||||
|
* [Mbed OS bare metal](https://os.mbed.com/docs/mbed-os/latest/reference/mbed-os-bare-metal.html).
|
||||||
|
* [Mbed boards](https://os.mbed.com/platforms/).
|
||||||
|
|
||||||
|
### License and contributions
|
||||||
|
|
||||||
|
The software is provided under Apache-2.0 license. Contributions to this project are accepted under the same license. Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for more info.
|
||||||
|
|
||||||
|
This project contains code from other projects. The original license text is included in those source files. They must comply with our license guide.
|
||||||
BIN
semestralka1/background.jpg
Normal file
BIN
semestralka1/background.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
BIN
semestralka1/background_dark.jpg
Normal file
BIN
semestralka1/background_dark.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
17
semestralka1/background_dark_inverted.h
Normal file
17
semestralka1/background_dark_inverted.h
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
// background_dark_inverted.h
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
// embedded ASCII art background
|
||||||
|
static const char *BACKGROUND_DARK_INVERTED[] = {
|
||||||
|
"##################################################",
|
||||||
|
"# #",
|
||||||
|
"# example ASCII background line 1 #",
|
||||||
|
"# replace this content with your real art #",
|
||||||
|
"# #",
|
||||||
|
"#================================================#",
|
||||||
|
"# #",
|
||||||
|
"# #",
|
||||||
|
"##################################################"
|
||||||
|
};
|
||||||
|
static const int BACKGROUND_DARK_INVERTED_LINES =
|
||||||
|
sizeof(BACKGROUND_DARK_INVERTED) / sizeof(BACKGROUND_DARK_INVERTED[0]);
|
||||||
19
semestralka1/background_dark_inverted.txt
Normal file
19
semestralka1/background_dark_inverted.txt
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
~`````````````````````````````````````````````````````````````````````````````````````"````````````````````````````````~```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````+````````````````````~````````````````````````````````~```````````````````````````````````````````````````````
|
||||||
|
...................................................................,.......................:..........................................'.........`..:.....................................................................................................+...................................:...........:..,................................................
|
||||||
|
..........................."............................................._................................+...........................................................................................................,..............................................`..............................................................!........................
|
||||||
|
.......`...............!..:..............................................`,...,,,'........_.....................''::.....:........................^......................,,...........................................':.......'........................,....,,,.......................+...,...'::'.............................^......................,,....
|
||||||
|
...`......................"...........`.....`...................._,....:,::::^.`::::::........'''``....`....y..^............-...........................................:'.....................,........".....................................:_......,,:::..`'`::::.........'''`..........+....+........,............................................,:`....
|
||||||
|
,,,,,,,,,,,`,,,,,,,^,,,,,,,,,,,_,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,`a',,,,,,',.+,,,''''`.........,,'?'!#R,,,,,,,,,,,,,y,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,__,,,_',,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,_,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,y'`,,,,,'.,,,,,,.'''`........,,''^,s@^,,,,,,,,,,,,_;,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,_,,,_,`,,,,,,
|
||||||
|
,,,,,,,,,,^,,,,,,','''':,,,,,,,,,,,,,,,,,,,,,,''',,,,,,,,,,+,,,,,,,,,:'!^'`,,``..'.'''`,,,,,,,yy_,_yaF,,.'`'',,,,,ym$###$@M@,,,,,;,,,,,,,,,,,,,,,,,,,,,''''':,y,,,7#@@~,,,,,,,,,,,,,,,,,~,,,,,,,::'''::,~,,,,,,,,,,,,,,,,,,,'''',,,,,,,,,,,,,,,,,,,::'~''`,```..``''',,,,,,,yy___ygR^,.,`'`,,,,,,wa###$@R@:,,,,,,,,,,,,,,,,,,,,,,,,,,'''''',,X,,~T@@R,,,,,,,,
|
||||||
|
@@@@@@@@@@@@@@$~`,'________~TF?5#@@@@@@@``4@@E,,,4@@@@@@@@@@@@@#MT~yg$^$P_____..,...:_________@@______;'...'.?@@@@@@@@@@@@@@@@@@@@@@@@@@@MR@@@@@@@@@@B,,,,,,,4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P...________~TFFF#R@@@@@@F,`$@@,,,,@@RR@@@@@@@@@RPF~_g$Mb$______..,..,_________9@y______',....~$@@@@@@@@@@@@@@@@@@@@@@@@@@##R@@@@@@@@@@~,,,,,,~@@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@yggy@@@@@@@@@@@@@@@@@@@@$$$@@@@@@@@@@@@@@@@@@@@@@@@@@@@g$@@@@@@yy$ggg$@@@@@@@@@g$@@@@@@$$_g____@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ggggggg@@@@@@@@@PM@@@@@@@@@@@@@@@@@@@@@@gygy$@@@@@@@@@@@@@@@@@@@@$$$@@@@@@@@@@@@@@@@@@@@@@@@@@@gg@@@@@@gyg$ggg@@@@@@@@@F$$@@@@@@$Fyw___4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ggggg$gg@@@@@@@@@F@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@R@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
MRRRRRRRRRRAA#PPF=FFF~~~~~~~~~~~~~~~~~~~~~~~FFPPRR@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@$@@@@@@@@$$@@@@@@@@@@@@@g@@@@@@@@@@@$@@@@@@@@@RRRRRRRRRRRRRPPPP@@@@@@@R@@@@@@@@@@@@@@@@@@@$$RRRRRRRRRRR@0#PPPPFFFF~~~~~~~~~~~~~~~~~~~~~~FFFPPR@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@g$@@@@@@$@$@@@@@@@@@@@@@@g@@@@@@@@@@@$@@@@@@@@@RRRRRRRRRRRRPP=MA@@@@@@@R@@@@@@@@@@@@@@@@@@@@R
|
||||||
|
MF~~~~~~``.___yyyam....,,,,,,,,,yyw,-yyyyy.,,....,yg@PPPPPPPPPPPPRRRRRRRRRR#RR$@@@@@@@@@@ETT~~~~~~~~~~~FFFFFFFFFR@@@#=PPFF~~~`,,,,ggg,_.,___..._,y@PPPRRRR###5RRRRRR@@@@@@@@@PFFT~~~~~``..___yyyg....,,,,,,,,,,yy,,yyyyy,.,....._g@PPPPPP4PPPPPPRRRRRRRRRRRR@@@@@@@@@@@ETTT~~~~~~~~~~FFFFFFFFF5@@@R#=PFFF~~~,,,,aggy_..,__,.._,_$@PPRRRRR#$4GRRRRR@@@@@@@@@@F
|
||||||
|
...,,,:::::4@@@@@@~...,,,,,,,,,,$@$:_@@@@@_ggaggg@@F~.::::,,,,,,,,,,,yyyyyy,_yggg@@@@@@@@MF#$ggagggyww::$@M@@@@..~$.,,:3@@@$A::::,"@@g$_:d@@..~~@~`,,,,,,,,,,yyyx,,,,,,,ggg_......,,::::::@@@@@@$....:,,,,,,,,,@@:_$@@@@yg$g$ggg@@~`::::,,,,,,,,,,,yyyyyy_,yygg$@@@@@@@@F5aagggggyyw,:d@P@@@@L.`5r,,,:@@@@UL`:::,N@@gy.:@@F.>~5F~,,,,,,,,,,,yyy,,,,,,,,ggy...
|
||||||
|
...,,,,,,,,4@@@$g@....,7^=sa@@$a@@@@@@@@@@@@@@@@@@~``.`,,,,,,,,:::`,g@R@BZa$TTTTF5PM@@@@^:`'`~T5#@@y_`,u@~$@$@@g_,F,,,,`@@@@'':^na$g@@@=_:@@.`,.4__,,,,,,,,,g@@K:,,,,,,g@@@@w....,,,,,,,,,$@@$g@F...,,^=#aa@$gg@@@@@@@@@@@@@@@@@F``.`,,,,,,,,,::`,:@@P@R5$T~TTFFPP5@@@$:'``~~7P@@y_``,$E4@W@$@y,4::,,`3@@@[`:,raagg@@Fk`@@L.,.`g_,,,,,,,,,,g@@~:,,,,,,g@@@$..
|
||||||
|
..,:''``a$gg@$@@ZF...:,,,,,,:`~T@@@@@@@@@@@@@A@@^``...:,,,,,`,,::,.,@@@@@@@@,`.`````@@@[',,,,,,,,,,`TR@@@@@@@$@@@`'''':,A@MP.,,,,,"~TT@,`3@@*g'.`4@':,,,,,,:EDT,,,,,,,_@@@@@$....:':':H$$g@$@@$@....,,,,,`:`~7R@@@@@@@@@@@@AR@@```..,',,,'``,,::,,d@0@@@@@y`.`````g@@@`',,,,,,,,,:79@$@@@@@@@@@'"``':,!$FP~:,,,,,~~7@y.~A@mg@'."@F::,,,,,,4ER~,,,,,,,g@@@@@..
|
||||||
|
..:`::':''~F@@@@@....:````:`:,``"FB@P~5@@@$~~3@@L....::``',:``,:::,`g@@@@@@@@.```.:7@@@F:`````````::,:`@Fy@@$@@@F.::`:::`$@@L`````````~%.`$F.B`..`B::::````4PF````````@@@@@@B...,:,,:::``TM@@@@$...:````:,`````7M$@F~@@@@~~"@@@.....:,`',:'`':::,,x@@@@@@@@,....`:@@@@:``````````:::,g@ya@@@@@@.,'`'::`4@@g,```,`````4.."@.$^...4~`::````_RP~```````g@@@@@@L.
|
||||||
|
.,,`,```,,``@@@@@,,.``````````,,4@~,,,"$@@$,,$@@m',..,,,``,,````,``g@@@@@@@@@,'`,..,"Z@F``````````````_a@@@@@@@@'.`,,````~@@F``,````,,,,,,4(``....`'```,,,g@~,,``````g@@@@@@@,,.,,,```,,,`4@@@@~,.,```````'`,,`B$,,,,$gZ$r,:@@@',...,,,``,````,``:@@@@$@@@@@.',...`~@@```````````````D$@@@@@@@E,``:`````@@R``,````,,,,,,`R'['.,..,````,,`@B,,``````g@@@@@@@L,
|
||||||
|
.',,,,,,,,,,4@@@E,,,,,,,,,,,,,,,,@,,,,,5@@@,,$@@@,,..,,,,,,,,,,,,,,@@@@@@@@@@@,,,..`,,@F,,,,,,,,,,,,,,@@@@@@@@@@,,',,,,,,,~,,,,,,,,,,,,,,,,L,..,,.':,,,,,y@~,,,,,,,,g@@@@@@@@,,.',,,,,,,,,,@@@@,,.:,,,,,,,,,,,,$F,,,,"@@@F,d@@@,,,..,,,,,,,,,,,,,d@@@@@@@@@@L,,,..,,4@,,,,,,,,,,,,,,g@@@@@@@@@F,,',,,,,,~^,,,,,,,,,,,,,,,T,...,..,,,,,,,$E,,,,,,,,y@@@@@@@@$,
|
||||||
19
semestralka1/background_inverted.txt
Normal file
19
semestralka1/background_inverted.txt
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
.............................................................................................................................................................................................................................................................................................................................................................
|
||||||
|
......................````````````````````................................`````````````````````.....................................................................................................````````````````````...............................`````````````````````.................................................................................
|
||||||
|
.............................................................................................................................................................................................................................................................................................................................................................
|
||||||
|
.............................................................................................................................................................................................................................................................................................................................................................
|
||||||
|
.............................................................................................................................................................................................................................................................................................................................................................
|
||||||
|
.............................................................................................................................................................................................................................................................................................................................................................
|
||||||
|
......................................................................................`..................................................'..........................................................................................................................`..................................................'.....................................
|
||||||
|
.............................................................................................................................................................................................................................................................................................................................................................
|
||||||
|
........................................................................................................................................................................................................................................................`....................................................................................................
|
||||||
|
........................'''`'''''``............'`'''''......._,_yr,..._,,........................................................................_,,,,................................................'''`'''''``............'`'''''......,_,yy+,..._,,........................................................................_,,,,.........................
|
||||||
|
..................```.......................................```~~``^?~"``::.,,,,,,,,,,,::::````'````..........``'''...`......,,,,,,,:,,:,,,,..,,:~````:,,,............,,,,......................```.......................................``"~~``^?~```:..,,,,,,,,,,,:::'`````````..........````'...`......,,,,,,::,,:,,,,..,,:~```',,,,............,,,,.....
|
||||||
|
.''``''`....`..............................................................._..`````.......................................```````'`````````''`````````..............``````````'''`''`....`..............................................................._..`````.......................................````'``'`````````''`````````..............`````````'
|
||||||
|
._.............................____yyyyyyyagggggggggggggggggggggga_..........~Th=ay__.............._____yyyyyyyyyyyyyyyyy___...+_.........................agyy_yyyyyyyyyyyyyyy_,.............................____yyyyyyyagggggggggggggggggggggga,..........~T=*wy_,.............,_____yyyyyyyyyyyyyyyy____..:._.........................agyy_yyyyyyyyyyyyyyy_
|
||||||
|
.@@$gyy_,.....__yyyyyaggg$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$$$$aaaaaa@@@$gga$$$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$gZgyy_________yyyyyyyag$@@@@@@@@@@@@@@@@@@@@@@@@@$gyy_,.....__yyyyyagg$$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$$$$aaaaaa@@@$gga$$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$gZgyy_________yyyyyyyag$@@@@@@@@@@@@@@@@@@@@@@$
|
||||||
|
.@@@@@@@@@$g@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$
|
||||||
|
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M@$@@@@@B0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@$@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$
|
||||||
|
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$
|
||||||
|
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@$
|
||||||
|
.RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR4RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRF
|
||||||
4
semestralka1/chafa_commands.txt
Normal file
4
semestralka1/chafa_commands.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
nix-shell -p imagemagick
|
||||||
|
identify background.jpg
|
||||||
|
chafa --symbols ascii --fill none --size=6912x793 background.jpg > out.txt
|
||||||
|
chafa --symbols ascii-block -c none --fill none --invert --size=349x40 background_dark.jpg > background_dark_inverted.txt
|
||||||
522
semestralka1/compile_commands.json
Normal file
522
semestralka1/compile_commands.json
Normal file
@@ -0,0 +1,522 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"arguments": [
|
||||||
|
"/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/bin/arm-none-eabi-g++",
|
||||||
|
"-DARM_MATH_ARMV8MML",
|
||||||
|
"-DCLOCK_SOURCE=USE_PLL_MSI",
|
||||||
|
"-DCOMPONENT_FLASHIAP=1",
|
||||||
|
"-DDEVICE_ANALOGIN=1",
|
||||||
|
"-DDEVICE_ANALOGOUT=1",
|
||||||
|
"-DDEVICE_CAN=1",
|
||||||
|
"-DDEVICE_CRC=1",
|
||||||
|
"-DDEVICE_FLASH=1",
|
||||||
|
"-DDEVICE_I2C=1",
|
||||||
|
"-DDEVICE_I2CSLAVE=1",
|
||||||
|
"-DDEVICE_I2C_ASYNCH=1",
|
||||||
|
"-DDEVICE_INTERRUPTIN=1",
|
||||||
|
"-DDEVICE_LPTICKER=1",
|
||||||
|
"-DDEVICE_MPU=1",
|
||||||
|
"-DDEVICE_PORTIN=1",
|
||||||
|
"-DDEVICE_PORTINOUT=1",
|
||||||
|
"-DDEVICE_PORTOUT=1",
|
||||||
|
"-DDEVICE_PWMOUT=1",
|
||||||
|
"-DDEVICE_RESET_REASON=1",
|
||||||
|
"-DDEVICE_RTC=1",
|
||||||
|
"-DDEVICE_SERIAL=1",
|
||||||
|
"-DDEVICE_SERIAL_ASYNCH=1",
|
||||||
|
"-DDEVICE_SERIAL_FC=1",
|
||||||
|
"-DDEVICE_SLEEP=1",
|
||||||
|
"-DDEVICE_SPI=1",
|
||||||
|
"-DDEVICE_SPISLAVE=1",
|
||||||
|
"-DDEVICE_SPI_ASYNCH=1",
|
||||||
|
"-DDEVICE_STDIO_MESSAGES=1",
|
||||||
|
"-DDEVICE_TRNG=1",
|
||||||
|
"-DDEVICE_USTICKER=1",
|
||||||
|
"-DDEVICE_WATCHDOG=1",
|
||||||
|
"-DEXTRA_IDLE_STACK_REQUIRED",
|
||||||
|
"-DLPTICKER_DELAY_TICKS=0",
|
||||||
|
"-DMBEDTLS_CIPHER_MODE_CTR",
|
||||||
|
"-DMBED_CONF_ALT1250_PPP_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_ALT1250_PPP_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_ASSUME_SPACED_SPI=1",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_FULL_SPI_SPEED=7500000",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_FULL_SPI_SPEED_BYTE_SPACING=250",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_IRQ_THREAD_STACK_SIZE=1024",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_LOW_SPI_SPEED=3750000",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_ATMEL_RF_USE_SPI_SPACING_API=0",
|
||||||
|
"-DMBED_CONF_CELLULAR_AT_HANDLER_BUFFER_SIZE=32",
|
||||||
|
"-DMBED_CONF_CELLULAR_CONTROL_PLANE_OPT=0",
|
||||||
|
"-DMBED_CONF_CELLULAR_DEBUG_AT=0",
|
||||||
|
"-DMBED_CONF_CELLULAR_MAX_CP_DATA_RECV_LEN=1358",
|
||||||
|
"-DMBED_CONF_CELLULAR_RANDOM_MAX_START_DELAY=0",
|
||||||
|
"-DMBED_CONF_CELLULAR_USE_APN_LOOKUP=0",
|
||||||
|
"-DMBED_CONF_CELLULAR_USE_SMS=0",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_CSN=OSPI_FLASH1_CSN",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_DQS=OSPI_FLASH1_DQS",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO0=OSPI_FLASH1_IO0",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO1=OSPI_FLASH1_IO1",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO2=OSPI_FLASH1_IO2",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO3=OSPI_FLASH1_IO3",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO4=OSPI_FLASH1_IO4",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO5=OSPI_FLASH1_IO5",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO6=OSPI_FLASH1_IO6",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_IO7=OSPI_FLASH1_IO7",
|
||||||
|
"-DMBED_CONF_DRIVERS_OSPI_SCK=OSPI_FLASH1_SCK",
|
||||||
|
"-DMBED_CONF_DRIVERS_QSPI_CSN=QSPI_FLASH1_CSN",
|
||||||
|
"-DMBED_CONF_DRIVERS_QSPI_IO0=QSPI_FLASH1_IO0",
|
||||||
|
"-DMBED_CONF_DRIVERS_QSPI_IO1=QSPI_FLASH1_IO1",
|
||||||
|
"-DMBED_CONF_DRIVERS_QSPI_IO2=QSPI_FLASH1_IO2",
|
||||||
|
"-DMBED_CONF_DRIVERS_QSPI_IO3=QSPI_FLASH1_IO3",
|
||||||
|
"-DMBED_CONF_DRIVERS_QSPI_SCK=QSPI_FLASH1_SCK",
|
||||||
|
"-DMBED_CONF_DRIVERS_UART_SERIAL_RXBUF_SIZE=256",
|
||||||
|
"-DMBED_CONF_DRIVERS_UART_SERIAL_TXBUF_SIZE=256",
|
||||||
|
"-DMBED_CONF_ESP8266_BUILT_IN_DNS=0",
|
||||||
|
"-DMBED_CONF_ESP8266_DEBUG=0",
|
||||||
|
"-DMBED_CONF_ESP8266_POWER_OFF_TIME_MS=3",
|
||||||
|
"-DMBED_CONF_ESP8266_POWER_ON_POLARITY=0",
|
||||||
|
"-DMBED_CONF_ESP8266_POWER_ON_TIME_MS=3",
|
||||||
|
"-DMBED_CONF_ESP8266_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_ESP8266_SERIAL_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_ESP8266_SNTP_ENABLE=0",
|
||||||
|
"-DMBED_CONF_ESP8266_SNTP_SERVER0=\"\"",
|
||||||
|
"-DMBED_CONF_ESP8266_SNTP_SERVER1=\"\"",
|
||||||
|
"-DMBED_CONF_ESP8266_SNTP_SERVER2=\"\"",
|
||||||
|
"-DMBED_CONF_ESP8266_SNTP_TIMEZONE=0",
|
||||||
|
"-DMBED_CONF_ESP8266_SOCKET_BUFSIZE=8192",
|
||||||
|
"-DMBED_CONF_EVENTS_SHARED_DISPATCH_FROM_APPLICATION=0",
|
||||||
|
"-DMBED_CONF_EVENTS_SHARED_EVENTSIZE=768",
|
||||||
|
"-DMBED_CONF_EVENTS_SHARED_HIGHPRIO_EVENTSIZE=256",
|
||||||
|
"-DMBED_CONF_EVENTS_SHARED_HIGHPRIO_STACKSIZE=1024",
|
||||||
|
"-DMBED_CONF_EVENTS_SHARED_STACKSIZE=2048",
|
||||||
|
"-DMBED_CONF_EVENTS_USE_LOWPOWER_TIMER_TICKER=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FFS_DBG=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_CODE_PAGE=437",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_EXFAT=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_HEAPBUF=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_LOCK=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_MINIMIZE=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_NOFSINFO=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_NORTC=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_READONLY=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_REENTRANT=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_RPATH=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_TIMEOUT=1000",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_FS_TINY=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_LFN_BUF=255",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_LFN_UNICODE=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_MAX_LFN=255",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_MAX_SS=4096",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_MIN_SS=512",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_MULTI_PARTITION=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_NORTC_MDAY=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_NORTC_MON=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_NORTC_YEAR=2017",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_PRINT_FLOAT=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_PRINT_LLI=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_SFN_BUF=12",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_STRF_ENCODE=3",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_STR_VOLUME_ID=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_SYNC_T=HANDLE",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_CHMOD=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_EXPAND=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_FASTSEEK=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_FIND=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_FORWARD=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_LABEL=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_LFN=3",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_MKFS=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_STRFUNC=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_USE_TRIM=1",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_VOLUMES=4",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FF_VOLUME_STRS=\"RAM\",\"NAND\",\"CF\",\"SD\",\"SD2\",\"USB\",\"USB2\",\"USB3\"",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FLUSH_ON_NEW_CLUSTER=0",
|
||||||
|
"-DMBED_CONF_FAT_CHAN_FLUSH_ON_NEW_SECTOR=1",
|
||||||
|
"-DMBED_CONF_FLASHIAP_BLOCK_DEVICE_BASE_ADDRESS=0xFFFFFFFF",
|
||||||
|
"-DMBED_CONF_FLASHIAP_BLOCK_DEVICE_SIZE=0",
|
||||||
|
"-DMBED_CONF_GEMALTO_CINTERION_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_GEMALTO_CINTERION_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_GENERIC_AT3GPP_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_GENERIC_AT3GPP_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_LORA_ADR_ON=1",
|
||||||
|
"-DMBED_CONF_LORA_APPLICATION_EUI={0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}",
|
||||||
|
"-DMBED_CONF_LORA_APPLICATION_KEY={0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}",
|
||||||
|
"-DMBED_CONF_LORA_APPSKEY={0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}",
|
||||||
|
"-DMBED_CONF_LORA_APP_PORT=15",
|
||||||
|
"-DMBED_CONF_LORA_AUTOMATIC_UPLINK_MESSAGE=1",
|
||||||
|
"-DMBED_CONF_LORA_DEVICE_ADDRESS=0x00000000",
|
||||||
|
"-DMBED_CONF_LORA_DEVICE_EUI={0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}",
|
||||||
|
"-DMBED_CONF_LORA_DOWNLINK_PREAMBLE_LENGTH=5",
|
||||||
|
"-DMBED_CONF_LORA_DUTY_CYCLE_ON=1",
|
||||||
|
"-DMBED_CONF_LORA_DUTY_CYCLE_ON_JOIN=1",
|
||||||
|
"-DMBED_CONF_LORA_FSB_MASK={0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0x00FF}",
|
||||||
|
"-DMBED_CONF_LORA_FSB_MASK_CHINA={0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF}",
|
||||||
|
"-DMBED_CONF_LORA_LBT_ON=0",
|
||||||
|
"-DMBED_CONF_LORA_MAX_SYS_RX_ERROR=5",
|
||||||
|
"-DMBED_CONF_LORA_NB_TRIALS=12",
|
||||||
|
"-DMBED_CONF_LORA_NWKSKEY={0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}",
|
||||||
|
"-DMBED_CONF_LORA_OVER_THE_AIR_ACTIVATION=1",
|
||||||
|
"-DMBED_CONF_LORA_PHY=EU868",
|
||||||
|
"-DMBED_CONF_LORA_PHY_AS923_SUB_REGION=AS1",
|
||||||
|
"-DMBED_CONF_LORA_PUBLIC_NETWORK=1",
|
||||||
|
"-DMBED_CONF_LORA_TX_MAX_SIZE=64",
|
||||||
|
"-DMBED_CONF_LORA_UPLINK_PREAMBLE_LENGTH=8",
|
||||||
|
"-DMBED_CONF_LORA_WAKEUP_TIME=5",
|
||||||
|
"-DMBED_CONF_LWIP_ADDR_TIMEOUT=5",
|
||||||
|
"-DMBED_CONF_LWIP_ADDR_TIMEOUT_MODE=1",
|
||||||
|
"-DMBED_CONF_LWIP_DEBUG_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_DEFAULT_THREAD_STACKSIZE=512",
|
||||||
|
"-DMBED_CONF_LWIP_DHCP_TIMEOUT=60",
|
||||||
|
"-DMBED_CONF_LWIP_ENABLE_PPP_TRACE=0",
|
||||||
|
"-DMBED_CONF_LWIP_ETHERNET_ENABLED=1",
|
||||||
|
"-DMBED_CONF_LWIP_IPV4_ENABLED=1",
|
||||||
|
"-DMBED_CONF_LWIP_IPV6_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_IP_VER_PREF=4",
|
||||||
|
"-DMBED_CONF_LWIP_L3IP_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_MBOX_SIZE=8",
|
||||||
|
"-DMBED_CONF_LWIP_MEMP_NUM_TCPIP_MSG_INPKT=8",
|
||||||
|
"-DMBED_CONF_LWIP_MEMP_NUM_TCP_SEG=16",
|
||||||
|
"-DMBED_CONF_LWIP_MEM_SIZE=2310",
|
||||||
|
"-DMBED_CONF_LWIP_ND6_QUEUEING=0",
|
||||||
|
"-DMBED_CONF_LWIP_ND6_RDNSS_MAX_DNS_SERVERS=0",
|
||||||
|
"-DMBED_CONF_LWIP_NETBUF_RECVINFO_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_NUM_NETBUF=8",
|
||||||
|
"-DMBED_CONF_LWIP_NUM_PBUF=8",
|
||||||
|
"-DMBED_CONF_LWIP_PBUF_POOL_SIZE=5",
|
||||||
|
"-DMBED_CONF_LWIP_PPP_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_PPP_IPV4_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_PPP_IPV6_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_PPP_THREAD_STACKSIZE=768",
|
||||||
|
"-DMBED_CONF_LWIP_RAW_SOCKET_ENABLED=0",
|
||||||
|
"-DMBED_CONF_LWIP_SOCKET_MAX=4",
|
||||||
|
"-DMBED_CONF_LWIP_TCPIP_THREAD_PRIORITY=osPriorityNormal",
|
||||||
|
"-DMBED_CONF_LWIP_TCPIP_THREAD_STACKSIZE=1200",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_CLOSE_TIMEOUT=1000",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_ENABLED=1",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_MAXRTX=6",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_MSS=536",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_SERVER_MAX=4",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_SND_BUF=(2 * TCP_MSS)",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_SOCKET_MAX=4",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_SYNMAXRTX=6",
|
||||||
|
"-DMBED_CONF_LWIP_TCP_WND=(4 * TCP_MSS)",
|
||||||
|
"-DMBED_CONF_LWIP_UDP_SOCKET_MAX=4",
|
||||||
|
"-DMBED_CONF_LWIP_USE_MBED_TRACE=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_CHANNEL=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_CHANNEL_MASK=0x7fff800",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_CHANNEL_PAGE=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_DEVICE_TYPE=NET_6LOWPAN_ROUTER",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_PANID_FILTER=0xffff",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_PSK_KEY={0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf}",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_PSK_KEY_ID=1",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE=NONE",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_6LOWPAN_ND_SEC_LEVEL=5",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_HEAP_SIZE=32500",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_HEAP_STAT_INFO=NULL",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_MAC_NEIGH_TABLE_SIZE=32",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_RADIUS_RETRY_COUNT=3",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_RADIUS_RETRY_IMAX=30",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_RADIUS_RETRY_IMIN=20",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_SYSTEM_TIME_UPDATE_FROM_NANOSTACK=1",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_CHANNEL=22",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_CHANNEL_MASK=0x7fff800",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_CHANNEL_PAGE=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_COMMISSIONING_DATASET_TIMESTAMP=0x10000",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_EXTENDED_PANID={0xf1, 0xb5, 0xa1, 0xb2,0xc4, 0xd5, 0xa1, 0xbd }",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_ML_PREFIX={0xfd, 0x0, 0x0d, 0xb8, 0x0, 0x0, 0x0, 0x0}",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_NETWORK_NAME=\"Thread Network\"",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_PANID=0x0700",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_CONFIG_PSKC={0xc8, 0xa6, 0x2e, 0xae, 0xf3, 0x68, 0xf3, 0x46, 0xa9, 0x9e, 0x57, 0x85, 0x98, 0x9d, 0x1c, 0xd0}",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_DEVICE_TYPE=MESH_DEVICE_TYPE_THREAD_ROUTER",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_MASTER_KEY={0x10, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff}",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_PSKD=\"ABCDEFGH\"",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_SECURITY_POLICY=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_THREAD_USE_STATIC_LINK_CONFIG=1",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_USE_MALLOC_FOR_HEAP=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_BC_CHANNEL_FUNCTION=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_BC_DWELL_INTERVAL=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_BC_FIXED_CHANNEL=65535",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_BC_INTERVAL=0",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_CHANNEL_PLAN_ID=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_DEVICE_TYPE=MESH_DEVICE_TYPE_WISUN_ROUTER",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_NETWORK_NAME=\"Wi-SUN Network\"",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_OPERATING_CLASS=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_OPERATING_MODE=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_PHY_MODE_ID=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_REGULATORY_DOMAIN=3",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_UC_CHANNEL_FUNCTION=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_UC_DWELL_INTERVAL=255",
|
||||||
|
"-DMBED_CONF_MBED_MESH_API_WISUN_UC_FIXED_CHANNEL=65535",
|
||||||
|
"-DMBED_CONF_MCR20A_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_NANOSTACK_CONFIGURATION=nanostack_full",
|
||||||
|
"-DMBED_CONF_NANOSTACK_HAL_CRITICAL_SECTION_USABLE_FROM_INTERRUPT=0",
|
||||||
|
"-DMBED_CONF_NANOSTACK_HAL_EVENT_LOOP_DISPATCH_FROM_APPLICATION=0",
|
||||||
|
"-DMBED_CONF_NANOSTACK_HAL_EVENT_LOOP_THREAD_STACK_SIZE=6144",
|
||||||
|
"-DMBED_CONF_NANOSTACK_HAL_EVENT_LOOP_USE_MBED_EVENTS=0",
|
||||||
|
"-DMBED_CONF_NANOSTACK_HAL_KVSTORE_PATH=\"/kv/\"",
|
||||||
|
"-DMBED_CONF_NANOSTACK_HAL_USE_KVSTORE=0",
|
||||||
|
"-DMBED_CONF_NANOSTACK_LIBSERVICE_NSDYNMEM_TRACKER_ENABLED=0",
|
||||||
|
"-DMBED_CONF_NANOSTACK_LIBSERVICE_PRESENT=1",
|
||||||
|
"-DMBED_CONF_NSAPI_ADD_EVENT_LISTENER_RETURN_CHANGE=0",
|
||||||
|
"-DMBED_CONF_NSAPI_DEFAULT_MESH_TYPE=THREAD",
|
||||||
|
"-DMBED_CONF_NSAPI_DEFAULT_STACK=LWIP",
|
||||||
|
"-DMBED_CONF_NSAPI_DEFAULT_WIFI_SECURITY=NONE",
|
||||||
|
"-DMBED_CONF_NSAPI_DNS_ADDRESSES_LIMIT=10",
|
||||||
|
"-DMBED_CONF_NSAPI_DNS_CACHE_SIZE=3",
|
||||||
|
"-DMBED_CONF_NSAPI_DNS_RESPONSE_WAIT_TIME=10000",
|
||||||
|
"-DMBED_CONF_NSAPI_DNS_RETRIES=1",
|
||||||
|
"-DMBED_CONF_NSAPI_DNS_TOTAL_ATTEMPTS=10",
|
||||||
|
"-DMBED_CONF_NSAPI_SOCKET_STATS_ENABLED=0",
|
||||||
|
"-DMBED_CONF_NSAPI_SOCKET_STATS_MAX_COUNT=10",
|
||||||
|
"-DMBED_CONF_PLATFORM_CALLBACK_COMPARABLE=1",
|
||||||
|
"-DMBED_CONF_PLATFORM_CALLBACK_NONTRIVIAL=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_CRASH_CAPTURE_ENABLED=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_CTHUNK_COUNT_MAX=8",
|
||||||
|
"-DMBED_CONF_PLATFORM_DEEPSLEEP_STATS_VERBOSE=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE=9600",
|
||||||
|
"-DMBED_CONF_PLATFORM_ERROR_ALL_THREADS_INFO=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_ERROR_FILENAME_CAPTURE_ENABLED=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_ERROR_HIST_ENABLED=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_ERROR_HIST_SIZE=4",
|
||||||
|
"-DMBED_CONF_PLATFORM_ERROR_REBOOT_MAX=1",
|
||||||
|
"-DMBED_CONF_PLATFORM_FATAL_ERROR_AUTO_REBOOT_ENABLED=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_MAX_ERROR_FILENAME_LEN=16",
|
||||||
|
"-DMBED_CONF_PLATFORM_MINIMAL_PRINTF_ENABLE_64_BIT=1",
|
||||||
|
"-DMBED_CONF_PLATFORM_MINIMAL_PRINTF_ENABLE_FLOATING_POINT=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_MINIMAL_PRINTF_SET_FLOATING_POINT_MAX_DECIMALS=6",
|
||||||
|
"-DMBED_CONF_PLATFORM_POLL_USE_LOWPOWER_TIMER=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_STDIO_BAUD_RATE=9600",
|
||||||
|
"-DMBED_CONF_PLATFORM_STDIO_BUFFERED_SERIAL=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_STDIO_CONVERT_NEWLINES=1",
|
||||||
|
"-DMBED_CONF_PLATFORM_STDIO_CONVERT_TTY_NEWLINES=1",
|
||||||
|
"-DMBED_CONF_PLATFORM_STDIO_FLUSH_AT_EXIT=1",
|
||||||
|
"-DMBED_CONF_PLATFORM_STDIO_MINIMAL_CONSOLE_ONLY=0",
|
||||||
|
"-DMBED_CONF_PLATFORM_USE_MPU=1",
|
||||||
|
"-DMBED_CONF_PPP_ENABLED=0",
|
||||||
|
"-DMBED_CONF_PPP_ENABLE_TRACE=0",
|
||||||
|
"-DMBED_CONF_PPP_IPV4_ENABLED=1",
|
||||||
|
"-DMBED_CONF_PPP_IPV6_ENABLED=0",
|
||||||
|
"-DMBED_CONF_PPP_MBED_EVENT_QUEUE=0",
|
||||||
|
"-DMBED_CONF_PPP_THREAD_STACKSIZE=816",
|
||||||
|
"-DMBED_CONF_QUECTEL_BC95_BAUDRATE=9600",
|
||||||
|
"-DMBED_CONF_QUECTEL_BC95_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_QUECTEL_BG96_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_QUECTEL_BG96_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_QUECTEL_EC2X_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_QUECTEL_EC2X_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_QUECTEL_EC2X_START_TIMEOUT=15000",
|
||||||
|
"-DMBED_CONF_QUECTEL_M26_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_QUECTEL_M26_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_QUECTEL_UG96_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_QUECTEL_UG96_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_RM1000_AT_BAUDRATE=230400",
|
||||||
|
"-DMBED_CONF_RM1000_AT_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_RTOS_API_PRESENT=1",
|
||||||
|
"-DMBED_CONF_RTOS_ENABLE_ALL_RTX_EVENTS=0",
|
||||||
|
"-DMBED_CONF_RTOS_EVFLAGS_NUM=0",
|
||||||
|
"-DMBED_CONF_RTOS_IDLE_THREAD_STACK_SIZE=512",
|
||||||
|
"-DMBED_CONF_RTOS_IDLE_THREAD_STACK_SIZE_DEBUG_EXTRA=128",
|
||||||
|
"-DMBED_CONF_RTOS_IDLE_THREAD_STACK_SIZE_TICKLESS_EXTRA=256",
|
||||||
|
"-DMBED_CONF_RTOS_MAIN_THREAD_STACK_SIZE=4096",
|
||||||
|
"-DMBED_CONF_RTOS_MSGQUEUE_DATA_SIZE=0",
|
||||||
|
"-DMBED_CONF_RTOS_MSGQUEUE_NUM=0",
|
||||||
|
"-DMBED_CONF_RTOS_MUTEX_NUM=0",
|
||||||
|
"-DMBED_CONF_RTOS_PRESENT=1",
|
||||||
|
"-DMBED_CONF_RTOS_SEMAPHORE_NUM=0",
|
||||||
|
"-DMBED_CONF_RTOS_THREAD_NUM=0",
|
||||||
|
"-DMBED_CONF_RTOS_THREAD_STACK_SIZE=4096",
|
||||||
|
"-DMBED_CONF_RTOS_THREAD_USER_STACK_SIZE=0",
|
||||||
|
"-DMBED_CONF_RTOS_TIMER_NUM=0",
|
||||||
|
"-DMBED_CONF_RTOS_TIMER_THREAD_STACK_SIZE=768",
|
||||||
|
"-DMBED_CONF_S2LP_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_SARA4_PPP_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_SARA4_PPP_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_AUTONEGOTIATION=ETH_AUTONEGOTIATION_ENABLE",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_DUPLEXMODE=ETH_MODE_FULLDUPLEX",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_DUPLEX_STATUS=0x0010",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_MEDIA_INTERFACE=ETH_MEDIA_INTERFACE_RMII",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_RESET_DELAY=500",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_SPEED=ETH_SPEED_100M",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_SPEED_STATUS=0x0004",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_PHY_STATUS_REGISTER=31",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_RXBUFNB=4",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_ETH_TXBUFNB=4",
|
||||||
|
"-DMBED_CONF_STM32_EMAC_THREAD_STACKSIZE=1024",
|
||||||
|
"-DMBED_CONF_STORAGE_DEFAULT_KV=kv",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_BLOCKDEVICE=default",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_EXTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_EXTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_FILESYSTEM=default",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_FOLDER_PATH=kvstore",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_INTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_MOUNT_POINT=kv",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_NO_RBP_BLOCKDEVICE=default",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_NO_RBP_EXTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_NO_RBP_EXTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_NO_RBP_FILESYSTEM=default",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_NO_RBP_FOLDER_PATH=kvstore",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_NO_RBP_MOUNT_POINT=kv",
|
||||||
|
"-DMBED_CONF_STORAGE_FILESYSTEM_RBP_INTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_STORAGE_STORAGE_TYPE=default",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_BLOCKDEVICE=default",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_EXTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_EXTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_INTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_NO_RBP_BLOCKDEVICE=default",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_NO_RBP_EXTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_NO_RBP_EXTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_EXTERNAL_RBP_INTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_BASE_ADDRESS=0",
|
||||||
|
"-DMBED_CONF_STORAGE_TDB_INTERNAL_INTERNAL_SIZE=0",
|
||||||
|
"-DMBED_CONF_TARGET_BOOT_STACK_SIZE=0x400",
|
||||||
|
"-DMBED_CONF_TARGET_CONSOLE_UART=1",
|
||||||
|
"-DMBED_CONF_TARGET_CUSTOM_TICKERS=1",
|
||||||
|
"-DMBED_CONF_TARGET_DEEP_SLEEP_LATENCY=4",
|
||||||
|
"-DMBED_CONF_TARGET_DEFAULT_ADC_VREF=NAN",
|
||||||
|
"-DMBED_CONF_TARGET_GPIO_RESET_AT_INIT=0",
|
||||||
|
"-DMBED_CONF_TARGET_I2C_TIMING_VALUE_ALGO=0",
|
||||||
|
"-DMBED_CONF_TARGET_INIT_US_TICKER_AT_BOOT=1",
|
||||||
|
"-DMBED_CONF_TARGET_INTERNAL_FLASH_UNIFORM_SECTORS=1",
|
||||||
|
"-DMBED_CONF_TARGET_LPTICKER_LPTIM=1",
|
||||||
|
"-DMBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK=1",
|
||||||
|
"-DMBED_CONF_TARGET_LPUART_CLOCK_SOURCE=USE_LPUART_CLK_HSI",
|
||||||
|
"-DMBED_CONF_TARGET_LSE_AVAILABLE=1",
|
||||||
|
"-DMBED_CONF_TARGET_LSE_DRIVE_LOAD_LEVEL=RCC_LSEDRIVE_LOW",
|
||||||
|
"-DMBED_CONF_TARGET_MPU_ROM_END=0x0fffffff",
|
||||||
|
"-DMBED_CONF_TARGET_RTC_CLOCK_SOURCE=USE_RTC_CLK_LSE_OR_LSI",
|
||||||
|
"-DMBED_CONF_TARGET_TICKLESS_FROM_US_TICKER=0",
|
||||||
|
"-DMBED_CONF_TARGET_XIP_ENABLE=0",
|
||||||
|
"-DMBED_CONF_TELIT_HE910_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_TELIT_HE910_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_TELIT_ME310_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_TELIT_ME310_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_TELIT_ME910_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_TELIT_ME910_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_UBLOX_AT_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_UBLOX_AT_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_UBLOX_N2XX_BAUDRATE=9600",
|
||||||
|
"-DMBED_CONF_UBLOX_N2XX_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CONF_UBLOX_PPP_BAUDRATE=115200",
|
||||||
|
"-DMBED_CONF_UBLOX_PPP_PROVIDE_DEFAULT=0",
|
||||||
|
"-DMBED_CRC_TABLE_SIZE=16",
|
||||||
|
"-DMBED_LFS2_BLOCK_CYCLES=1024",
|
||||||
|
"-DMBED_LFS2_BLOCK_SIZE=512",
|
||||||
|
"-DMBED_LFS2_CACHE_SIZE=64",
|
||||||
|
"-DMBED_LFS2_ENABLE_INFO=0",
|
||||||
|
"-DMBED_LFS2_INTRINSICS=1",
|
||||||
|
"-DMBED_LFS2_LOOKAHEAD_SIZE=64",
|
||||||
|
"-DMBED_LFS_BLOCK_SIZE=512",
|
||||||
|
"-DMBED_LFS_ENABLE_INFO=0",
|
||||||
|
"-DMBED_LFS_INTRINSICS=1",
|
||||||
|
"-DMBED_LFS_LOOKAHEAD=512",
|
||||||
|
"-DMBED_LFS_PROG_SIZE=64",
|
||||||
|
"-DMBED_LFS_READ_SIZE=64",
|
||||||
|
"-DMBED_MINIMAL_PRINTF",
|
||||||
|
"-DMBED_STACK_DUMP_ENABLED=0",
|
||||||
|
"-DMBED_TICKLESS",
|
||||||
|
"-DMBED_TRACE_COLOR_THEME=0",
|
||||||
|
"-DMBED_TRAP_ERRORS_ENABLED=1",
|
||||||
|
"-DMEM_ALLOC=malloc",
|
||||||
|
"-DMEM_FREE=free",
|
||||||
|
"-DNSAPI_PPP_AVAILABLE=(MBED_CONF_PPP_ENABLED || MBED_CONF_LWIP_PPP_ENABLED)",
|
||||||
|
"-DNSDYNMEM_TRACKER_ENABLED=MBED_CONF_NANOSTACK_LIBSERVICE_NSDYNMEM_TRACKER_ENABLED",
|
||||||
|
"-DNS_USE_EXTERNAL_MBED_TLS",
|
||||||
|
"-DPPP_DEBUG=0",
|
||||||
|
"-DSTM32U575xx",
|
||||||
|
"-DTARGET_CORTEX",
|
||||||
|
"-DTARGET_CORTEX_M",
|
||||||
|
"-DTARGET_FF_ARDUINO_UNO",
|
||||||
|
"-DTARGET_LIKE_CORTEX_M33",
|
||||||
|
"-DTARGET_LIKE_MBED",
|
||||||
|
"-DTARGET_M33",
|
||||||
|
"-DTARGET_MCU_STM32",
|
||||||
|
"-DTARGET_MCU_STM32U5",
|
||||||
|
"-DTARGET_MCU_STM32U575xI",
|
||||||
|
"-DTARGET_NAME=NUCLEO_U575ZI_Q",
|
||||||
|
"-DTARGET_NUCLEO_U575ZI_Q",
|
||||||
|
"-DTARGET_STM",
|
||||||
|
"-DTARGET_STM32U5",
|
||||||
|
"-DTARGET_STM32U575xI",
|
||||||
|
"-DTARGET_Target",
|
||||||
|
"-DTOOLCHAIN_GCC",
|
||||||
|
"-DTOOLCHAIN_GCC_ARM",
|
||||||
|
"-DTRANSACTION_QUEUE_SIZE_SPI=2",
|
||||||
|
"-DUNITY_INCLUDE_CONFIG_H",
|
||||||
|
"-DUSE_FULL_LL_DRIVER",
|
||||||
|
"-DUSE_HAL_DRIVER",
|
||||||
|
"-D_RTE_",
|
||||||
|
"-D__CMSIS_RTOS",
|
||||||
|
"-D__CORTEX_M33",
|
||||||
|
"-D__DSP_PRESENT=1U",
|
||||||
|
"-D__FPU_PRESENT=1U",
|
||||||
|
"-D__MBED__=1",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/CMSIS_5/CMSIS/RTOS2/RTX/Config",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/CMSIS_5/CMSIS/RTOS2/RTX/Include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/CMSIS_5/CMSIS/RTOS2/RTX/Include1",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/CMSIS_5/CMSIS/RTOS2/RTX/Source",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/CMSIS_5/CMSIS/RTOS2/Include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/device/rtos/include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/device/RTE/include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/device/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/drivers/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/drivers/./include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/drivers/./include/drivers",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/drivers/./include/drivers/internal",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/hal/usb/include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/hal/usb/include/usb",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/hal/include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/hal/include/hal",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/cxxsupport/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/mbed-trace/include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/mbed-trace/include/mbed-trace",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/source/minimal-printf/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/source/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/include/platform",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/platform/include/platform/internal",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/rtos/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/rtos/./include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/rtos/./include/rtos",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/rtos/./include/rtos/internal",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/rtos/./source",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/connectivity/libraries/nanostack-libservice/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/connectivity/libraries/nanostack-libservice/./mbed-client-libservice",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/TARGET_STM32U575xI/TARGET_NUCLEO_U575ZI_Q/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/TARGET_STM32U575xI/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/cmsis/CMSIS_5/CMSIS/TARGET_CORTEX_M/Include",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/.",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/CMSIS",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/STM32U5xx_HAL_Driver",
|
||||||
|
"-I/home/filip/Documents/programming/uni/pvs/semestralka1/mbed-os/targets/TARGET_STM/TARGET_STM32U5/STM32Cube_FW/STM32U5xx_HAL_Driver/Legacy",
|
||||||
|
"-Wall",
|
||||||
|
"-Wextra",
|
||||||
|
"-Wno-unused-parameter",
|
||||||
|
"-Wno-missing-field-initializers",
|
||||||
|
"-fmessage-length=0",
|
||||||
|
"-fno-exceptions",
|
||||||
|
"-ffunction-sections",
|
||||||
|
"-fdata-sections",
|
||||||
|
"-funsigned-char",
|
||||||
|
"-fomit-frame-pointer",
|
||||||
|
"-g3",
|
||||||
|
"-mthumb",
|
||||||
|
"-mfpu=fpv5-sp-d16",
|
||||||
|
"-mfloat-abi=softfp",
|
||||||
|
"-mcpu=cortex-m33",
|
||||||
|
"-fno-rtti",
|
||||||
|
"-Wvla",
|
||||||
|
"-Os",
|
||||||
|
"-c",
|
||||||
|
"-o",
|
||||||
|
"CMakeFiles/mbed-os-example-blinky.dir/main.cpp.obj",
|
||||||
|
"/home/filip/Documents/programming/uni/pvs/semestralka1/main.cpp"
|
||||||
|
],
|
||||||
|
"directory": "/home/filip/Documents/programming/uni/pvs/semestralka1/cmake_build/NUCLEO_U575ZI_Q/develop/GCC_ARM",
|
||||||
|
"file": "/home/filip/Documents/programming/uni/pvs/semestralka1/main.cpp",
|
||||||
|
"output": "/home/filip/Documents/programming/uni/pvs/semestralka1/cmake_build/NUCLEO_U575ZI_Q/develop/GCC_ARM/CMakeFiles/mbed-os-example-blinky.dir/main.cpp.obj"
|
||||||
|
}
|
||||||
|
]
|
||||||
103
semestralka1/main.cpp
Normal file
103
semestralka1/main.cpp
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
// main.cpp
|
||||||
|
|
||||||
|
#include "mbed.h"
|
||||||
|
#include "background_dark_inverted.h"
|
||||||
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#define TARGET_TX_PIN USBTX
|
||||||
|
#define TARGET_RX_PIN USBRX
|
||||||
|
// #define BAUD_RATE 1843200
|
||||||
|
// #define BAUD_RATE 921600
|
||||||
|
// #define BAUD_RATE 460800
|
||||||
|
#define BAUD_RATE 115200
|
||||||
|
|
||||||
|
static BufferedSerial serial_port(TARGET_TX_PIN, TARGET_RX_PIN, BAUD_RATE);
|
||||||
|
|
||||||
|
FileHandle *mbed::mbed_override_console(int fd)
|
||||||
|
{
|
||||||
|
return &serial_port;
|
||||||
|
}
|
||||||
|
|
||||||
|
DigitalOut led(LED1);
|
||||||
|
|
||||||
|
#define BUFFER_SIZE 64
|
||||||
|
static char rx_buffer[BUFFER_SIZE];
|
||||||
|
|
||||||
|
// ASCII fart background
|
||||||
|
void draw_mask(const char *unused_filename, int shift, const char *text = nullptr) {
|
||||||
|
const int view_width = 50; // visible width
|
||||||
|
const int view_height = 24;
|
||||||
|
|
||||||
|
// Terminal clear + home
|
||||||
|
printf("\033[2J\033[H");
|
||||||
|
|
||||||
|
for (int i = 0; i < view_height && i < BACKGROUND_DARK_INVERTED_LINES; i++) {
|
||||||
|
const char *row = BACKGROUND_DARK_INVERTED[i];
|
||||||
|
int width = strlen(row);
|
||||||
|
if (width == 0) {
|
||||||
|
printf("\r\n");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
int start = shift % width;
|
||||||
|
|
||||||
|
// Print visible window (wrap around)
|
||||||
|
for (int j = 0; j < view_width; j++) {
|
||||||
|
char c = row[(start + j) % width];
|
||||||
|
printf("%c", c);
|
||||||
|
}
|
||||||
|
printf("\r\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (text && text[0] != '\0')
|
||||||
|
printf("\r\n[RX] %s\r\n", text);
|
||||||
|
|
||||||
|
fflush(stdout);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
serial_port.set_format(8, BufferedSerial::None, 1);
|
||||||
|
printf("Baud: %d, Format: 8-N-1\r\n", BAUD_RATE);
|
||||||
|
|
||||||
|
int shift = 0;
|
||||||
|
char message[BUFFER_SIZE] = {0};
|
||||||
|
bool message_active = false;
|
||||||
|
Timer msg_timer;
|
||||||
|
Timer anim_timer;
|
||||||
|
msg_timer.start();
|
||||||
|
anim_timer.start();
|
||||||
|
|
||||||
|
const char *bg_file = "background_dark_inverted.txt";
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
if (serial_port.readable()) {
|
||||||
|
memset(rx_buffer, 0, sizeof(rx_buffer));
|
||||||
|
ssize_t num = serial_port.read(rx_buffer, sizeof(rx_buffer) - 1);
|
||||||
|
if (num > 0) {
|
||||||
|
led = !led;
|
||||||
|
|
||||||
|
strncpy(message, rx_buffer, sizeof(message) - 1);
|
||||||
|
message_active = true;
|
||||||
|
msg_timer.reset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (message_active && msg_timer.elapsed_time() > 1s) {
|
||||||
|
message_active = false;
|
||||||
|
memset(message, 0, sizeof(message));
|
||||||
|
}
|
||||||
|
|
||||||
|
// if (message_active && msg_timer.elapsed_time() > 100ms) {
|
||||||
|
// shift = (shift + 1) % 8;
|
||||||
|
|
||||||
|
// }
|
||||||
|
if (anim_timer.elapsed_time() >= 400ms) {
|
||||||
|
shift++;
|
||||||
|
anim_timer.reset();
|
||||||
|
|
||||||
|
draw_mask(bg_file, shift, message_active ? message : nullptr);
|
||||||
|
}
|
||||||
|
ThisThread::sleep_for(20ms);
|
||||||
|
}
|
||||||
|
}
|
||||||
1
semestralka1/mbed-os.lib
Normal file
1
semestralka1/mbed-os.lib
Normal file
@@ -0,0 +1 @@
|
|||||||
|
https://github.com/ARMmbed/mbed-os/#17dc3dc2e6e2817a8bd3df62f38583319f0e4fed
|
||||||
BIN
semestralka1/resources/official_armmbed_example_badge.png
Normal file
BIN
semestralka1/resources/official_armmbed_example_badge.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
Reference in New Issue
Block a user