You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR restructures the README by moving the “IDL Message Generation” section to sit below the generated message maintenance instructions and updating its heading levels, while removing the old table-of-contents entry.
- Removed outdated TOC entry and original section block
- Re-added “IDL Message Generation” under “Maintaining Generated JavaScript Message Files” with proper `###`/`####` hierarchy
Fix: #764
@@ -148,18 +147,6 @@ let stringMsgObject = rclnodejs.createMessageObject('std_msgs/msg/String');
148
147
stringMsgObject.data = 'hello world';
149
148
```
150
149
151
-
## IDL Message Generation
152
-
153
-
In addition to the standard ROS2 message generation (`.msg`, `.srv`, and `.action`), rclnodejs provides advanced support for generating JavaScript message files directly from IDL (Interface Definition Language) files. This feature is particularly useful when working with custom IDL files or when you need more control over the message generation process.
154
-
155
-
### Running `generate-messages-idl`
156
-
157
-
To generate messages from IDL files, use the `generate-messages-idl` npm script:
In addition to the standard ROS2 message generation (`.msg`, `.srv`, and `.action`), rclnodejs provides advanced support for generating JavaScript message files directly from IDL (Interface Definition Language) files. This feature is particularly useful when working with custom IDL files or when you need more control over the message generation process.
171
+
172
+
#### Running `generate-messages-idl`
173
+
174
+
To generate messages from IDL files, use the `generate-messages-idl` npm script:
175
+
176
+
```bash
177
+
npm run generate-messages-idl
178
+
```
179
+
181
180
## Contributing
182
181
183
182
Please read the [Contributing Guide]() before making a pull request.
0 commit comments