Skip to content

6.4 Known Issues

#IssueDescriptionResolution
1FTDI USB Not RecognizedFTDI USB devices not recognized on bootUSB reset or reboot
1. FTDI USB Not Recognized

After booting, the robot does not operate normally, and some or all USB serial devices are not recognized.

Run the following command to verify that all four ports (/dev/ttyUSB0 through /dev/ttyUSB3) exist.

Terminal window
ls /dev/ttyUSB*
  1. Run the following command to reset the USB devices.

    Terminal window
    gpioset 0 1=0
  2. If the issue persists after the reset, reboot the AntBot.

  3. If still unresolved, power off and check the USB cable connections, then contact technical support.


#IssueDescriptionResolution
1x86 Build FailureFull build failed on x86 PCs due to ARM-only packagesArchitecture auto-detection in antbot_camera CMakeLists.txt
1. x86 Build Failure

Running colcon build on the full workspace on an x86 environment (standard PC) failed at the antbot_camera package due to ARM-only library link errors.

Architecture detection logic was added to antbot_camera’s CMakeLists.txt to automatically skip the build on x86 environments.

# arm64-only package — skip build on x86
if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|arm64|ARM64")
message(STATUS "[${PROJECT_NAME}] Skipping: arm64 only (current: ${CMAKE_SYSTEM_PROCESSOR})")
ament_package()
return()
endif()

Full colcon build now works without --packages-ignore. Note that antbot_camera is skipped on x86, so camera functionality is not available in x86 environments.

© 2026 ROBOTIS AI. All rights reserved.