Skip to content

Commit 5059ebc

Browse files
committed
Update README
1 parent 571a663 commit 5059ebc

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Supported boards are:
4040
| `esp32dev` | `espressif32` | `arduino` | `serial` <br/> `wifi` | `colcon.meta` |
4141
| `nanorp2040connect` | `raspberrypi` | `arduino` | `serial` <br/> `wifi_nina` | `colcon_verylowmem.meta` |
4242
| `pico` | `raspberrypi` | `arduino` | `serial` | `colcon.meta`|
43+
| `raspberrypi_1b` <br/> `raspberrypi_2b` <br/> `raspberrypi_3b` <br/> `raspberrypi_zero` | `linux_arm` | `wiringpi` | `socket` | `linux.meta`|
4344

4445
The community is encouraged to open pull request with custom use cases.
4546

@@ -52,7 +53,7 @@ The community is encouraged to open pull request with custom use cases.
5253
```bash
5354
apt install -y git cmake python3-pip
5455
```
55-
56+
5657
### Platform specific requirements
5758

5859
#### MacOS
@@ -132,6 +133,15 @@ The transport can be configured with the `board_microros_transport = <transport>
132133
set_microros_native_ethernet_transports(local_mac, local_ip, agent_ip, agent_port);
133134
```
134135

136+
- `socket`
137+
138+
```c
139+
const char* agent_ip = "192.168.1.113";
140+
uint16_t agent_port = 8888;
141+
142+
set_microros_socket_transports(agent_ip, agent_port);
143+
```
144+
135145
- `custom`
136146

137147
The user will need to write transport functions in app code and provide it to the micro-ROS library using [`rmw_uros_set_custom_transport()` API](https://micro.ros.org/docs/tutorials/advanced/create_custom_transports/)

0 commit comments

Comments
 (0)