micro_ros_platformio
micro_ros_platformio copied to clipboard
ament_cmake clone failed
Issue template
- Hardware description: RPi Pico, Ubuntu 22.04, git version 2.34.1
- Installation type: Platformio
- Version or commit hash: humble
Steps to reproduce the issue
New Platformio project in VS Code, select Pico board, and add
lib_deps = https://github.com/micro-ROS/micro_ros_platformio
to platformio.ini. Save to start auto-build.
Expected behavior
Build
Actual behavior
Configuring pico with transport serial
Downloading micro-ROS dev dependencies
ament_cmake clone failed:
fatal: Too many arguments.
Additional information
Same issue as the closed https://github.com/micro-ROS/micro_ros_platformio/issues/60
Platformio.ini:
[env:pico]
platform = raspberrypi
board = pico
framework = arduino
lib_deps = https://github.com/micro-ROS/micro_ros_platformio
lib_ldf_mode = chain+
upload_protocol = cmsis-dap
Hello,
I had the same error message "ament_cmake clone failed: fatal: Too many arguments.". The issue for me was that the name of my project directory contains spaces: "My Project". I switched to "my-project" and the error does not appear anymore.
Hope it solves the issue for other people.