yoneken / rosserial_stm32

This is a part of [rosserial](https://github.com/ros-drivers/rosserial) repository to communicate with ROS system through a USART for STM32 embedded system.
BSD 2-Clause "Simplified" License
218 stars 72 forks source link

rosserial_stm32

Note

This is a part of rosserial repository to communicate with ROS system through a USART for STM32 embedded system.

Limitation

The original code is focused on STM32F3xx, 4xx, and 7xx series and it uses the STM32CubeIDE or STM32CubeMX HAL.
If you use the package for other series, please edit the following line on src/ros_lib/STM32Hardware.h .

Generate code

$ cd _targetworkspace (It should contain Inc and Src directories).
$ rosrun rosserial_stm32 make_libraries.py .
Never forget to change the project type to cpp project in STM32CubeIDE or SW4STM32!!
For STM32CubeIDE users: You have to add /Inc directory as a "Source Location" in the project properties(C/C++ General > Paths and Symbols > Source Location).

Examples

See src/ros_lib/examples

Share your implementation based on this repo here

Make sure your code is working before adding your repo here ;)

On a Windows machine with virtual machine

Note

Required softwares

Run

  1. Generate headers for STM32

Terminal 1

> cd *rosserial_stm32 dir*
> vagrant up
> vagrant ssh

$ cd rosserial_stm32
$ docker-compose up prepare

Then, a sample project is generated on _rosserial_stm32/src/roslib/examples/chatter/ .

  1. Build code with STM32CubeIDE on Windows
  1. Launch rosseral server

Terminal 1

$ docker-compose up srv
  1. Flash binary on STM32 and start a demo

Terminal 2

> cd *rosserial_stm32 dir*
> vagrant ssh

$ cd rosserial_stm32
$ docker-compose up client
  1. Stop and remove all containers

Terminal 2

[Ctrl+C]
$ exit

Terminal 1

[Ctrl+C]
$ docker stop $(docker ps -q)
$ docker rm $(docker ps -q -a)
$ exit

> vagrant halt