Ref #8285. Updates on Zephyr emulator#154
Merged
Merged
Conversation
42 tasks
FranFin
suggested changes
Apr 30, 2020
| 2. **Configure**: configures the downloaded packages with options such as the micro-ROS application, the selected transport layer or the micro-ROS agent IP address (in network transports). | ||
| 3. **Build**: generates a binary file ready for being loaded in the hardware. | ||
| 4. **Flash**: load the micro-ROS software in the hardware. | ||
| micro-ROS apps for Zephyr emulator are located at `firmware/zephyr_apps/apps`. In order to create a new application, create a new folder containing two files: the app code (inside a `src` folder) and the RMW configuration. You will also need some other Zephyr related files: a `CMakeLists.txt` to define the building process and a `prj.conf` where Zephyr is configured. There is a sample proyect [here](https://github.com/micro-ROS/zephyr_apps/tree/dashing/apps/host_ping_pong), for now, it is ok to copy them. |
Contributor
There was a problem hiding this comment.
Suggested change
| micro-ROS apps for Zephyr emulator are located at `firmware/zephyr_apps/apps`. In order to create a new application, create a new folder containing two files: the app code (inside a `src` folder) and the RMW configuration. You will also need some other Zephyr related files: a `CMakeLists.txt` to define the building process and a `prj.conf` where Zephyr is configured. There is a sample proyect [here](https://github.com/micro-ROS/zephyr_apps/tree/dashing/apps/host_ping_pong), for now, it is ok to copy them. | |
| micro-ROS apps for the Zephyr emulator are located at `firmware/zephyr_apps/apps`. In order to create a new application, create a new folder containing two files: the app code (inside a `src` folder) and the RMW configuration. You will also need some other Zephyr related files: a `CMakeLists.txt` to define the building process and a `prj.conf` where Zephyr is configured. You can find a sample project [here](https://github.com/micro-ROS/zephyr_apps/tree/dashing/apps/host_ping_pong). For this tutorial, it is ok to copy them. |
Contributor
There was a problem hiding this comment.
Maybe I liked better when all this was shown rather than explained. I mean, just the commands, and then references to where to find the files content to copy.
I mean, I would use the same text as the old tutorial, with the pushd and popd commands and everything, and only change the way to refer the user to the files content.
Contributor
There was a problem hiding this comment.
Nice. Can't you make those links cliackable?
FranFin
previously approved these changes
Apr 30, 2020
93c65df to
808ffb0
Compare
FranFin
approved these changes
May 27, 2020
FranFin
previously approved these changes
May 27, 2020
Co-authored-by: FranFin <58737168+FranFin@users.noreply.github.com>
Co-authored-by: FranFin <58737168+FranFin@users.noreply.github.com>
Co-authored-by: FranFin <58737168+FranFin@users.noreply.github.com>
229dae5 to
1e10430
Compare
FranFin
approved these changes
May 27, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Zephyr emulator rework