This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories: | |
| ament/ament_cmake: | |
| type: git | |
| url: https://github.com/ament/ament_cmake.git | |
| version: rolling | |
| ament/ament_index: | |
| type: git | |
| url: https://github.com/ament/ament_index.git | |
| version: rolling | |
| ament/ament_lint: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories: | |
| ament/ament_cmake: | |
| type: git | |
| url: https://github.com/ament/ament_cmake.git | |
| version: rolling | |
| ament/ament_index: | |
| type: git | |
| url: https://github.com/ament/ament_index.git | |
| version: rolling | |
| ament/ament_lint: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [project] | |
| channels = ["conda-forge"] | |
| name = "gazebo_test" | |
| platforms = ["win-64"] | |
| version = "0.1.0" | |
| [tasks] | |
| [dependencies] | |
| cmake = ">=4.1.1,<5" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [project] | |
| channels = ["conda-forge"] | |
| name = "gazebo" | |
| platforms = ["win-64"] | |
| version = "0.1.0" | |
| [tasks] | |
| [dependencies] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Author: Kimberly McGuire co-authored with Copilot | |
| Instructions: | |
| 1. Place this file inside the zipped release ROS2 distro | |
| 2. Navigate to inside the ROS2 binary folder | |
| 3. In a command prompt, activate your Pixi (Conda) environment | |
| 4. Run: python preinstall_setup_windows.py and wait until the script is done | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal enabledelayedexpansion | |
| :: Author: Kimberly McGuire co-authored with Co-pilot | |
| :: Instructions: | |
| :: 1. Place this file inside the zipped release ROS2 distro | |
| :: 2. Navigate to inside the ROS2 binary folder | |
| :: 3. In a command prompt, do 'call preinstall_setup_windowsbinary.bat' and wait until the script is done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from ament_index_python.packages import get_package_share_directory | |
| from launch import LaunchDescription | |
| from launch_ros.actions import Node | |
| import yaml | |
| def generate_launch_description(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # | |
| # || ____ _ __ | |
| # +------+ / __ )(_) /_______________ _____ ___ | |
| # | 0xBC | / __ / / __/ ___/ ___/ __ `/_ / / _ \ | |
| # +------+ / /_/ / / /_/ /__/ / / /_/ / / /_/ __/ | |
| # || || /_____/_/\__/\___/_/ \__,_/ /___/\___/ | |
| # | |
| # Copyright (C) 2019 Bitcraze AB | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| APP=1 | |
| APP_STACKSIZE=300 | |
| CFLAGS += -DDISABLE_LIGHTHOUSE_DRIVER=0 | |
| CFLAGS += -DLIGHTHOUSE_FORCE_TYPE=2 | |
| PROJ_OBJ += app_lighthouse.o | |
| CRAZYFLIE_BASE=../.. #fill in with your crazyflie base code | |
| include $(CRAZYFLIE_BASE)/Makefile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| import sys | |
| import time | |
| import cflib.crtp | |
| from cflib.crazyflie import Crazyflie | |
| from cflib.crazyflie.syncCrazyflie import SyncCrazyflie | |